You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yes we should do that, feel free to create an issue...
this is so-called "column name inference"
assign a name for unnamed columns, and use user-specified names for projections
and for the top-level node, if we have physical property implemented, it will always be a gather node
unless all plan nodes are singleton
ColumnRef and Schema seem to have a lot of purpose overlap, I think that we can merge their functionality together.
The text was updated successfully, but these errors were encountered:
jurplel
changed the title
Extend schema to contain table name, and migate cost model's ColumnRef property usage to schema
Extend schema to contain table name, and migrate cost model's ColumnRef property usage to schema
Mar 23, 2024
yes, they are all column-level properties; but they are different -- schema is more focused on column type + name, while column ref indicates how the column is computed (which will then be used by the cost model to derive the cost)
From Chi:
ColumnRef and Schema seem to have a lot of purpose overlap, I think that we can merge their functionality together.
The text was updated successfully, but these errors were encountered: