You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bigframes/core/array_value.py
-28Lines changed: 0 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -401,37 +401,10 @@ def aggregate(
401
401
)
402
402
)
403
403
404
-
defproject_window_op(
405
-
self,
406
-
column_name: str,
407
-
op: agg_ops.UnaryWindowOp,
408
-
window_spec: WindowSpec,
409
-
*,
410
-
never_skip_nulls=False,
411
-
skip_reproject_unsafe: bool=False,
412
-
) ->Tuple[ArrayValue, str]:
413
-
"""
414
-
Creates a new expression based on this expression with unary operation applied to one column.
415
-
column_name: the id of the input column present in the expression
416
-
op: the windowable operator to apply to the input column
417
-
window_spec: a specification of the window over which to apply the operator
418
-
output_name: the id to assign to the output of the operator, by default will replace input col if distinct output id not provided
419
-
never_skip_nulls: will disable null skipping for operators that would otherwise do so
420
-
skip_reproject_unsafe: skips the reprojection step, can be used when performing many non-dependent window operations, user responsible for not nesting window expressions, or using outputs as join, filter or aggregation keys before a reprojection
0 commit comments