Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Bit and hex string literals unintentionally changed column names in 10.0.14 (possibly a fix for MDEV-6688)
Before the change:
mysql> SELECT _utf8 X'63', _utf8 B'01111110';
|
+-------------+-------------------+
|
| _utf8 X'63' | _utf8 B'01111110' |
|
+-------------+-------------------+
|
| c | ~ |
|
+-------------+-------------------+
|
after the change:
mysql> SELECT _utf8 X'63', _utf8 B'01111110';
|
+---+---+
|
| c | ~ |
|
+---+---+
|
| c | ~ |
|
+---+---+
|