Replies: 1 comment
-
I've tried to stick to standard SQL for the most part, though there's a lot of constructs that LocustDB doesn't support mainly because it would just be a lot of work to implement all of them. There are two places I'm aware of where LoustDB currently diverges from ANSI SQL in a significant way. GROUP BY: LocustDB currently doesn't support explicit GROUP BY clauses, and instead implicitly performs GROUP BY of any non-aggregation expression if your query contains an aggregation expression. So e.g. NULL: Since LocustDB does not require a schema and is designed to allow all partitions to process data in parallel, missing columns must have the exact same semantics as columns with LocustDB uses sqlparser-rs with the |
Beta Was this translation helpful? Give feedback.
-
the speed is great, but have to learn special SQL grammar.
Beta Was this translation helpful? Give feedback.
All reactions