diff options
author | Bruce Momjian <bruce@momjian.us> | 2011-03-15 20:47:31 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2011-03-15 20:47:31 -0400 |
commit | a858ca19df1491a5082864335efb0fe08e27e960 (patch) | |
tree | a14f3d64467050e8a1ca514b5576e08b71b31bac | |
parent | 2b8364de698b0b425e5d8631a63c91387ee098ef (diff) | |
download | postgresql-a858ca19df1491a5082864335efb0fe08e27e960.tar.gz postgresql-a858ca19df1491a5082864335efb0fe08e27e960.zip |
Adjust doc wording about the casting exceptions for composite types.
-rw-r--r-- | doc/src/sgml/ref/create_cast.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_cast.sgml b/doc/src/sgml/ref/create_cast.sgml index d1c540da8aa..c0039edf752 100644 --- a/doc/src/sgml/ref/create_cast.sgml +++ b/doc/src/sgml/ref/create_cast.sgml @@ -372,7 +372,7 @@ SELECT CAST ( 2 AS numeric ) + 4.0; <note> <para> - There's an exception to the exception, too: I/O conversion casts from + There is also an exception to the exception: I/O conversion casts from composite types to string types cannot be invoked using functional syntax, but must be written in explicit cast syntax (either <literal>CAST</> or <literal>::</> notation). This exception was added |