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
* feat(hash_join): implement basic Inner/Left/Right/Full Join operations
found a problem that needs to be fixed:
- when the `Projection` operator executes eval_column, the reading data is abnormal due to the duplication of the ColumnIdx subscript of the Catalog
So `Binder::bind_project` need to support join
* fix(hash_join): fix filter on right join
* feat(projection): `Projection` supports multi-table mapping
By marshaling Column and rewriting `ScalarExpression` to convert `ColumnRef` to `InputRef`
* fix(insert): fix the misalignment between the specified field and the data when inserting
* refactor(physical_plan_builder): for subsequent Agg compatibility, cancel converting InputRef to ColumnRef
* fix(create_table): fix `test_create_bind`
* refactor(binder): when selecting Join in `Binder::bind`, perform corresponding Select nullable processing to avoid rewrite
0 commit comments