-
Notifications
You must be signed in to change notification settings - Fork 45
Partitions are not handled #118
Copy link
Copy link
Closed
Labels
Description
Describe the bug
Partition definition is not handled by the parser, 'parse_from_file' Returns an empty list
To Reproduce
Steps to reproduce the behavior:
Add this code to a simple create table query:
PARTITION BY col(id)
(
PARTITION a VALUES('12') WITH (appendonly='false'),
PARTITION b VALUES('9') WITH (appendonly='false')
);
Expected behavior
Return an non empty result or If there is a problem with partition,skip partition result instead of giving no result at all.
Reactions are currently unavailable