Skip to content

Commit 884d488

Browse files
committed
fix engine tests
1 parent 16be5a5 commit 884d488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigframes/core/compile/sqlglot/aggregations/unary_compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _(
7171
op.should_floor_result or column.dtype == dtypes.TIMEDELTA_DTYPE
7272
)
7373
if should_floor_result:
74-
expr = sge.func("FLOOR", expr)
74+
expr = sge.Cast(this=sge.func("FLOOR", expr), to="INT64")
7575
return apply_window_if_present(expr, window)
7676

7777

0 commit comments

Comments
 (0)