opteryx icon indicating copy to clipboard operation
opteryx copied to clipboard

✨ Support using SQL to set up the metastore

Open joocer opened this issue 2 years ago • 0 comments

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'
);

joocer avatar Nov 30 '22 22:11 joocer