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
2ffba0d4
Commit
2ffba0d4
authored
28 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Changes to get ready for 6.0 final release.
parent
abd38d8b
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
HISTORY
+4
-2
4 additions, 2 deletions
HISTORY
doc/FAQ
+824
-1074
824 additions, 1074 deletions
doc/FAQ
doc/TODO
+11
-3
11 additions, 3 deletions
doc/TODO
with
839 additions
and
1079 deletions
HISTORY
+
4
−
2
View file @
2ffba0d4
PostgreSQL 6.0
beta
Thu Dec 26 16:47:43
EST 199
6
PostgreSQL 6.0
Wed Jan 29 00:19:54
EST 199
7
-------------------------------------------------------------
-------------------------------------------------------------
A dump/restore is required for those wishing to migrate data from
A dump/restore is required for those wishing to migrate data from
...
@@ -68,6 +68,7 @@ Allow restriction on who can do backend COPY(Bryan)
...
@@ -68,6 +68,7 @@ Allow restriction on who can do backend COPY(Bryan)
Can shrink tables, pg_time and pg_log(Vadim & Erich)
Can shrink tables, pg_time and pg_log(Vadim & Erich)
Change debug level 2 to print queries only, changed debug heading layout(Bruce)
Change debug level 2 to print queries only, changed debug heading layout(Bruce)
Change default decimal constant representation from float4 to float8(Bruce)
Change default decimal constant representation from float4 to float8(Bruce)
European date format now set when postmaster is started
Execute lowercase function names if not found with exact case
Execute lowercase function names if not found with exact case
Fixes for aggregate/GROUP processing, allow 'select sum(func(x),sum(x+y) from z'
Fixes for aggregate/GROUP processing, allow 'select sum(func(x),sum(x+y) from z'
Gist now included in the distrubution(Marc)
Gist now included in the distrubution(Marc)
...
@@ -79,7 +80,7 @@ Libpq++ improvements
...
@@ -79,7 +80,7 @@ Libpq++ improvements
New options to initdb(Bryan)
New options to initdb(Bryan)
Pg_dump allow dump of oid's(Bruce)
Pg_dump allow dump of oid's(Bruce)
Pg_dump create indexes after tables are loaded for speed(Bruce)
Pg_dump create indexes after tables are loaded for speed(Bruce)
Pg_dump
(Bruce)
Pg_dump
all dumps all databases, and the user table
Pginterface additions for NULL values(Bruce)
Pginterface additions for NULL values(Bruce)
Prevent postmaster from being run as root
Prevent postmaster from being run as root
Psql \h and \? is now readable(Bruce)
Psql \h and \? is now readable(Bruce)
...
@@ -94,6 +95,7 @@ Remove compile-time parameters to enable binary distributions(Bryan)
...
@@ -94,6 +95,7 @@ Remove compile-time parameters to enable binary distributions(Bryan)
Reverse meaning of HBA masks(Bryan)
Reverse meaning of HBA masks(Bryan)
Secure Authentication of local users(Bryan)
Secure Authentication of local users(Bryan)
Speed up vacuum(Vadim)
Speed up vacuum(Vadim)
Vacuum now had VERBOSE option(Bruce)
Source tree changes
Source tree changes
-------------------
-------------------
...
...
This diff is collapsed.
Click to expand it.
doc/FAQ
+
824
−
1074
View file @
2ffba0d4
This diff is collapsed.
Click to expand it.
doc/TODO
+
11
−
3
View file @
2ffba0d4
====================================================
====================================================
TODO list (FAQ) for PostgreSQL
TODO list (FAQ) for PostgreSQL
====================================================
====================================================
last updated:
Thu
Jan
2 11
:1
9
:4
1
EST 1997
last updated:
Wed
Jan
29 00
:1
6
:4
4
EST 1997
current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
...
@@ -41,6 +41,9 @@ SELECT on two tables where zero or one table in WHERE and target
...
@@ -41,6 +41,9 @@ SELECT on two tables where zero or one table in WHERE and target
fix system to use oid index using constant without cast to oid
fix system to use oid index using constant without cast to oid
COUNT on VIEW always returns zero (maybe because there is no oid for views?)
COUNT on VIEW always returns zero (maybe because there is no oid for views?)
CREATE VIEW requires super-user priviledge
CREATE VIEW requires super-user priviledge
SELECT a[1] FROM test fails, it needs test.a[1]
INSERT INTO ... SELECT DISTINCT ... generates error on DISTINCT
pg_database.datdba is oid, should be int4
ENHANCEMENTS
ENHANCEMENTS
------------
------------
...
@@ -48,9 +51,10 @@ Add full ANSI SQL capabilities
...
@@ -48,9 +51,10 @@ Add full ANSI SQL capabilities
add subselects, possibility using temporary SQL functions
add subselects, possibility using temporary SQL functions
Implement HAVING clause
Implement HAVING clause
Implement EXISTS qualifier
Implement EXISTS qualifier
column constraints (using rules),
esp. primary keys
column constraints (using rules),
PRIMARY KEY during table creation
add DEFAULT, RESTRAINT, and CHECK capabilities
add DEFAULT, RESTRAINT, and CHECK capabilities
report "Not implemented" if valid syntax is supplied
report "Not implemented" if valid syntax is supplied
add NOT NULL to CREATE statement
add OUTER joins, left and right
add OUTER joins, left and right
make VIEWs updateable where possible
make VIEWs updateable where possible
add UNIONS, INTERSECTS, SUBTRACTS
add UNIONS, INTERSECTS, SUBTRACTS
...
@@ -117,6 +121,8 @@ Add upper/lower functions
...
@@ -117,6 +121,8 @@ Add upper/lower functions
-Add table/column/function discription table indexed by oid
-Add table/column/function discription table indexed by oid
-make all identifiers case-insensitive(Bruce)
-make all identifiers case-insensitive(Bruce)
add pg_type attribute to identify types that need length (bpchar, varchar)
add pg_type attribute to identify types that need length (bpchar, varchar)
add UNIQUE capability to non-btree indexes
improve auto-type casting
PERFORMANCE
PERFORMANCE
-----------
-----------
...
@@ -211,6 +217,7 @@ Allow restriction on who can do backend COPY(Bryan)
...
@@ -211,6 +217,7 @@ Allow restriction on who can do backend COPY(Bryan)
Can shrink tables, pg_time and pg_log(Vadim & Erich)
Can shrink tables, pg_time and pg_log(Vadim & Erich)
Change debug level 2 to print queries only, changed debug heading layout(Bruce)
Change debug level 2 to print queries only, changed debug heading layout(Bruce)
Change default decimal constant representation from float4 to float8(Bruce)
Change default decimal constant representation from float4 to float8(Bruce)
European date format now set when postmaster is started
Execute lowercase function names if not found with exact case
Execute lowercase function names if not found with exact case
Fixes for aggregate/GROUP processing, allow 'select sum(func(x),sum(x+y) from z'
Fixes for aggregate/GROUP processing, allow 'select sum(func(x),sum(x+y) from z'
Gist now included in the distrubution(Marc)
Gist now included in the distrubution(Marc)
...
@@ -222,7 +229,7 @@ Libpq++ improvements
...
@@ -222,7 +229,7 @@ Libpq++ improvements
New options to initdb(Bryan)
New options to initdb(Bryan)
Pg_dump allow dump of oid's(Bruce)
Pg_dump allow dump of oid's(Bruce)
Pg_dump create indexes after tables are loaded for speed(Bruce)
Pg_dump create indexes after tables are loaded for speed(Bruce)
Pg_dump
(Bruce)
Pg_dump
all dumps all databases, and the user table
Pginterface additions for NULL values(Bruce)
Pginterface additions for NULL values(Bruce)
Prevent postmaster from being run as root
Prevent postmaster from being run as root
Psql \h and \? is now readable(Bruce)
Psql \h and \? is now readable(Bruce)
...
@@ -237,6 +244,7 @@ Remove compile-time parameters to enable binary distributions(Bryan)
...
@@ -237,6 +244,7 @@ Remove compile-time parameters to enable binary distributions(Bryan)
Reverse meaning of HBA masks(Bryan)
Reverse meaning of HBA masks(Bryan)
Secure Authentication of local users(Bryan)
Secure Authentication of local users(Bryan)
Speed up vacuum(Vadim)
Speed up vacuum(Vadim)
Vacuum now had VERBOSE option(Bruce)
Source tree changes
Source tree changes
-------------------
-------------------
...
...
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