clickhouse: add support for LIMIT BY (#977)

This commit is contained in:
Lukasz Stefaniak 2023-10-02 17:53:32 +02:00 committed by GitHub
parent 993769ec02
commit 2786c7eaf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 56 additions and 1 deletions

View file

@ -1000,6 +1000,7 @@ fn parse_copy_to() {
}))),
order_by: vec![],
limit: None,
limit_by: vec![],
offset: None,
fetch: None,
locks: vec![],
@ -2046,6 +2047,7 @@ fn parse_array_subquery_expr() {
}),
order_by: vec![],
limit: None,
limit_by: vec![],
offset: None,
fetch: None,
locks: vec![],