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

6 lines
123 B
SQL

CREATE TEMPORARY TABLE foo (
col1 string,
col2 float
)
TBLPROPERTIES ("property1"="value1", "property2"="value2");