Skip to content

Commit e3107f6

Browse files
committed
print estimated bytes instead of total bytes
1 parent 7f31051 commit e3107f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bigquery/google/cloud/bigquery/magics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def _run_query(client, query, job_config=None):
294294

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

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

0 commit comments

Comments
 (0)