diff options
author | Bruce Momjian <bruce@momjian.us> | 2015-08-26 10:33:02 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2015-08-26 10:33:02 -0400 |
commit | 8190f2dfef0c8cf17acb678b7d24f68e4c80a44e (patch) | |
tree | 9212bad4c5e0e9ad0b61e6f3aa9fcb1b07009bab | |
parent | 56c8ce8f6573d4943a621d09ebb6fe767f16d61e (diff) | |
download | postgresql-8190f2dfef0c8cf17acb678b7d24f68e4c80a44e.tar.gz postgresql-8190f2dfef0c8cf17acb678b7d24f68e4c80a44e.zip |
9.5 release notes: mention lack of char() sort improvements
Report by Peter Geoghegan
Backpatch through 9.5
-rw-r--r-- | doc/src/sgml/datatype.sgml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index 8113ddf8179..4d883ecb8b1 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -1139,7 +1139,8 @@ SELECT '52093.89'::money::numeric::float8; advantages in some other database systems, there is no such advantage in <productname>PostgreSQL</productname>; in fact <type>character(<replaceable>n</>)</type> is usually the slowest of - the three because of its additional storage costs. In most situations + the three because of its additional storage costs and slower + sorting. In most situations <type>text</type> or <type>character varying</type> should be used instead. </para> |