-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Move dryRun property to from query to configuration level. #2984
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
I'll defer to @tseaver here |
@@ -31,7 +31,6 @@ class _SyncQueryConfiguration(object): | |||
Values which are ``None`` -> server defaults. | |||
""" | |||
_default_dataset = None | |||
_dry_run = None |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
bigquery/unit_tests/test_query.py
Outdated
@@ -307,7 +307,6 @@ def test_run_w_alternate_client(self): | |||
query.timeout_ms = 20000 | |||
query.use_query_cache = False | |||
query.use_legacy_sql = True | |||
query.dry_run = True |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
…s#2984) * Move dryRun property to from query to configuration level.
Fixes #2981
Sets
dryRun
at['configuration']['dryRun']
rather than['configuration']['query']['dryRun]
.