Files
sqlfluff/test/fixtures/dialects/hive/create_table_external_partitioned.sql
2024-04-01 21:19:41 +00:00

7 lines
138 B
SQL

CREATE EXTERNAL TABLE IF NOT EXISTS foo (
col1 int,
col2 string
)
PARTITIONED BY (col3 string, col4 date)
LOCATION 'hdfs://path';