|
SELECT HEX(INET6_ATON('1::1')), HEX(INET6_ATON(CONVERT('1::1' USING ucs2)));
|
+----------------------------------+---------------------------------------------+
|
| HEX(INET6_ATON('1::1')) | HEX(INET6_ATON(CONVERT('1::1' USING ucs2))) |
|
+----------------------------------+---------------------------------------------+
|
| 00010000000000000000000000000001 | NULL |
|
+----------------------------------+---------------------------------------------+
|
Looks wrong. The result for the second column should be equal to the first column.
|