xy720 opened a new pull request #3981: URL: https://github.com/apache/incubator-doris/pull/3981
#3389 This commit supports updating partitions' properties of range table in one command. Example: - replication_num ``` alter table tbl_name modify partition (p1, p2, p3) set ("replication_num" = "3"); ``` - storage_medium && storage_cooldown_time ``` alter table tbl_name modify partition (p1, p2, p3) set ("storage_medium" = "SSD", "storage_cooldown_time" = "2018-01-01 12:00:00"); ``` - in_memory ``` alter table tbl_name modify partition (*) set ("in_memory" = "true"); ``` ---------------------------------------------------------------- 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. 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