openlookeng / hetu-core

570 stars 423 forks source link

Why the create table syntax is inconsistent with trino #348

Open china-shang opened 2 years ago

china-shang commented 2 years ago

this is trino

create table hive.default.page2 (id int, name varchar) WITH (format = 'PARQUET', external_location='oss://bucket/test');

this is openlookeng

create table hive.default.page2 (id int, name varchar) WITH (format = 'PARQUET', 
external=true,location='oss://bucket/test');