You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/exception/BigQueryConversionException.java
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/exception/BigQueryJdbcCoercionException.java
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/exception/BigQueryJdbcCoercionNotFoundException.java
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/exception/BigQueryJdbcException.java
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/exception/BigQueryJdbcRuntimeException.java
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/exception/BigQueryJdbcSqlFeatureNotSupportedException.java
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/exception/BigQueryJdbcSqlSyntaxErrorException.java
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryArrowResultSet.java
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -215,11 +215,8 @@ public boolean next() throws SQLException {
215
215
checkClosed();
216
216
if (this.isNested) {
217
217
if (this.currentNestedBatch == null || this.currentNestedBatch.getNestedRecords() == null) {
218
-
IllegalStateExceptionex =
219
-
newIllegalStateException(
220
-
"currentNestedBatch/JsonStringArrayList can not be null working with the nested record");
221
-
LOG.severe(ex.getMessage(), ex);
222
-
throwex;
218
+
thrownewIllegalStateException(
219
+
"currentNestedBatch/JsonStringArrayList can not be null working with the nested record");
223
220
}
224
221
if (this.nestedRowIndex < (this.toIndexExclusive - 1)) {
225
222
/* Check if there's a next record in the array which can be read */
Copy file name to clipboardExpand all lines: java-bigquery/google-cloud-bigquery-jdbc/src/main/java/com/google/cloud/bigquery/jdbc/BigQueryBaseResultSet.java
0 commit comments