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

Commit658371f

Browse files
committed
Update for 7.2.1.
1 parentb6cb03c commit658371f

File tree

4 files changed

+87
-39
lines changed

4 files changed

+87
-39
lines changed

‎HISTORY

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
Release Notes
22

3+
Release 7.2.1
4+
5+
Release date: 2002-03-21
6+
7+
This has a variety of fixes from 7.2.
8+
9+
----------------------------------------------------------------------
10+
11+
Migration to version 7.2.1
12+
13+
A dump/restore is *not* required for those running 7.2.
14+
15+
----------------------------------------------------------------------
16+
17+
Changes
18+
19+
Properly set sequence values after backend crash (Tom)
20+
Fix pgaccess kanji-coversion key binding (Tatsuo)
21+
Optimizer improvements (Tom)
22+
cash I/O improvements (Tom)
23+
contrib/btree_gist improvements (Teodor Sigaev)
24+
New Russian FAQ
25+
Compile fix for missing AuthBlockSig (Heiko)
26+
Additional time zones and time zone fixes (Thomas)
27+
Allow psql \connect to handle mixed case database and user names (Tom)
28+
Return proper OID on command completion even with ON INSERT rules (Tom)
29+
Allow COPY FROM to use 8-bit DELIMITERS (Tatsuo)
30+
Fix bug in extract/date_part for milliseconds/microseconds (Tatsuo)
31+
Improve handling of multiple UNIONs with different lengths (Tom)
32+
contrib/tsearch dictionary improvements (Thomas T. Thai, Teodor Sigaev)
33+
Fix for array subscripts handling (Tom)
34+
35+
36+
----------------------------------------------------------------------
37+
338
Release 7.2
439

540
Release date: 2002-02-04
@@ -74,8 +109,8 @@ Migration to version 7.2
74109
* The date/time value 'current' is no longer available. You will need to
75110
rewrite your applications.
76111

77-
* The timestamp(), time(), and inverval() functions are no longer
78-
available. Instead of timestamp(), use timestamp'string', or CAST.
112+
* The timestamp() function is no longer available. Use timestamp
113+
'string' instead, or CAST.
79114

80115
The SELECT ... LIMIT #,# syntax will be removed in the next release. You
81116
should change your queries to use separate LIMIT and OFFSET clauses, e.g.

‎doc/src/sgml/release.sgml

Lines changed: 48 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,57 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.120 2002/03/11 16:41:44 momjian Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.121 2002/03/18 23:03:13 momjian Exp $
33
-->
44

55
<appendix id="release">
66
<title>Release Notes</title>
77

8-
<sect1 id="release-devel">
9-
<title>&version; Development Branch</title>
8+
<sect1 id="release-7-2-1">
9+
<title>Release 7.2.1</title>
1010

11-
<para>
12-
Below is a subset of the changes that have gone into the
13-
development branch of PostgreSQL since version 7.2. For a complete
14-
list of changes, consult the CVS logs.
15-
</para>
11+
<note>
12+
<title>Release date</title>
13+
<simpara>2002-03-21</simpara>
14+
</note>
1615

17-
<!--
18-
Developers: When you add a feature, mention it here. This avoids
19-
lossiness when digging out the information from the CVS logs, and
20-
furthermore it advertises your feature to external parties at the
21-
earliest possible moment.
22-
23-
CDATA means the content is "SGML-free", so you can write without
24-
worries about funny characters.
25-
-->
26-
<literallayout><![CDATA[
27-
Access privileges on functions
28-
Access privileges on procedural languages
29-
CREATE DATABASE has OWNER option so superuser can create DB for someone else
30-
Kerberos 5 support now works with Heimdal
31-
Database and user-specific session defaults of run-time configurations variables
32-
(ALTER DATABASE ... SET and ALTER USER ... SET)
33-
]]></literallayout>
16+
<para>
17+
This has a variety of fixes from 7.2.
18+
</para>
19+
20+
21+
<sect2>
22+
<title>Migration to version 7.2.1</title>
23+
24+
<para>
25+
A dump/restore is <emphasis>not</emphasis> required for those running
26+
7.2.
27+
</para>
28+
</sect2>
29+
30+
<sect2>
31+
<title>Changes</title>
32+
33+
<para>
34+
<programlisting>
35+
Properly set sequence values after backend crash (Tom)
36+
Fix pgaccess kanji-coversion key binding (Tatsuo)
37+
Optimizer improvements (Tom)
38+
cash I/O improvements (Tom)
39+
contrib/btree_gist improvements (Teodor Sigaev)
40+
New Russian FAQ
41+
Compile fix for missing AuthBlockSig (Heiko)
42+
Additional time zones and time zone fixes (Thomas)
43+
Allow psql \connect to handle mixed case database and user names (Tom)
44+
Return proper OID on command completion even with ON INSERT rules (Tom)
45+
Allow COPY FROM to use 8-bit DELIMITERS (Tatsuo)
46+
Fix bug in extract/date_part for milliseconds/microseconds (Tatsuo)
47+
Improve handling of multiple UNIONs with different lengths (Tom)
48+
contrib/tsearch dictionary improvements (Thomas T. Thai, Teodor Sigaev)
49+
Fix for array subscripts handling (Tom)
50+
</programlisting>
51+
</para>
52+
</sect2>
53+
</sect1>
3454

35-
</sect1>
3655

3756
<sect1 id="release-7-2">
3857
<title>Release 7.2</title>
@@ -183,10 +202,9 @@ Database and user-specific session defaults of run-time configurations variables
183202

184203
<listitem>
185204
<para>
186-
The <literal>timestamp()</literal>, <literal>time()</literal>,
187-
and <literal>interval()</literal> functions are no longer
188-
available. Instead of <literal>timestamp()</literal>, use
189-
<literal>timestamp 'string'</literal> or <literal>CAST</literal>.
205+
The <literal>timestamp()</literal> function is no longer
206+
available. Use <literal>timestamp 'string'</literal> instead,
207+
or <literal>CAST</literal>.
190208
</para>
191209
</listitem>
192210

‎src/tools/RELEASE_CHANGES

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
bump interface version numbers
55
update src/interfaces/libpq/libpq.rc
66
update src/interfaces/libpq++/libpq++dll.rc
7-
update src/include/config.h.win32
7+
update src/include/pg_config.h.win32
88

99
* Release notes
1010
update doc/src/sgml/release.sgml
@@ -20,8 +20,6 @@
2020
platform-specific FAQ's, if needed
2121

2222
* Miscellaneous files
23-
README
24-
register.txt
2523
doc/bug.template
2624

2725
* Update pg_upgrade to handle new version, or disable

‎src/tools/pgcvslog

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,11 @@
88
#
99
# pre and post-branch logs:
1010
# find . -name CVS -type d -exec touch '{}/Entries.Static' \;
11+
#
1112
# cvs log -d'2000-05-08 00:00:00 GMT<2000-05-29 00:00:00 GMT'
1213
# cvs log -d'>2000-05-29 00:00:00 GMT' -rREL7_1_STABLE
1314
# cvs log -d'>1999-06-14 00:00:00 GMT' . > log
1415
#
15-
# pre and post-branch logs:
16-
# find . -name CVS -type d -exec touch '{}/Entries.Static' \;
17-
# cvs log -d'2000-05-08 00:00:00 GMT<2000-05-29 00:00:00 GMT'
18-
# cvs log -d'>2000-05-29 00:00:00 GMT' -r
1916
# find . -name CVS -type d -exec rm '{}/Entries.Static' \;
2017
#
2118

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp