i'm copy/pasting a tutorial and trying to understand what's going on behind it, this one looked fairly straight forward, but for some reason it doesn't work. It seems to take issue with the closing parenthesis around the column name when doing a Partitioned By. I've tried removing the brackets, restructuring the query, checking there are no weird characters in notepad++, etc. What's gone wrong here?
1 Answer
Missing a USING clause, e.g.
CREATE TABLE rectangles
USING PARQUET
PARTITIONED BY (width)
CLUSTERED BY (length) INTO 8 buckets
AS SELECT * FROM boxes
3 Comments
user3012708
Aha! Reading the docs, i thought this was optional. This fixes it, thanks a lot!
Ged
NP, can happen to the best of us
Ged
I am in Corona time also certifying, I noted a whole lot of errors in the courses, some basics as well. @AlexOtt
