File tree Expand file tree Collapse file tree
java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545import com .google .cloud .bigquery .InsertAllRequest .RowToInsert ;
4646import com .google .cloud .bigquery .spi .v2 .BigQueryRpc ;
4747import com .google .cloud .bigquery .spi .v2 .HttpBigQueryRpc ;
48- import com .google .cloud .bigquery .storage .v1 .ArrowRecordBatch ;
4948import com .google .cloud .bigquery .storage .v1 .BigQueryReadClient ;
5049import com .google .cloud .bigquery .storage .v1 .BigQueryReadSettings ;
5150import com .google .cloud .bigquery .storage .v1 .ReadRowsRequest ;
@@ -357,7 +356,8 @@ public Page<FieldValueList> getNextPage() {
357356 while (rowBatch .size () < pageSize && streamIterator .hasNext ()) {
358357 ReadRowsResponse response = streamIterator .next ();
359358 if (response .hasArrowRecordBatch ()) {
360- ArrowRecordBatch batch = response .getArrowRecordBatch ();
359+ com .google .cloud .bigquery .storage .v1 .ArrowRecordBatch batch =
360+ response .getArrowRecordBatch ();
361361 ArrowRecordBatch deserializedBatch =
362362 MessageSerializer .deserializeRecordBatch (
363363 new ReadChannel (
You can’t perform that action at this time.
0 commit comments