Commit effd0dea authored by Neil Conway's avatar Neil Conway

Minor documentation tweak.

parent a9e08392
<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/create_cast.sgml,v 1.15 2003/11/29 19:51:38 pgsql Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/ref/create_cast.sgml,v 1.16 2004/02/15 06:27:37 neilc Exp $ -->
<refentry id="SQL-CREATECAST"> <refentry id="SQL-CREATECAST">
<refmeta> <refmeta>
...@@ -147,9 +147,9 @@ SELECT 'The time is ' || CAST(now() AS text); ...@@ -147,9 +147,9 @@ SELECT 'The time is ' || CAST(now() AS text);
<para> <para>
The function used to perform the cast. The function name may The function used to perform the cast. The function name may
be schema-qualified. If it is not, the function will be looked be schema-qualified. If it is not, the function will be looked
up in the path. The argument type must be identical to the up in the schema search path. The argument type must be
source type, the result data type must match the target type of identical to the source type and the result data type must
the cast. match the target type of the cast.
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment