Update psql docs for recent octal-only string behavior.
authorBruce Momjian
Mon, 30 May 2005 15:24:23 +0000 (15:24 +0000)
committerBruce Momjian
Mon, 30 May 2005 15:24:23 +0000 (15:24 +0000)
doc/src/sgml/ref/psql-ref.sgml

index 34325b1454d39b4e359e555cbe1505aab8a26346..55c160e91cfdec5b1badc142c442217374c8936c 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -589,11 +589,8 @@ testdb=>
     single quote. To include a single quote into such an argument,
     precede it by a backslash. Anything contained in single quotes is
     furthermore subject to C-like substitutions for
-    \n (new line), \t (tab),
-    \digits,
-    \0digits, and
-    \0xdigits (the
-    character with the given decimal, octal, or hexadecimal code).
+    \n (new line), \t (tab), and
+    \digits (octal).
     
 
     
@@ -2367,12 +2364,7 @@ testdb=> \set content '\'' `sed -e "s/'/\\\\\\'/g" < my_file.tx
         %digits
         
         
-        The character with the indicated numeric code is substituted.
-        If digits starts
-        with 0x the rest of the characters are
-        interpreted as hexadecimal; otherwise if the first digit is
-        0 the digits are interpreted as octal;
-        otherwise the digits are read as a decimal number.
+        The character with the indicated octal code is substituted.