Skip to content

Commit 6320772

Browse files
authored
Merge pull request #658 from findepi/findepi/return-correct-value-from-getautocommit-e28cda
Return correct value from getAutoCommit
2 parents 339453f + 5ca9485 commit 6320772

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

clickhouse-jdbc/src/main/java/ru/yandex/clickhouse/ClickHouseConnectionImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public void setAutoCommit(boolean autoCommit) throws SQLException {
214214

215215
@Override
216216
public boolean getAutoCommit() throws SQLException {
217-
return false;
217+
return true;
218218
}
219219

220220
@Override

0 commit comments

Comments
 (0)