From c44c70fcfef4bf30357df04296f654ac5910aa2b Mon Sep 17 00:00:00 2001 From: "paul@teton.kitebird.com" <> Date: Wed, 18 Sep 2002 16:39:26 -0500 Subject: [PATCH] manual.texi fix X'...' example to return correct result type --- Docs/manual.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/manual.texi b/Docs/manual.texi index bf19b5e1779..ab42c609a96 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -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: @example -mysql> SELECT x'FF' - -> 255 +mysql> SELECT x'4D7953514C'; + -> MySQL mysql> SELECT 0xa+0; -> 10 mysql> SELECT 0x5061756c;