1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-09 22:41:56 +03:00

9.5 release notes: mention lack of char() sort improvements

Report by Peter Geoghegan

Backpatch through 9.5
This commit is contained in:
Bruce Momjian
2015-08-26 10:33:02 -04:00
parent bff62dfb87
commit 63c6522dae

View File

@ -1114,7 +1114,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>