From c4532321e165e272c9bedc7db688ba7e57f96440 Mon Sep 17 00:00:00 2001 From: Gaurav Tarlok Kakkar Date: Tue, 19 Sep 2023 17:44:39 -0400 Subject: [PATCH] fix: hotfix for the failing staging build (#1169) --- evadb/optimizer/statement_to_opr_converter.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/evadb/optimizer/statement_to_opr_converter.py b/evadb/optimizer/statement_to_opr_converter.py index 11e5a876f6..d0e36e16a3 100644 --- a/evadb/optimizer/statement_to_opr_converter.py +++ b/evadb/optimizer/statement_to_opr_converter.py @@ -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):