Skip to content

Commit

Permalink
fix: hotfix for the failing staging build (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav274 authored Sep 19, 2023
1 parent 85112bb commit c453232
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions evadb/optimizer/statement_to_opr_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,7 @@ def visit_select(self, statement: SelectStatement):

col_with_func_exprs = []

if (
statement.from_table
and statement.orderby_list
and statement.groupby_clause is None
):
if statement.orderby_list and statement.groupby_clause is None:
projection_cols = []
for col in statement.target_list:
if isinstance(col, FunctionExpression):
Expand Down

0 comments on commit c453232

Please sign in to comment.