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 | ~ |
|
+---+---+
|
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Summary | Regression: Bit string literals changed column names in 10.0.14 | Regression: Bit and hex string literals changed column names in 10.0.14 |
Description |
Bit string literals unintentionally changed column names in 10.0.14 (possibly a fix for Before the change: {code} mysql> SELECT _utf8 X'63', _utf8 B'01111110'; +-------------+-------------------+ | _utf8 X'63' | _utf8 B'01111110' | +-------------+-------------------+ | c | ~ | +-------------+-------------------+ {code} after the change: {code} mysql> SELECT _utf8 X'63', _utf8 B'01111110'; +---+---+ | c | ~ | +---+---+ | c | ~ | +---+---+ {code} |
Bit and hex string literals unintentionally changed column names in 10.0.14 (possibly a fix for Before the change: {code} mysql> SELECT _utf8 X'63', _utf8 B'01111110'; +-------------+-------------------+ | _utf8 X'63' | _utf8 B'01111110' | +-------------+-------------------+ | c | ~ | +-------------+-------------------+ {code} after the change: {code} mysql> SELECT _utf8 X'63', _utf8 B'01111110'; +---+---+ | c | ~ | +---+---+ | c | ~ | +---+---+ {code} |
Fix Version/s | 10.0.17 [ 18300 ] |
Component/s | Character Sets [ 10801 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Fix Version/s | 10.0.18 [ 18702 ] | |
Fix Version/s | 10.0.17 [ 18300 ] |
Workflow | MariaDB v2 [ 59816 ] | MariaDB v3 [ 66453 ] |
Workflow | MariaDB v3 [ 66453 ] | MariaDB v4 [ 148831 ] |