Skip to content

Commit

Permalink
Merge pull request #52 from ikriushenkov/replace-parse-typo
Browse files Browse the repository at this point in the history
Fix typo when parsing replace
  • Loading branch information
alex268 authored May 10, 2024
2 parents aa68ef9 + a90c0bc commit da17dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jdbc/src/main/java/tech/ydb/jdbc/query/JdbcQueryLexer.java
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ private static boolean parseReplaceKeyword(char[] query, int offset) {
&& (query[offset + 3] | 32) == 'l'
&& (query[offset + 4] | 32) == 'a'
&& (query[offset + 5] | 32) == 'c'
&& (query[offset + 8] | 32) == 'e'
&& (query[offset + 6] | 32) == 'e'
&& isSpace(query[offset + 7]);
}
}

0 comments on commit da17dc1

Please sign in to comment.