Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav274 committed Sep 17, 2023
1 parent 922859d commit ba2baa5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions evadb/optimizer/statement_to_opr_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,12 @@ def visit_select(self, statement: SelectStatement):
self._visit_groupby(statement.groupby_clause)

# Projection operator
# move function expressions out of projection list to table valued expression
# this is done to handle the https://github.com/georgia-tech-db/evadb/issues/1147 and https://github.com/georgia-tech-db/evadb/issues/1130.

# a complete fix would require modifying the binder
#

select_columns = statement.target_list

if select_columns is not None:
Expand Down

0 comments on commit ba2baa5

Please sign in to comment.