From 333669791830a2ec56441969672fbcd57d9d91df Mon Sep 17 00:00:00 2001 From: shubha-rajan Date: Wed, 21 Aug 2019 18:26:26 -0700 Subject: [PATCH] Revert "print estimated bytes instead of total bytes" This reverts commit e3107f68878fbd0e0b308285deb856d972bef7e8. --- bigquery/google/cloud/bigquery/magics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery/google/cloud/bigquery/magics.py b/bigquery/google/cloud/bigquery/magics.py index 47bb5460c0ca..56aaa5f27c84 100644 --- a/bigquery/google/cloud/bigquery/magics.py +++ b/bigquery/google/cloud/bigquery/magics.py @@ -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))