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 c0aae99 commit 569967fCopy full SHA for 569967f
bigframes/core/compile/compiled.py
@@ -458,7 +458,9 @@ def project_window_op(
458
if expression.op.skips_nulls and not never_skip_nulls:
459
for column in inputs:
460
clauses.append((column.isnull(), ibis_types.null()))
461
- if window_spec.min_periods and len(inputs) > 0:
+
462
+ assert window_spec.min_periods
463
+ if len(inputs) > 0:
464
if not expression.op.nulls_count_for_min_values:
465
# Most operations do not count NULL values towards min_periods
466
per_col_does_count = (column.notnull() for column in inputs)
0 commit comments