File tree Expand file tree Collapse file tree
java-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments