File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
hibernate-core/src/main/java/org/hibernate/sql Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -145,13 +145,13 @@ public static String renderWhereStringTemplate(
145
145
146
146
// IMPL NOTE: The basic process here is to tokenize the incoming string and to iterate over each token
147
147
// in turn. As we process each token, we set a series of flags used to indicate the type of context in
148
- // which the tokens occur. Depending on the state of those flags we decide whether we need to qualify
148
+ // which the tokens occur. Depending on the state of those flags, we decide whether we need to qualify
149
149
// identifier references.
150
150
151
151
// WARNING TO MAINTAINERS: This is a simple scanner-based state machine. Please don't attempt to turn it into
152
152
// a parser for SQL, no matter how "special" your case is. What I mean by this is: don't write code which
153
153
// attempts to recognize the grammar of SQL, not even little bits of SQL. Previous "enhancements" to this
154
- // function did not respect this concept, and resulted in code which was fragile and unmaintainable. If
154
+ // function did not respect this concept and resulted in code which was fragile and unmaintainable. If
155
155
// lookahead is truly necessary, use the lookahead() function provided below.
156
156
157
157
final String symbols = PUNCTUATION + WHITESPACE + dialect .openQuote () + dialect .closeQuote ();
You can’t perform that action at this time.
0 commit comments