[MCOL-5536] alter table renaming column failed when utf8 is used Created: 2023-07-19 Updated: 2023-10-27 Resolved: 2023-10-27 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | DDLProc |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Critical |
| Reporter: | Daniel Lee (Inactive) | Assignee: | Leonid Fedorov |
| Resolution: | Won't Fix | Votes: | 0 |
| Labels: | None | ||
| Description |
|
Build tested: develop branch MariaDB [mytest]> CREATE TABLE `t1` ( `c1` char(3) DEFAULT NULL ) ENGINE=Columnstore; MariaDB [mytest]> insert into t1 values ('a'); MariaDB [mytest]> alter table t1 change c1 c2 char(3); The same works for innodb table |