Details
Description
In 10.11.17, updating specially named fields select and update no longer works, while it worked correctly in version 10.11.16.
CREATE OR REPLACE TEMPORARY TABLE _tmp( |
rowid INT UNSIGNED NOT NULL DEFAULT '0' , |
180ah_2_ev TINYINT UNSIGNED NOT NULL DEFAULT 0 , |
PRIMARY KEY (rowid) |
)
|
|
;
|
|
update _tmp k set k.180ah_2_ev =1; |
select k.180ah_2_ev from _tmp as k; |
|
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '.180ah_2_ev from _tmp as k' at line 1
Attachments
Issue Links
- duplicates
-
MDEV-39654 schema-qualified unquoted table name starting with digit fails to parse
-
- Closed
-
- relates to
-
MDEV-17677 parse keywords followed by a dot as keywords
-
- Stalled
-