ROUNDROBIN Table¶
GaussDB(DWS) supports the creation of roundrobin tables. You can set table.type in Table 1. Set table.type=ROUND-ROBIN.
Input
CREATE TABLE charge_snapshot (
id bigint NOT NULL,
profit_model integer,
ladder_rebate_rule text
);
Output
CREATE TABLE "public"."charge_snapshot" (
"id" BIGINT NOT NULL,
"profit_model" INTEGER,
"ladder_rebate_rule" TEXT
) WITH (ORIENTATION = ROW, COMPRESSION = NO) NOCOMPRESS DISTRIBUTE BY ROUNDROBIN;