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
Add support of parsing OPTIMIZE TABLE statement for ClickHouse
ClickHouse supports using `OPTIMIZE TABLE` to initialize an unscheduled merge
of data parts for tables. The syntax is following:
```SQL
OPTIMIZE TABLE [db.]name [ON CLUSTER cluster] [PARTITION partition | PARTITION ID 'partition_id'] [FINAL] [DEDUPLICATE [BY expression]]
```
See: https://clickhouse.com/docs/en/sql-reference/statements/optimize
0 commit comments