Skip to content

Commit 633a3ce

Browse files
author
Paultagoras
committed
Update JdbcUtilsTest.java
1 parent 7715abb commit 633a3ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jdbc-v2/src/test/java/com/clickhouse/jdbc/internal/JdbcUtilsTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ public void testTokenizeSQL() {
4646
assertEquals(tokens3.get(2), "FROM");
4747
assertEquals(tokens3.get(3), "table");
4848
assertEquals(tokens3.get(4), "WHERE");
49-
assertEquals(tokens3.get(5), "id = 1 AND name = 'John' OR age = 30");
49+
assertEquals(tokens3.get(5).replace("\"", ""), "id = 1 AND name = 'John' OR age = 30");
5050
}
5151
}

0 commit comments

Comments
 (0)