Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Duplicate
-
Affects Version/s: 10.3.4
-
Fix Version/s: N/A
-
Component/s: Data Definition - Alter Table
-
Labels:None
Description
Script below fails on column name 'public', works fine in 10.2
Code is used in https://releases.openstack.org/queens/#queens-neutron
CREATE TABLE `firewall_rules_v2` (
|
`public` tinyint(1) DEFAULT NULL, |
CONSTRAINT `CONSTRAINT_1` CHECK (`public` in (0,1))); |
 |
ALTER TABLE firewall_rules_v2 CHANGE `public` shared BOOL NULL; |
ERROR 1054 (42S22): Unknown column 'public' in 'CHECK'
Attachments
Issue Links
- duplicates
-
MDEV-13508 ALTER TABLE that renames columns and CHECK constraints
-
- Closed
-