opteryx
opteryx copied to clipboard
✨ Support using SQL to set up the metastore
HIVE example:
CREATE TABLE IF NOT EXISTS hive.iris.iris_parquet (
sepal_length DOUBLE,
sepal_width DOUBLE,
petal_length DOUBLE,
petal_width DOUBLE,
class VARCHAR
)
WITH (
external_location = 's3a://iris/iris_parquet',
format = 'PARQUET'
);