Skip to content

Commit

Permalink
fix(issue-10699): let bigquery backend respect window frame set by users
Browse files Browse the repository at this point in the history
  • Loading branch information
maxshine committed Jan 21, 2025
1 parent 15f075e commit 1546c5f
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions ibis/backends/sql/compilers/bigquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,13 +324,6 @@ def _compile_python_udf(self, udf_node: ops.ScalarUDF) -> sge.Create:

@staticmethod
def _minimize_spec(start, end, spec):
if (
start is None
and isinstance(getattr(end, "value", None), ops.Literal)
and end.value.value == 0
and end.following
):
return None
return spec

def visit_BoundingBox(self, op, *, arg):
Expand Down

0 comments on commit 1546c5f

Please sign in to comment.