Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.5.5, 10.5
-
None
Description
When trying to change a column name (lowercase to uppercase) it has no effect:
MariaDB 10.5.5:
MariaDB [test]> create table t1 (columnname int);
|
Query OK, 0 rows affected (0.017 sec)
|
|
MariaDB [test]> alter table t1 rename column columnname to COLUMNNAME;
|
Query OK, 0 rows affected (0.001 sec)
|
Records: 0 Duplicates: 0 Warnings: 0
|
|
MariaDB [test]> show create table t1\G
|
*************************** 1. row ***************************
|
Table: t1
|
Create Table: CREATE TABLE `t1` (
|
`columnname` int(11) DEFAULT NULL
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1
|
1 row in set (0.001 sec)
|
MySQL 8.0.21:
MySQL [test]> create table t1 (columnname int);
|
Query OK, 0 rows affected (0.057 sec)
|
|
MySQL [test]> alter table t1 rename column columnname to COLUMNNAME;
|
Query OK, 0 rows affected (0.026 sec)
|
Records: 0 Duplicates: 0 Warnings: 0
|
|
MySQL [test]> show create table t1\G
|
*************************** 1. row ***************************
|
Table: t1
|
Create Table: CREATE TABLE `t1` (
|
`COLUMNNAME` int DEFAULT NULL
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci
|
1 row in set (0.001 sec)
|
Attachments
Issue Links
- is caused by
-
MDEV-16290 ALTER TABLE ... RENAME COLUMN syntax
-
- Closed
-
- relates to
-
MDEV-13671 InnoDB should use case-insensitive column name comparisons like the rest of the server
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Assignee | Aleksey Midenkov [ midenok ] |
Fix Version/s | 10.5 [ 23123 ] |
Affects Version/s | 10.5 [ 23123 ] |
Link |
This issue is caused by |
Status | Open [ 1 ] | In Progress [ 3 ] |
Summary | alter table rename column doesn't work (changing from lower to uppercase) | alter table rename column to uppercase doesn't work |
Assignee | Aleksey Midenkov [ midenok ] | Oleksandr Byelkin [ sanja ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Oleksandr Byelkin [ sanja ] | Aleksey Midenkov [ midenok ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Fix Version/s | 10.5.7 [ 25019 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Link |
This issue relates to |
Workflow | MariaDB v3 [ 114038 ] | MariaDB v4 [ 158417 ] |