We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ff225 commit 86693e0Copy full SHA for 86693e0
src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java
@@ -3728,4 +3728,9 @@ public void testKeywordDuplicate() throws JSQLParserException {
3728
public void testKeywordDuplicate2() throws JSQLParserException {
3729
assertSqlCanBeParsedAndDeparsed("SELECT * FROM mytable WHERE duplicate = 5");
3730
}
3731
+
3732
+ @Test
3733
+ public void testBackslashEscapingIssue827() throws JSQLParserException {
3734
+ assertSqlCanBeParsedAndDeparsed("INSERT INTO my_table (my_column_1, my_column_2) VALUES ('my_value_1\\\\', 'my_value_2')");
3735
+ }
3736
0 commit comments