test(bigquery): add integration tests for row-based query() with Arrow format - #14413
jinseopkim0 wants to merge 2 commits into
Conversation
|
@gemini-code-assist review |
There was a problem hiding this comment.
Code Review
This pull request introduces new integration tests for row-based queries using the Arrow format, covering both single-page and multi-page scenarios, and refines existing Arrow query tests with more precise batch count assertions. The review feedback recommends adding an assertion for the selected 'TIMESTAMP' column in the new 'testQueryRowBasedWithArrowFormat' test to verify proper serialization and deserialization of timestamp values.
There was a problem hiding this comment.
Code Review
This pull request updates integration tests for Arrow query results by asserting batch counts and introduces two new tests, testQueryRowBasedWithArrowFormat and testQueryRowBasedWithArrowFormatMultiPage, to verify row-based querying with the Arrow format. The feedback suggests adding an assertion for the ts (timestamp) field in the new testQueryRowBasedWithArrowFormat test to ensure timestamp parsing is properly validated.
|
@gemini-code-assist review |
There was a problem hiding this comment.
Code Review
This pull request updates integration tests in ITBigQueryTest.java by asserting specific batch counts for Arrow query results and introducing two new tests, testQueryRowBasedWithArrowFormat and testQueryRowBasedWithArrowFormatMultiPage, to verify row-based queries using the Arrow format. There are no review comments, so I have no feedback to provide.
Add integration tests verifying row-based
query()execution usingQueryResultsFormat.ARROWfor both single-page and multi-page results inITBigQueryTest.