Files
doris/regression-test/suites/query_p0/join/ddl/right_table.sql

13 lines
302 B
SQL

CREATE TABLE IF NOT EXISTS right_table (
k1 int(11) NULL COMMENT "",
no varchar(50) NOT NULL COMMENT ""
) ENGINE=OLAP
DUPLICATE KEY(k1)
COMMENT "OLAP"
DISTRIBUTED BY HASH(k1) BUCKETS 2
PROPERTIES (
"replication_allocation" = "tag.location.default: 1",
"in_memory" = "false",
"storage_format" = "V2"
);