Skip to content

Commit

Permalink
test current changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonli-improving committed Feb 5, 2024
1 parent 2336483 commit 0af1e33
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ public boolean ping(@NonNull Connection connection) {

@Override
public List<String> getAllowedOnConnectionMethodNames() {
return Arrays.asList(METHOD_GET_SCHEMA, METHOD_GET_CATALOG,
METHOD_GET_AUTO_COMMIT, METHOD_GET_TRANSACTION_ISOLATION);
return Arrays.asList(
METHOD_GET_SCHEMA,
METHOD_GET_CATALOG,
METHOD_GET_AUTO_COMMIT,
METHOD_GET_TRANSACTION_ISOLATION);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ public boolean ping(@NonNull Connection connection) {

@Override
public List<String> getAllowedOnConnectionMethodNames() {
return Collections.emptyList();
return super.getAllowedOnConnectionMethodNames();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,6 @@ public void registerDriver() throws SQLException {

@Override
public List<String> getAllowedOnConnectionMethodNames() {
return Collections.emptyList();
return super.getAllowedOnConnectionMethodNames();
}
}

0 comments on commit 0af1e33

Please sign in to comment.