Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 1769df0

Browse files
committed
fix test
1 parent eb9426f commit 1769df0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

bigframes/session/dry_runs.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,10 @@ def get_query_stats(
160160
)
161161

162162
result = pandas.Series(values, index=index)
163-
result["totalBytesProcessed"] = int(result["totalBytesProcessed"])
163+
if result["totalBytesProcessed"] is None:
164+
result["totalBytesProcessed"] = 0
165+
else:
166+
result["totalBytesProcessed"] = int(result["totalBytesProcessed"])
164167

165168
return result
166169

0 commit comments

Comments
 (0)