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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to