Files
doris/regression-test/suites/query/join/ddl/full_join_table.sql
2022-05-23 13:29:37 +08:00

12 lines
272 B
SQL

CREATE TABLE `full_join_table` (
`x` varchar(150) NULL COMMENT ""
) ENGINE=OLAP
UNIQUE KEY(`x`)
COMMENT "OLAP"
DISTRIBUTED BY HASH(`x`) BUCKETS 3
PROPERTIES (
"replication_allocation" = "tag.location.default: 1",
"in_memory" = "false",
"storage_format" = "V2"
)