From 2ba53ba51b673d3408c28c8644c7c55d7a6ae25d Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 18 Sep 2002 16:39:26 -0500 Subject: [PATCH] manual.texi fix X'...' example to return correct result type Docs/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;