Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 10.0.18
-
Component/s: Character Sets
-
Labels: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 | ~ |
|
+---+---+
|