Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
658371fe
Commit
658371fe
authored
Mar 18, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update for 7.2.1.
parent
b6cb03c7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
87 additions
and
39 deletions
+87
-39
HISTORY
HISTORY
+37
-2
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+48
-30
src/tools/RELEASE_CHANGES
src/tools/RELEASE_CHANGES
+1
-3
src/tools/pgcvslog
src/tools/pgcvslog
+1
-4
No files found.
HISTORY
View file @
658371fe
Release Notes
Release Notes
Release 7.2.1
Release date: 2002-03-21
This has a variety of fixes from 7.2.
----------------------------------------------------------------------
Migration to version 7.2.1
A dump/restore is *not* required for those running 7.2.
----------------------------------------------------------------------
Changes
Properly set sequence values after backend crash (Tom)
Fix pgaccess kanji-coversion key binding (Tatsuo)
Optimizer improvements (Tom)
cash I/O improvements (Tom)
contrib/btree_gist improvements (Teodor Sigaev)
New Russian FAQ
Compile fix for missing AuthBlockSig (Heiko)
Additional time zones and time zone fixes (Thomas)
Allow psql \connect to handle mixed case database and user names (Tom)
Return proper OID on command completion even with ON INSERT rules (Tom)
Allow COPY FROM to use 8-bit DELIMITERS (Tatsuo)
Fix bug in extract/date_part for milliseconds/microseconds (Tatsuo)
Improve handling of multiple UNIONs with different lengths (Tom)
contrib/tsearch dictionary improvements (Thomas T. Thai, Teodor Sigaev)
Fix for array subscripts handling (Tom)
----------------------------------------------------------------------
Release 7.2
Release 7.2
Release date: 2002-02-04
Release date: 2002-02-04
...
@@ -74,8 +109,8 @@ Migration to version 7.2
...
@@ -74,8 +109,8 @@ Migration to version 7.2
* The date/time value 'current' is no longer available. You will need to
* The date/time value 'current' is no longer available. You will need to
rewrite your applications.
rewrite your applications.
* The timestamp()
, time(), and inverval() functions are no longer
* The timestamp()
function is no longer available. Use timestamp
available. Instead of timestamp(), use timestamp 'string'
, or CAST.
'string' instead
, or CAST.
The SELECT ... LIMIT #,# syntax will be removed in the next release. You
The SELECT ... LIMIT #,# syntax will be removed in the next release. You
should change your queries to use separate LIMIT and OFFSET clauses, e.g.
should change your queries to use separate LIMIT and OFFSET clauses, e.g.
...
...
doc/src/sgml/release.sgml
View file @
658371fe
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.12
0 2002/03/11 16:41:44
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.12
1 2002/03/18 23:03:13
momjian Exp $
-->
-->
<appendix id="release">
<appendix id="release">
<title>Release Notes</title>
<title>Release Notes</title>
<sect1 id="release-devel">
<sect1 id="release-7-2-1">
<title>&version; Development Branch</title>
<title>Release 7.2.1</title>
<note>
<title>Release date</title>
<simpara>2002-03-21</simpara>
</note>
<para>
<para>
Below is a subset of the changes that have gone into the
This has a variety of fixes from 7.2.
development branch of PostgreSQL since version 7.2. For a complete
list of changes, consult the CVS logs.
</para>
</para>
<!--
Developers: When you add a feature, mention it here. This avoids
lossiness when digging out the information from the CVS logs, and
furthermore it advertises your feature to external parties at the
earliest possible moment.
CDATA means the content is "SGML-free", so you can write without
<sect2>
worries about funny characters.
<title>Migration to version 7.2.1</title>
-->
<literallayout><![CDATA[
<para>
Access privileges on functions
A dump/restore is <emphasis>not</emphasis> required for those running
Access privileges on procedural languages
7.2.
CREATE DATABASE has OWNER option so superuser can create DB for someone else
</para>
Kerberos 5 support now works with Heimdal
</sect2>
Database and user-specific session defaults of run-time configurations variables
(ALTER DATABASE ... SET and ALTER USER ... SET)
<sect2>
]]></literallayout
>
<title>Changes</title
>
<para>
<programlisting>
Properly set sequence values after backend crash (Tom)
Fix pgaccess kanji-coversion key binding (Tatsuo)
Optimizer improvements (Tom)
cash I/O improvements (Tom)
contrib/btree_gist improvements (Teodor Sigaev)
New Russian FAQ
Compile fix for missing AuthBlockSig (Heiko)
Additional time zones and time zone fixes (Thomas)
Allow psql \connect to handle mixed case database and user names (Tom)
Return proper OID on command completion even with ON INSERT rules (Tom)
Allow COPY FROM to use 8-bit DELIMITERS (Tatsuo)
Fix bug in extract/date_part for milliseconds/microseconds (Tatsuo)
Improve handling of multiple UNIONs with different lengths (Tom)
contrib/tsearch dictionary improvements (Thomas T. Thai, Teodor Sigaev)
Fix for array subscripts handling (Tom)
</programlisting>
</para>
</sect2>
</sect1>
</sect1>
<sect1 id="release-7-2">
<sect1 id="release-7-2">
<title>Release 7.2</title>
<title>Release 7.2</title>
...
@@ -183,10 +202,9 @@ Database and user-specific session defaults of run-time configurations variables
...
@@ -183,10 +202,9 @@ Database and user-specific session defaults of run-time configurations variables
<listitem>
<listitem>
<para>
<para>
The <literal>timestamp()</literal>, <literal>time()</literal>,
The <literal>timestamp()</literal> function is no longer
and <literal>interval()</literal> functions are no longer
available. Use <literal>timestamp 'string'</literal> instead,
available. Instead of <literal>timestamp()</literal>, use
or <literal>CAST</literal>.
<literal>timestamp 'string'</literal> or <literal>CAST</literal>.
</para>
</para>
</listitem>
</listitem>
...
...
src/tools/RELEASE_CHANGES
View file @
658371fe
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
bump interface version numbers
bump interface version numbers
update src/interfaces/libpq/libpq.rc
update src/interfaces/libpq/libpq.rc
update src/interfaces/libpq++/libpq++dll.rc
update src/interfaces/libpq++/libpq++dll.rc
update src/include/config.h.win32
update src/include/
pg_
config.h.win32
* Release notes
* Release notes
update doc/src/sgml/release.sgml
update doc/src/sgml/release.sgml
...
@@ -20,8 +20,6 @@
...
@@ -20,8 +20,6 @@
platform-specific FAQ's, if needed
platform-specific FAQ's, if needed
* Miscellaneous files
* Miscellaneous files
README
register.txt
doc/bug.template
doc/bug.template
* Update pg_upgrade to handle new version, or disable
* Update pg_upgrade to handle new version, or disable
src/tools/pgcvslog
View file @
658371fe
...
@@ -8,14 +8,11 @@
...
@@ -8,14 +8,11 @@
#
#
# pre and post-branch logs:
# pre and post-branch logs:
# find . -name CVS -type d -exec touch '{}/Entries.Static' \;
# find . -name CVS -type d -exec touch '{}/Entries.Static' \;
#
# cvs log -d'2000-05-08 00:00:00 GMT<2000-05-29 00:00:00 GMT'
# cvs log -d'2000-05-08 00:00:00 GMT<2000-05-29 00:00:00 GMT'
# cvs log -d'>2000-05-29 00:00:00 GMT' -rREL7_1_STABLE
# cvs log -d'>2000-05-29 00:00:00 GMT' -rREL7_1_STABLE
# cvs log -d'>1999-06-14 00:00:00 GMT' . > log
# cvs log -d'>1999-06-14 00:00:00 GMT' . > log
#
#
# pre and post-branch logs:
# find . -name CVS -type d -exec touch '{}/Entries.Static' \;
# cvs log -d'2000-05-08 00:00:00 GMT<2000-05-29 00:00:00 GMT'
# cvs log -d'>2000-05-29 00:00:00 GMT' -r
# find . -name CVS -type d -exec rm '{}/Entries.Static' \;
# find . -name CVS -type d -exec rm '{}/Entries.Static' \;
#
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment