Implement abort

This commit is contained in:
김선우
2025-02-09 17:37:19 +09:00
parent 968ae74810
commit ed9cf63c51

View File

@@ -319,7 +319,11 @@ public class JDBC4Connection extends LimboConnection {
@Override
public void abort(Executor executor) throws SQLException {
// TODO
if (isClosed()) {
return;
}
close();
}
@Override