diff options
author | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-04-17 03:55:01 +0000 |
---|---|---|
committer | Thomas G. Lockhart <lockhart@fourpalms.org> | 1998-04-17 03:55:01 +0000 |
commit | a0ca95fa0defa205b1aeb9bf77927aa88a4eeb59 (patch) | |
tree | 5cf4d50cfea9bff41cce5241f7a7f93c414386d9 | |
parent | 83fd305f7839446dcc1830318a7f4f3713261f2c (diff) | |
download | postgresql-a0ca95fa0defa205b1aeb9bf77927aa88a4eeb59.tar.gz postgresql-a0ca95fa0defa205b1aeb9bf77927aa88a4eeb59.zip |
Fix typos in a couple of examples.
-rw-r--r-- | doc/src/sgml/datatype.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index b194ec2df7b..48c2a49070a 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -692,7 +692,7 @@ SET DateStyle <Acronym>SQL</Acronym> command. <Para> For <ProductName>Postgres</ProductName> v6.3 (and earlier) the default date/time style is -"traditional Postgres". In future releases, the default may become ISO-8601, which alleviates +"non-European traditional Postgres". In future releases, the default may become ISO-8601, which alleviates date specification ambiguities and Y2K collation problems. </Para> @@ -1880,13 +1880,13 @@ At the moment, some functions are available only for the text type. <ENTRY> datetime(date,time) </ENTRY> <ENTRY> datetime </ENTRY> <ENTRY> convert to datetime </ENTRY> -<ENTRY> datetime('1998-02-24':datetime, '23:07'::time); +<ENTRY> datetime('1998-02-24'::datetime, '23:07'::time); </ENTRY> </ROW> <ROW> <ENTRY> age(datetime,datetime) </ENTRY> <ENTRY> timespan </ENTRY> <ENTRY> span preserving months and years </ENTRY> -<ENTRY> age('now','1957-06-13':datetime) </ENTRY> +<ENTRY> age('now','1957-06-13'::datetime) </ENTRY> </ROW> <ROW> <ENTRY> date_part(text,datetime) </ENTRY> |