diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2001-08-31 07:45:09 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2001-08-31 07:45:09 +0000 |
commit | 5608f13028f7ed2444d6ce50490427f3fb6465ae (patch) | |
tree | 9e9d0188675de3749c9dde58cde8210f579db4ae /doc/src | |
parent | a32624b45c68db3d5f942f1004c19b90b077ec2b (diff) | |
download | postgresql-5608f13028f7ed2444d6ce50490427f3fb6465ae.tar.gz postgresql-5608f13028f7ed2444d6ce50490427f3fb6465ae.zip |
The actual execution results are different from examples.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 4b318597952..2c2daa11a02 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.67 2001/08/31 07:30:05 ishii Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.68 2001/08/31 07:45:09 ishii Exp $ --> <chapter id="functions"> <title>Functions and Operators</title> @@ -347,14 +347,14 @@ <entry> <literal>^</literal> </entry> <entry>Exponentiation</entry> <entry>2.0 ^ 3.0</entry> - <entry>8.0</entry> + <entry>8</entry> </row> <row> <entry> <literal>|/</literal> </entry> <entry>Square root</entry> <entry>|/ 25.0</entry> - <entry>5.0</entry> + <entry>5</entry> </row> <row> @@ -382,7 +382,7 @@ <entry> <literal>@</literal> </entry> <entry>Absolute value</entry> <entry>@ -5.0</entry> - <entry>5.0</entry> + <entry>5</entry> </row> <row> |