Commit d2165a4a authored by Tom Lane's avatar Tom Lane

Fix incorrect example of CAST syntax (was missing required parentheses).

parent a222f3af
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/syntax.sgml,v 1.23 2000/07/14 15:26:21 thomas Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/syntax.sgml,v 1.24 2000/08/07 19:53:27 tgl Exp $
--> -->
<chapter id="syntax"> <chapter id="syntax">
...@@ -502,7 +502,7 @@ float4 '1.23' -- string style ...@@ -502,7 +502,7 @@ float4 '1.23' -- string style
<synopsis> <synopsis>
<replaceable>type</replaceable> '<replaceable>string</replaceable>' <replaceable>type</replaceable> '<replaceable>string</replaceable>'
'<replaceable>string</replaceable>'::<replaceable>type</replaceable> '<replaceable>string</replaceable>'::<replaceable>type</replaceable>
CAST '<replaceable>string</replaceable>' AS <replaceable>type</replaceable> CAST ( '<replaceable>string</replaceable>' AS <replaceable>type</replaceable> )
</synopsis> </synopsis>
The value inside the string is passed to the input The value inside the string is passed to the input
......
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