Skip to content

Commit dbcfedf

Browse files
committed
remove typo
1 parent 28f1f1e commit dbcfedf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jdbc-v2/src/main/java/com/clickhouse/jdbc/StatementImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ public boolean execute(String sql, QuerySettings settings) throws SQLException {
371371
executeUpdate(sql, settings);
372372
//USE Database
373373
List<String> tokens = JdbcUtils.tokenizeSQL(sql);
374-
this.schema = tokens.get(1).replace("\"", "");;
374+
this.schema = tokens.get(1).replace("\"", "");
375375
LOG.info("Changed statement schema " + schema);
376376
return false;
377377
} else {

0 commit comments

Comments
 (0)