Skip to content

Commit bb3fe3e

Browse files
committed
feedback
1 parent 50aa549 commit bb3fe3e

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

java-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryPreparedStatement.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,25 +89,21 @@ private int getParameterCount(String query) {
8989

9090
@Override
9191
public ResultSet executeQuery() throws SQLException {
92-
logQueryExecutionStart(this.currentQuery);
9392
return super.executeQuery(this.currentQuery);
9493
}
9594

9695
@Override
9796
public long executeLargeUpdate() throws SQLException {
98-
logQueryExecutionStart(this.currentQuery);
9997
return super.executeLargeUpdate(this.currentQuery);
10098
}
10199

102100
@Override
103101
public int executeUpdate() throws SQLException {
104-
logQueryExecutionStart(this.currentQuery);
105102
return super.executeUpdate(this.currentQuery);
106103
}
107104

108105
@Override
109106
public boolean execute() throws SQLException {
110-
logQueryExecutionStart(this.currentQuery);
111107
return super.execute(this.currentQuery);
112108
}
113109

0 commit comments

Comments
 (0)