morrySnow opened a new pull request, #35341:
URL: https://github.com/apache/doris/pull/35341

   This reverts commit cddf62b4c91ac4201b622e7ba672375f2e46e31f.
   This reverts PR #34977.
   
   It introduce a behavior change, below case will failed after this PR
   
               CREATE TABLE `roles` (
                   role_id       INT,
                   occupation    VARCHAR(32),
                   camp          VARCHAR(32),
                   register_time DATE
               )
               UNIQUE KEY(role_id)
               PARTITION BY RANGE (role_id)
               (
                   PARTITION p1 VALUES LESS THAN ("10")
               )
               DISTRIBUTED BY HASH(role_id) BUCKETS 1
               PROPERTIES (
                   "replication_allocation" = "tag.location.default: 1",
                   "binlog.enable" = "true"
               );
   
               INSERT INTO `roles` VALUES
               (0, 'who am I', NULL, NULL),
               (1, 'mage', 'alliance', '2018-12-03 16:11:28'),
               (2, 'paladin', 'alliance', '2018-11-30 16:11:28'),
               (3, 'rogue', 'horde', '2018-12-01 16:11:28'),
               (4, 'priest', 'alliance', '2018-12-02 16:11:28'),
               (5, 'shaman', 'horde', NULL),
               (6, 'warrior', 'alliance', NULL),
               (7, 'warlock', 'horde', '2018-12-04 16:11:28'),
               (8, 'hunter', 'horde', NULL);
   
   the original plan is right. the bug should be fixed on BE
   
   


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