From: | "liuyuanyuan" <liuyuanyuangogo(at)gmail(dot)com> |
---|---|
To: | <pgsql-docs(at)postgresql(dot)org> |
Subject: | Threes errors of to_char Examples |
Date: | 2015-02-27 08:10:40 |
Message-ID: | 01bf01d05264$e842bf00$b8c83d00$@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-docs |
Hi all!
I found three errors in postgresql9.4.1document, they are about to_char
examples.
Maybe other version of document also have those errors. Please Check and
modify~
In Chapter 9. Functions and Operators of
<http://www.postgresql.org/docs/9.4/interactive/index.html> PostgreSQL 9.4.1
Documentation, I found this:
expression
result
to_char(148.5, '999D999')
' 148,500'
to_char(3148.5, '9G999D999')
' 3 148,500'
to_char(485, 'PL999')
'+485'
But, in fact their result are as follow:
postgres=# select to_char(148.5,'999D999');
to_char
----------
148.500
(1 行记录)
postgres=# select to_char(3148.5,'9G999D999');
to_char
------------
3,148.500
(1 行记录)
Yuanyuan Liu
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2015-02-27 14:21:52 | Re: Threes errors of to_char Examples |
Previous Message | Peter Eisentraut | 2015-02-23 18:04:19 | Re: xref labels: "Chapter 33", "Section 33.2" |