We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8da3a96 commit 4d2422fCopy full SHA for 4d2422f
1 file changed
src/tallyman_xorq/build.py
@@ -503,7 +503,9 @@ def build_and_persist(
503
# wraps the sorted expression and loaded bakes in canonical order.
504
row_count = int(loaded.count().execute())
505
snap_path = _cached_node_path(loaded)
506
- result_digest_v: str | None = snapshot_file_digest(snap_path) if snap_path and snap_path.exists() else None
+ result_digest_v: str | None = (
507
+ snapshot_file_digest(snap_path) if snap_path and snap_path.exists() else None
508
+ )
509
else:
510
# Stream full result to force row-level evaluation (catch a
511
# failing cast / arithmetic at build time) and count rows.
0 commit comments