Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd23f6f8

Browse files
committed
Update release history for impending 7.3.3 release.
1 parent6fabec2 commitd23f6f8

File tree

1 file changed

+104
-1
lines changed

1 file changed

+104
-1
lines changed

‎doc/src/sgml/release.sgml

Lines changed: 104 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.188 2003/05/15 15:50:18 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.189 2003/05/22 18:31:45 tgl Exp $
33
-->
44

55
<appendix id="release">
@@ -51,6 +51,109 @@ Object owners can allow grantees to grant the privilege to others (grant option)
5151
</sect1>
5252

5353

54+
<sect1 id="release-7-3-3">
55+
<title>Release 7.3.3</title>
56+
57+
<note>
58+
<title>Release date</title>
59+
<simpara>2003-05-22</simpara>
60+
</note>
61+
62+
<para>
63+
This has a variety of fixes from 7.3.2.
64+
</para>
65+
66+
67+
<sect2>
68+
<title>Migration to version 7.3.3</title>
69+
70+
<para>
71+
A dump/restore is <emphasis>not</emphasis> required for those
72+
running 7.3.*.
73+
</para>
74+
</sect2>
75+
76+
<sect2>
77+
<title>Changes</title>
78+
79+
<para>
80+
<literallayout>
81+
Repair sometimes-incorrect computation of StartUpID after a crash
82+
Avoid slowness with lots of deferred triggers in one transaction (Stephan)
83+
Don't lock referenced row when UPDATE doesn't change foreign key's value (Jan)
84+
Use -fPIC not -fpic on Sparc (Tom Callaway)
85+
Repair lack of schema-awareness in contrib/reindexdb
86+
Fix contrib/intarray error for zero-element result array (Teodor)
87+
Ensure createuser script will exit on control-C (Oliver)
88+
Fix errors when the type of a dropped column has itself been dropped
89+
CHECKPOINT does not cause database panic on failure in noncritical steps
90+
Accept 60 in seconds fields of timestamp, time, interval input values
91+
Issue notice, not error, if TIMESTAMP, TIME, or INTERVAL precision too large
92+
Fix abstime-to-time cast function (fix is not applied unless you initdb)
93+
Fix pg_proc entry for timestamptz_izone (fix is not applied unless you initdb)
94+
Make EXTRACT(EPOCH FROM timestamp without time zone) treat input as local time
95+
'now'::timestamptz gave wrong answer if timezone changed earlier in transaction
96+
HAVE_INT64_TIMESTAMP code for time with timezone overwrote its input
97+
Accept GLOBAL TEMP/TEMPORARY as a synonym for TEMPORARY
98+
Avoid improper schema-permissions-check failure in foreign-key triggers
99+
Fix bugs in foreign-key triggers for SET DEFAULT action
100+
Fix incorrect time-qual check in row fetch for UPDATE and DELETE triggers
101+
Foreign-key clauses were parsed but ignored in ALTER TABLE ADD COLUMN
102+
Fix createlang script breakage for case where handler function already exists
103+
Fix misbehavior on zero-column tables in pg_dump, COPY, ANALYZE, other places
104+
Fix misbehavior of func_error() on type names containing '%'
105+
Fix misbehavior of replace() on strings containing '%'
106+
Regular-expression patterns containing certain multibyte characters failed
107+
Account correctly for NULLs in more cases in join size estimation
108+
Avoid conflict with system definition of isblank() function or macro
109+
Fix failure to convert large code point values in EUC_TW conversions (Tatsuo)
110+
Fix error recovery for SSL_read/SSL_write calls
111+
Don't do early constant-folding of type coercion expressions
112+
Validate page header fields immediately after reading in any page
113+
Repair incorrect check for ungrouped variables in unnamed joins
114+
Fix buffer overrun in to_ascii (Guido Notari)
115+
contrib/ltree fixes (Teodor)
116+
Fix core dump in deadlock detection on machines where char is unsigned
117+
Avoid running out of buffers in many-way indexscan (bug introduced in 7.3)
118+
Fix planner's selectivity estimation functions to handle domains properly
119+
Fix dbmirror memory-allocation bug (Steven Singer)
120+
Prevent infinite loop in ln(numeric) due to roundoff error.
121+
GROUP BY got confused if there were multiple equal GROUP BY items
122+
Fix bad plan when inherited UPDATE/DELETE references another inherited table
123+
Prevent clustering on incomplete (partial or non-NULL-storing) indexes
124+
Service shutdown request at proper time if it arrives while still starting up
125+
Fix left-links in temporary indexes (could make backwards scans miss entries)
126+
Fix incorrect handling of client_encoding setting in postgresql.conf (Tatsuo)
127+
Fix failure to respond to 'pg_ctl stop -m fast' after Async_NotifyHandler runs
128+
Fix SPI for case where rule contains multiple statements of the same type
129+
Fix problem with checking for wrong type of access permission in rule query
130+
Fix problem with EXCEPT in CREATE RULE
131+
Prevent problem with dropping temp tables having serial columns
132+
Fix replace_vars_with_subplan_refs failure in complex views
133+
Fix regexp slowness in multibyte encodings (Tatsuo)
134+
Allow qualified type names in CREATE CAST and DROP CAST
135+
Accept 'SETOF type[]', which formerly had to be written 'SETOF _type'
136+
Fix pg_dump core dump in some cases with procedural languages
137+
Force ISO datestyle in pg_dump output, for portability (Oliver)
138+
pg_dump failed to handle error return from lo_read (Oleg Drokin)
139+
pg_dumpall failed with groups having no members (Nick Eskelinen)
140+
pg_dumpall failed to recognize --globals-only switch
141+
pg_restore failed to restore blobs if -X disable-triggers is specified
142+
Repair intrafunction memory leak in plpgsql
143+
pltcl's elog command dumped core if given wrong parameters (Ian Harding)
144+
plpython used wrong value of atttypmod (Brad McLean)
145+
Fix improper quoting of boolean values in Python interface (D'Arcy)
146+
Added addDataType() method to PGConnection interface for JDBC
147+
Fixed various problems with updateable ResultSets for JDBC (Shawn Green)
148+
Fixed various problems with DatabaseMetaData for JDBC (Kris Jurka, Peter Royal)
149+
Fixed problem with parsing table ACLs in JDBC
150+
Better error message for character set conversion problems in JDBC
151+
</literallayout>
152+
</para>
153+
</sect2>
154+
</sect1>
155+
156+
54157
<sect1 id="release-7-3-2">
55158
<title>Release 7.3.2</title>
56159

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp