Skip to content

Commit

Permalink
print estimated bytes instead of total bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
shubha-rajan committed Aug 21, 2019
1 parent 7f31051 commit e3107f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigquery/google/cloud/bigquery/magics.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def _run_query(client, query, job_config=None):

if job_config and job_config.dry_run:
assert query_job.state == "DONE"
print("Query successfully validated. This query will process {} bytes.".format(query_job.total_bytes_processed))
print("Query successfully validated. This query will process {} bytes.".format(query_job.estimated_bytes_processed))
return query_job

print("Executing query with job ID: {}".format(query_job.job_id))
Expand Down

0 comments on commit e3107f6

Please sign in to comment.