Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
708c1114
Commit
708c1114
authored
24 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Updates from Tom Lane.
parent
cf6dbd8e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
HISTORY
+12
-8
12 additions, 8 deletions
HISTORY
doc/src/sgml/release.sgml
+13
-9
13 additions, 9 deletions
doc/src/sgml/release.sgml
with
25 additions
and
17 deletions
HISTORY
+
12
−
8
View file @
708c1114
...
...
@@ -15,9 +15,10 @@ With WAL, only one log file must be flushed to disk, greatly improving
performance. If you have been using -F in previous releases to disable
disk flushes, you may want to consider discontinuing its use.
TOAST - Previous releases had an 8k (or 32k) row length limit.
This limit made storage of long text fields difficult. With TOAST, long
rows of any length can be stored with good performance.
TOAST - Previous releases had a compiled-in row length limit,
typically 8k - 32k. This limit made storage of long text fields
difficult. With TOAST, long rows of any length can be stored with good
performance.
Outer Joins - We now support outer joins. The UNION/NOT IN
workaround for outer joins is no longer required. We use the SQL92
...
...
@@ -73,13 +74,13 @@ Allow UNION/INTERSECT/EXCEPT to be used with ALL, subqueries, views,
Fix parser failures during aborted transactions (Tom)
Allow temporary relations to properly clean up indexes (Bruce)
Fix VACUUM problem with moving rows in same page (Tom)
Modify pg_dump
s
o
it dumps only
user-defined items
, not system-defined
(Philip)
Modify pg_dump
t
o
better handle
user-defined items
in template1
(Philip)
Allow LIMIT in VIEW (Tom)
Require cursor FETCH to honor LIMIT (Tom)
Allow PRIMARY/FOREIGN Key definitions on inherited columns (Stephan)
Allow ORDER BY, LIMIT in sub-selects (Tom)
Allow UNION in CREATE RULE (Tom)
Make DROP TABLE rollback-able (Tom)
Make
ALTER/
DROP TABLE rollback-able (
Vadim,
Tom)
Store initdb collation in pg_control so collation cannot be changed (Tom)
Fix INSERT...SELECT with rules (Tom)
Fix FOR UPDATE inside views and subselects (Tom)
...
...
@@ -151,7 +152,6 @@ Allow postmaster to listen on a specific IP address (David J. MacKenzie)
Allow socket path name to be specified in hostname by using leading slash
(David J. MacKenzie)
Allow CREATE DATABASE to specify template database (Tom)
New template0 database that contains no user additions(Tom)
Types
-----
...
...
@@ -161,6 +161,7 @@ Allow BIGINT as synonym for INT8 (Peter E)
New int2 and int8 comparison operators (Tom)
New BIT and BIT VARYING types (Adriaan Joubert, Tom)
CHAR() no longer faster than VARCHAR() because of TOAST (Tom)
New GIST seg/cube examples (Gene Selkov)
Performance
-----------
...
...
@@ -179,7 +180,7 @@ SGI portability fixes (David Kaelbling)
New configure --enable-syslog option (Marc)
New BSDI README (Bruce)
configure script moved to top level, not /src (Peter E)
Makefile/configuration/compilation
cleanups
(Peter E)
Makefile/configuration/compilation
overhaul
(Peter E)
New configure --with-python option (Peter E)
Solaris cleanups (Peter E)
Overhaul /contrib Makefiles (Karel)
...
...
@@ -196,10 +197,13 @@ New BeOS port (David Reid, Cyril Velter)
Add proofreader's changes to docs (Addison-Wesley, Bruce)
New Alpha spinlock code (Adriaan Joubert, Compaq)
Unixware port overhaul (Peter E)
New Darwin/Mac OSX port (Bruce Hartzler)
New Darwin/Mac OSX port (
Peter Bierman,
Bruce Hartzler)
New FreeBSD Alpha port (Alfred)
Overhaul shared memory segments (Tom)
Add IBM S/390 support (Neale Ferguson)
Moved macmanuf to /contrib (Larry Rosenman)
Syslog improvements (Larry Rosenman)
New template0 database that contains no user additions(Tom)
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/release.sgml
+
13
−
9
View file @
708c1114
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.6
4
2000/12/1
6 20:12
:4
2
momjian Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.6
5
2000/12/1
8 04:20
:4
4
momjian Exp $
-->
<chapter id="release">
...
...
@@ -51,9 +51,10 @@ disk flushes, you may want to consider discontinuing its use.
</term>
<listitem>
<para>
Previous releases had an 8k (or 32k) row length limit.
This limit made storage of long text fields difficult. With TOAST, long
rows of any length can be stored with good performance.
TOAST - Previous releases had a compiled-in row length limit,
typically 8k - 32k. This limit made storage of long text fields
difficult. With TOAST, long rows of any length can be stored with good
performance.
</para>
</listitem>
</varlistentry>
...
...
@@ -149,13 +150,13 @@ Allow UNION/INTERSECT/EXCEPT to be used with ALL, subqueries, views,
Fix parser failures during aborted transactions (Tom)
Allow temporary relations to properly clean up indexes (Bruce)
Fix VACUUM problem with moving rows in same page (Tom)
Modify pg_dump
s
o
it dumps only
user-defined items
, not system-defined
(Philip)
Modify pg_dump
t
o
better handle
user-defined items
in template1
(Philip)
Allow LIMIT in VIEW (Tom)
Require cursor FETCH to honor LIMIT (Tom)
Allow PRIMARY/FOREIGN Key definitions on inherited columns (Stephan)
Allow ORDER BY, LIMIT in sub-selects (Tom)
Allow UNION in CREATE RULE (Tom)
Make DROP TABLE rollback-able (Tom)
Make
ALTER/
DROP TABLE rollback-able (
Vadim,
Tom)
Store initdb collation in pg_control so collation cannot be changed (Tom)
Fix INSERT...SELECT with rules (Tom)
Fix FOR UPDATE inside views and subselects (Tom)
...
...
@@ -227,7 +228,6 @@ Allow postmaster to listen on a specific IP address (David J. MacKenzie)
Allow socket path name to be specified in hostname by using leading slash
(David J. MacKenzie)
Allow CREATE DATABASE to specify template database (Tom)
New template0 database that contains no user additions(Tom)
Types
-----
...
...
@@ -237,6 +237,7 @@ Allow BIGINT as synonym for INT8 (Peter E)
New int2 and int8 comparison operators (Tom)
New BIT and BIT VARYING types (Adriaan Joubert, Tom)
CHAR() no longer faster than VARCHAR() because of TOAST (Tom)
New GIST seg/cube examples (Gene Selkov)
Performance
-----------
...
...
@@ -255,7 +256,7 @@ SGI portability fixes (David Kaelbling)
New configure --enable-syslog option (Marc)
New BSDI README (Bruce)
configure script moved to top level, not /src (Peter E)
Makefile/configuration/compilation
cleanups
(Peter E)
Makefile/configuration/compilation
overhaul
(Peter E)
New configure --with-python option (Peter E)
Solaris cleanups (Peter E)
Overhaul /contrib Makefiles (Karel)
...
...
@@ -272,10 +273,13 @@ New BeOS port (David Reid, Cyril Velter)
Add proofreader's changes to docs (Addison-Wesley, Bruce)
New Alpha spinlock code (Adriaan Joubert, Compaq)
Unixware port overhaul (Peter E)
New Darwin/Mac OSX port (Bruce Hartzler)
New Darwin/Mac OSX port (
Peter Bierman,
Bruce Hartzler)
New FreeBSD Alpha port (Alfred)
Overhaul shared memory segments (Tom)
Add IBM S/390 support (Neale Ferguson)
Moved macmanuf to /contrib (Larry Rosenman)
Syslog improvements (Larry Rosenman)
New template0 database that contains no user additions(Tom)
</programlisting>
</para>
</sect2>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment