Skip to content

Commit

Permalink
GROOVY-11342: SQL enhancement to allow metadata access for execute (f…
Browse files Browse the repository at this point in the history
…ix for 4_0_X)
  • Loading branch information
paulk-asert committed Mar 31, 2024
1 parent b7e7f56 commit 8bba817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subprojects/groovy-sql/src/main/java/groovy/sql/Sql.java
Original file line number Diff line number Diff line change
Expand Up @@ -4433,7 +4433,7 @@ protected Connection createConnection() throws SQLException {
private Connection createConnection(DataSource dataSource) throws SQLException {
Connection con;
try {
con = java.security.AccessController.doPrivileged(new PrivilegedExceptionAction<>() {
con = java.security.AccessController.doPrivileged(new PrivilegedExceptionAction<Connection>() {
@Override
public Connection run() throws SQLException {
return dataSource.getConnection();
Expand Down

0 comments on commit 8bba817

Please sign in to comment.