hufengkai commented on issue #20650:
URL: https://github.com/apache/doris/issues/20650#issuecomment-1584433097
CREATE TABLE EVENT
(
id INT NOT NULL,
event JSON NOT NULL,
proc_time DATETIMEV2 NOT NULL
) ENGINE = OLAP UNIQUE KEY(`id`)
DISTRIBUTED BY HASH (`id`) BUCKETS auto
PROPERTIES (
"replication_allocation" = "tag.location.default: 3",
"in_memory" = "false",
"storage_format" = "V2",
"compression" = "zstd",
"disable_auto_compaction" = "false"
);
insert into EVENT VALUES (123, '{"value":-1}',CURRENT_TIMESTAMPE())
--
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]