test(bigquery): add ITBigQueryTest integration tests for queryArrow - #14376
jinseopkim0 wants to merge 2 commits into
Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces integration tests to verify query results in Arrow format using ArrowQueryResult. The feedback recommends optimizing resource usage by utilizing the shared static bigquery client instance instead of instantiating a new RemoteBigQueryHelper and BigQuery client for each test method.
73d9458 to
4d1e4ee
Compare
|
@gemini-code-assist review |
There was a problem hiding this comment.
Code Review
This pull request introduces integration tests for the Arrow query results format in ITBigQueryTest.java. It adds two new test cases, testQueryResultsFormatArrow and testQueryResultsFormatArrowMultiPage, to verify that querying with QueryResultsFormat.ARROW works correctly for both single-page and multi-page results using ArrowQueryResult and VectorSchemaRoot. I have no feedback to provide.
This PR adds integration tests verifying the
queryArrowclient API against the live BigQuery service.It tests single-page and multi-page Arrow stream consumption, validating row counts and VectorSchemaRoot iteration over live queries.