PostgreSQL ILIKE Keyword is considered a column name when deducing alias injection points
Description
In Hibernate 6.1.7 a condition query for @Filtercan contain the postgresql keyword ilike (case-insensitive like) without any problems.
In Hibernate 6.2.0 this keyword is now prefixed with a column alias when automatic deduction of column alias injection points is true (which is the default).
The resulting query is obviously invalid and throws a SQLGrammarException at runtime.
In Hibernate 6.1.7 a condition query for
@Filter
can contain the postgresql keywordilike
(case-insensitive like) without any problems.In Hibernate 6.2.0 this keyword is now prefixed with a column alias when automatic deduction of column alias injection points is true (which is the default).
The resulting query is obviously invalid and throws a SQLGrammarException at runtime.