Skip to content

Commit

Permalink
Revert "print estimated bytes instead of total bytes"
Browse files Browse the repository at this point in the history
This reverts commit e3107f6.
  • Loading branch information
shubha-rajan committed Aug 22, 2019
1 parent e3107f6 commit 3336697
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.estimated_bytes_processed))
print("Query successfully validated. This query will process {} bytes.".format(query_job.total_bytes_processed))
return query_job

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

0 comments on commit 3336697

Please sign in to comment.