@@ -44,11 +44,13 @@ Migration to 7.2
4444 re-enabled using a postgresql.conf parameter. The SELECT ... LIMIT
4545 #,# syntax will be removed in 7.3. You should change your queries to
4646 use separate LIMIT and OFFSET clauses, e.g. LIMIT 10 OFFSET 20. Also,
47- pg_hba.conf now only loads on SIGHUP.
47+ pg_hba.conf now only loads on SIGHUP. Octet_length() now returns
48+ uncompressed data length. 'current' no longer used; use
49+ CURRENT_TIMESTAMP instead.
4850
4951
5052
51- AS OF 2001-11-19
53+ AS OF 2001-12-04
5254
5355Bug Fixes
5456---------
@@ -97,7 +99,7 @@ Native language support for error messages in psql, pg_dump, libpq, and
9799 postgres components; configure --enable-nls
98100 (Peter E [German, some French, some Swedish], Serguei A. Mokhov [Russian],
99101 Karel Zak [Czech], Weiping He [Simplified Chinese], Zhenbang Wei
100- [Traditional Chinese])
102+ [Traditional Chinese], Zoltan [Hungarian] )
101103Make NULL appear at beginning/end based on ORDER BY (Tom)
102104Add %TYPE capability to CREATE TYPE (Ian Lance Taylor)
103105Truncate extra-long sequence names to a reasonable value (Tom)
@@ -160,6 +162,7 @@ Remove 'triggered data change violation' error check (Tom)
160162Optimize LIKE/ILIKE when using single-byte encodings (Tatsuo)
161163New libpq function PQescapeBytea() escapes binary strings for use as
162164 SQL string literals
165+ Improve reporting of PL/PgSQL error location (Tom)
163166
164167Types
165168-----