Github user tinkoff-dwh commented on the issue:
https://github.com/apache/zeppelin/pull/2396
@randerzander
autocommit is already in JDBCInterpreter.
```
finally {
//In case user ran an insert/update/upsert statement
if (connection != null) {
try {
if (!connection.getAutoCommit()) {
connection.commit();
}
connection.close();
} catch (SQLException e) { /*ignored*/ }
}
```
You may close this PR.---
