diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-10-09 19:13:48 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-10-09 19:13:48 +0000 |
commit | 3fce18084b2eeeb4a0d6d4f99703e2ce2ece7cb5 (patch) | |
tree | f32a55e14cc2443613c6be9d9fdde0456c3341ea | |
parent | 172b1255788fc2454e4d47516e1f09b152e81d54 (diff) | |
download | postgresql-3fce18084b2eeeb4a0d6d4f99703e2ce2ece7cb5.tar.gz postgresql-3fce18084b2eeeb4a0d6d4f99703e2ce2ece7cb5.zip |
About section 8.5.1.5. ("Special Values"):
I suggest adding LOCALTIMESTAMP and LOCALTIME to the first paragraph.
Maybe it should be phrased as:
The following SQL-compatible functions can be used to obtain
current datetime-related values: CURRENT_DATE, CURRENT_TIME,
CURRENT_TIMESTAMP, LOCALTIME and LOCALTIMESTAMP.
(See Section 9.8.4.)
Troels Arvin
-rw-r--r-- | doc/src/sgml/datatype.sgml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 5a5cb6af793..1d012e5f8a5 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.124 2003/09/12 22:17:22 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.125 2003/10/09 19:13:48 momjian Exp $ --> <chapter id="datatype"> @@ -1759,11 +1759,12 @@ January 8 04:05:06 1999 PST <para> The following <acronym>SQL</acronym>-compatible functions can be - used as date or time - values for the corresponding data type: <literal>CURRENT_DATE</literal>, - <literal>CURRENT_TIME</literal>, - <literal>CURRENT_TIMESTAMP</literal>. The latter two accept an - optional precision specification. (See also <xref linkend="functions-datetime-current">.) + used as date or time values for the corresponding data type: + <literal>CURRENT_DATE</literal>, <literal>CURRENT_TIME</literal>, + <literal>CURRENT_TIMESTAMP</literal>, <literal>LOCALTIME</literal>, + <literal>LOCALTIMESTAMP</literal>. The latter four accept an + optional precision specification. (See also <xref + linkend="functions-datetime-current">.) </para> <para> |