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
5dc0e67b
Commit
5dc0e67b
authored
Mar 17, 2001
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reformat the "major changes" to 72 or so columns.
parent
11fd9157
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
17 deletions
+19
-17
HISTORY
HISTORY
+19
-17
No files found.
HISTORY
View file @
5dc0e67b
...
@@ -11,32 +11,34 @@ PostgreSQL code for many years.
...
@@ -11,32 +11,34 @@ PostgreSQL code for many years.
Major changes in this release:
Major changes in this release:
Write-ahead Log (WAL) - To maintain database consistency in case
Write-ahead Log (WAL) - To maintain database consistency in
of an operating system crash, previous releases of PostgreSQL have
case of an operating system crash, previous releases of PostgreSQL
forced all data modifications to disk before each transaction commit.
have forced all data modifications to disk before each transaction
With WAL, only one log file must be flushed to disk, greatly improving
commit. With WAL, only one log file must be flushed to disk, greatly
performance. If you have been using -F in previous releases to disable
improving performance. If you have been using -F in previous releases
disk flushes, you may want to consider discontinuing its use.
to disable disk flushes, you may want to consider discontinuing its
use.
TOAST - Previous releases had a compiled-in row length limit,
TOAST - Previous releases had a compiled-in row length limit,
typically 8
k - 32k.
This limit made storage of long text fields
typically 8
- 32 kB.
This limit made storage of long text fields
difficult. With TOAST, long rows of any length can be stored with
good
difficult. With TOAST, long rows of any length can be stored with
performance.
good
performance.
Outer Joins - We now support outer joins. The UNION/NOT IN
Outer Joins - We now support outer joins. The UNION/NOT IN
workaround for outer joins is no longer required. We use the SQL92
workaround for outer joins is no longer required. We use the SQL92
outer join syntax.
outer join syntax.
Function Manager - The previous C function manager did not handle NULLs properly,
Function Manager - The previous C function manager did not
nor did it support 64-bit CPU's (Alpha). The new function manager does. You can continue
handle NULLs properly, nor did it support 64-bit CPU's (Alpha). The
using your old custom functions, but you may want to rewrite them in the future to use the
new function manager does. You can continue using your old custom
functions, but you may want to rewrite them in the future to use the
new function manager call interface.
new function manager call interface.
Complex Queries - A large number of complex queries that were
Complex Queries - A large number of complex queries that were
unsupported in previous releases now work. Many combinations of
views,
unsupported in previous releases now work. Many combinations of
aggregates, UNION, LIMIT, cursors, subqueries, and inherited tables
views, aggregates, UNION, LIMIT, cursors, subqueries, and inherited
now work properly. Inherited tables are now accessed by default.
tables now work properly. Inherited tables are now accessed by
Subqueries in FROM are now supported.
default.
Subqueries in FROM are now supported.
Migration to 7.1
Migration to 7.1
...
...
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