File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
main/java/com/clickhouse/jdbc/internal
test/java/com/clickhouse/jdbc Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 11package com .clickhouse .jdbc .internal ;
22
3- import org .antlr .v4 .runtime .ANTLRErrorListener ;
43import org .antlr .v4 .runtime .BaseErrorListener ;
54import org .antlr .v4 .runtime .CharStream ;
65import org .antlr .v4 .runtime .CharStreams ;
1615
1716public class SqlParser {
1817
19- private static Logger LOG = LoggerFactory .getLogger (SqlParser .class );
18+ private static final Logger LOG = LoggerFactory .getLogger (SqlParser .class );
2019
2120 public ParsedStatement parsedStatement (String sql ) {
2221
Original file line number Diff line number Diff line change @@ -363,7 +363,7 @@ void testMultipleWithClauses() throws Exception {
363363 @ Test (groups = { "integration" })
364364 void testRecursiveWithClause () throws Exception {
365365 if (ClickHouseVersion .of (getServerVersion ()).check ("(,24.3]" )) {
366- return ; // recursive CTEs were introduces in 24.4
366+ return ; // recursive CTEs were introduced in 24.4
367367 }
368368
369369 try (Connection conn = getJdbcConnection ();
You can’t perform that action at this time.
0 commit comments