feat: support subqueries for global tables
- Update sbroad submodule to commit adding support for subqueries - Add integration tests for sql queries with subqueries and global tables Supported queries: - Queries that reference global tables in subqueries: ```sql select a from segment_t where b in (select c + d from global_t) ``` - Queries that read from global tables and use subquery: ```sql select c from global_t where d in (select a from segment_t) ``` Note: the support of subqueries applies only to types of queries currently supported for global tables. Joins, aggregates, except, union all are currently not supported for global tables.
parent
94ab5e36
No related branches found
No related tags found
Please register or sign in to comment