You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CREATE TABLE tpch.part
|
|
(P_PARTKEY INT PRIMARY KEY,
|
|
P_NAME VARCHAR(55),
|
|
P_MFGR CHAR(25),
|
|
P_BRAND CHAR(10),
|
|
P_TYPE VARCHAR(25),
|
|
P_SIZE INTEGER,
|
|
P_CONTAINER CHAR(10),
|
|
P_RETAILPRICE DECIMAL(15,2),
|
|
P_COMMENT VARCHAR(23),
|
|
dummy text) WITH "template=replicated,affinity_key=P_PARTKEY";
|
|
|
|
|