TableScan
plan without projection is not converted correctly to a sql statement
#11743
Labels
bug
Something isn't working
Describe the bug
when converting a plan that contains a table scan without a projection like this
to a sql using
plan_to_sql
, it gives a wrong select statementwhere the
*
is missing.To Reproduce
you can reproduce it by simply running
Expected behavior
when a plan doesn't have a projection node, the SQL query should look like
SELECT * FROM table
Additional context
No response
The text was updated successfully, but these errors were encountered: