yaowanli opened a new issue #6143:
URL: https://github.com/apache/incubator-doris/issues/6143


   Doris version:0.13.15
   Last weekend I update Doris from 0.12 to 0.13.15, and add some table new 
feature:sequence.
   Then I find some strange situation:I can insert new data into data,but can't 
update.
   But I find those table can't update by SQL "insert into select ยทยทยท".
   Besides,I try to use streamload to use msg to update those table ,it didn't 
work too;
   Here is the one table schema:
   
   CREATE TABLE `wmsb_shipment_header_ext` (
     `id` int(11) NULL COMMENT "",
     `shipmentId` int(11) NULL COMMENT "",
     `shipmentCode` varchar(64) NULL COMMENT "",
        
     `doris_update_time` datetime NULL COMMENT ""
   ) ENGINE=OLAP
   UNIQUE KEY(`id`, `shipmentId`, `shipmentCode`)
   COMMENT "wmsb"
   DISTRIBUTED BY HASH(`shipmentId`) BUCKETS 32
   PROPERTIES (
   "replication_num" = "3",
   "in_memory" = "false",
   "storage_format" = "V2"
   );
   and __DORIS_SEQUENCE_COL__  is DATE.


-- 
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