From 7d40942a2724435d1ef4764e80f03b89260ffbfd Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 6 Mar 2006 04:53:50 +0000 Subject: [PATCH] in the docs, the function "ascii(text)" is described as returning "ASCII code of the first character of the argument" (see http://www.postgresql.org/docs/8.1/interactive/functions-string.html, Table 9-6. "Other String Functions"). Presumably this should read "ASCII code of the first byte of the argument", which is what is returned when the argument is a multi-byte character (although then with UTF-8 at least that might not necessarily be an ASCII code). Ian Barwick --- doc/src/sgml/func.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 7d18f97602..eff243d73a 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,5 +1,5 @@ @@ -1249,7 +1249,7 @@ PostgreSQL documentation ascii(text) int - ASCII code of the first character of the argument + ASCII code of the first byte of the argument ascii('x') 120 -- GitLab