Commit 26aad00a authored by unknown's avatar unknown

manual.texi fix X'...' example to return correct result type


Docs/manual.texi:
  fix X'...' example to return correct result type
parent 945c8e55
...@@ -28453,8 +28453,8 @@ like an integer (64-bit precision). In string context these act like a binary ...@@ -28453,8 +28453,8 @@ like an integer (64-bit precision). In string context these act like a binary
string where each pair of hex digits is converted to a character: string where each pair of hex digits is converted to a character:
@example @example
mysql> SELECT x'FF' mysql> SELECT x'4D7953514C';
-> 255 -> MySQL
mysql> SELECT 0xa+0; mysql> SELECT 0xa+0;
-> 10 -> 10
mysql> SELECT 0x5061756c; mysql> SELECT 0x5061756c;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment