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


   **Describe the bug**
   If the server upgrade  from 0.11 and has a duplicate table. After upgrade we 
add a column by linked schema change, this will be cause a core dump
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. in version  0.11  create a duplicate table, and load some data;
   ```
   CREATE TABLE table1
   (
       siteid INT DEFAULT '10',
       citycode SMALLINT,
       username VARCHAR(32) DEFAULT '',
       pv BIGINT DEFAULT '0'
   )
   duplicate KEY(siteid, citycode, username)
   DISTRIBUTED BY HASH(siteid) BUCKETS 10
   PROPERTIES("replication_num" = "1");
   insert into table1 values
   (1,1,"jim",2),
   (2,1,"grace",2),
   (3,2,"tom",2),
   (4,3,"bush",3),
   (5,3,"helen",3);
   ```
   2. upgrade to 0.12 
   3. add a column by linked schema change, like `ALTER TABLE table1 ADD COLUMN 
tc_type varchar(24) DEFAULT "all" AFTER pv;`
   4. See error
   
   **Screenshots**
   If applicable, add screenshots to help explain your problem.
   
![image](https://user-images.githubusercontent.com/9098473/87140781-a082bf80-c2d4-11ea-8ed8-b2c74a9b3531.png)
   


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

Reply via email to