-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Add big_query_query_to_table_it to python SDK #6401
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Run Python PostCommit |
1 similar comment
|
Run Python PostCommit |
cdca1ad to
6ff8985
Compare
|
Run Python PostCommit |
6ff8985 to
6682484
Compare
|
Run Python PostCommit |
| NEW_TYPES_OUTPUT_SCHEMA = ( | ||
| '{"fields": [{"name": "bytes","type": "BYTES"},' | ||
| '{"name": "date","type": "DATE"},{"name": "time","type": "TIME"}]}') | ||
| NEW_TYPES_OUTPUT_VERIFY_QUERY = ('SELECT date FROM [%s];') |
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.
Ideally, this verify query should also query bytes and time. But there are some bugs within current bigquery client version we are using. For time, it cannot process .9999999: googleapis/google-cloud-python#5750. For bytes, it cannot query bytes type properly.
|
Run Python PostCommit |
d237b79 to
9df77e1
Compare
|
Run Python PostCommit |
c7486be to
0b40652
Compare
|
Run Python PostCommit |
1 similar comment
|
Run Python PostCommit |
0b40652 to
092f7d9
Compare
|
Run Python PostCommit |
092f7d9 to
e8c3f04
Compare
e8c3f04 to
d6b456d
Compare
|
Run Python PostCommit |
|
There are some other failures in PostCommit, which aren't related to my changes, eg out of quotas: https://scans.gradle.com/s/fias56tanijtc/console-log#L2358 |
|
This is excellent. Thank you Boyuan. |
Add big_query_query_to_table_it to python SDK, include test cases: legacy query, standard query and new types.