Skip to content

Commit bd6ee95

Browse files
committed
Improved PostgresMiniStressTest.
1 parent ce48068 commit bd6ee95

File tree

2 files changed

+428
-410
lines changed

2 files changed

+428
-410
lines changed

ojp-jdbc-driver/src/main/java/org/openjdbcproxy/jdbc/PreparedStatement.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ public PreparedStatement(Connection connection, String sql, StatementService sta
106106
@Override
107107
public ResultSet executeQuery() throws SQLException {
108108
this.checkClosed();
109+
log.info("Executing query for -> {}", this.sql);
109110
Iterator<OpResult> itOpResult = this.statementService
110111
.executeQuery(this.connection.getSession(), this.sql, this.paramsMap.values().stream().toList(), this.properties);
111112
return new ResultSet(itOpResult, this.statementService, this);

0 commit comments

Comments
 (0)