Skip to content
Snippets Groups Projects
Commit 97d2b814 authored by Arseniy Volynets's avatar Arseniy Volynets :boy_tone5:
Browse files

feat: support select without scan

- Support simple queries that do not select
data from tables. This is similar to `values ..`,
but allows to add aliases for expressions.
- Such selects can also be used in subqueries
- Examples:
```
select 1;
select (select count(*) from t);
select 2 as foo, 3 as bar;

select a from t
where b in (select 100)
```
parent c389ed4a
No related branches found
No related tags found
1 merge request!1414sbroad import
Showing
with 562 additions and 133 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment