doris-website
doris-website copied to clipboard
Issue on docs
CREATE TABLE test_percent_rank (
productLine VARCHAR,
orderYear INT,
orderValue DOUBLE,
percentile_rank DOUBLE
) ENGINE=OLAP
DISTRIBUTED BY HASH(orderYear) BUCKETS 4
PROPERTIES (
"replication_allocation" = "tag.location.default: 1"
);
productLine VARCHAR does not specify length,such as VARCHAR (100).