This repository was archived by the owner on Mar 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 134
feat(bigquery): Implement getArray in BigQueryResultImpl #3693
Merged
Merged
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
81bd136
Implement getArray in BigQueryResultImpl
whuffman36 4e28b42
deps: update dependency com.google.apis:google-api-services-bigquery …
renovate-bot dc3c0fb
build(deps): update dependency org.apache.maven.plugins:maven-compile…
renovate-bot 8011eaf
deps: update ossf/scorecard-action action to v2.4.1 (#3690)
renovate-bot fac2ae1
deps: update actions/upload-artifact action to v4.6.1 (#3691)
renovate-bot aa73bfd
Remove public from BigQueryResultSet class def
whuffman36 3b4791d
Remove INTEGER_ARRAY_FIELD_LIST from IT test file
whuffman36 a32c123
Add ReadApi IT test
whuffman36 34c59df
Try old IT test values
whuffman36 2fc76c8
Convert Time objects to strings for comparison
whuffman36 5416a1a
Fix Formatting
whuffman36 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Try old IT test values
- Loading branch information
commit 34c59dfb5416a2acf1f31c90f43aff6a8844464f
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Both of the modified integration tests exercise the non-ReadAPI path. Can you check if we have an existing integration test that exercise the read API path and augment the test to validate getArray on it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added a new IT test to test the ReadAPI path. Turns out that path had not been tested yet, and so the expected responses for
getDate()andgetTime()were inaccurate. The ReadAPI path returns theDateandTimeobjects in local format instead of UTC format.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As discussed offline, it looks more like my local machine had a different local time than that of the VM running the kokoro, resulting in different dates and time objects. This has been resolved.