Skip to content

Commit 86693e0

Browse files
committed
1 parent 12ff225 commit 86693e0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3728,4 +3728,9 @@ public void testKeywordDuplicate() throws JSQLParserException {
37283728
public void testKeywordDuplicate2() throws JSQLParserException {
37293729
assertSqlCanBeParsedAndDeparsed("SELECT * FROM mytable WHERE duplicate = 5");
37303730
}
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+
}
37313736
}

0 commit comments

Comments
 (0)