Chriss-Leo opened a new issue, #1066:
URL: https://github.com/apache/doris-website/issues/1066
CREATE TABLE IF NOT EXISTS test (
id VARCHAR(16) NOT NULL,
createDate DATETIME ,
count BIGINT,
)
ENGINE=OLAP
UNIQUE KEY(id, createDate)
PARTITION BY RANGE(createDate)
(
FROM ("2024-01-01") TO ("2030-01-01") INTERVAL 3 MONTH
)
DISTRIBUTED BY HASH(id) BUCKETS 16
PROPERTIES(
"storage_policy" = "xxx_policy"
);
**error: Can not create UNIQUE KEY table that enables Merge-On-write with
storage policy(xxx_policy)**
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]