HHH-5932 Fix filtering request with string literal starting with ':' (checkstyle fix)
(cherry picked from commit fd1ff34f03
)
This commit is contained in:
parent
f9aab2ba88
commit
c53a308a58
|
@ -38,7 +38,7 @@ public final class QueryParameters {
|
|||
/**
|
||||
* Symbols used to split SQL string into tokens in {@link #processFilters(String, Map, SessionFactoryImplementor)}.
|
||||
*/
|
||||
private static final String SYMBOLS = ParserHelper.HQL_SEPARATORS.replace( "'", "" );
|
||||
private static final String SYMBOLS = ParserHelper.HQL_SEPARATORS.replace( "'", "" );
|
||||
|
||||
private Type[] positionalParameterTypes;
|
||||
private Object[] positionalParameterValues;
|
||||
|
|
Loading…
Reference in New Issue