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
7982fb0a
Commit
7982fb0a
authored
Sep 04, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update based on TODO file contents.
parent
7ae3e126
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
HISTORY
HISTORY
+13
-4
No files found.
HISTORY
View file @
7982fb0a
...
@@ -12,7 +12,9 @@ Overview
...
@@ -12,7 +12,9 @@ Overview
Schemas allow users to create objects in their own namespace
Schemas allow users to create objects in their own namespace
so two people can have the same table with the same name.
so two people can have the same table with the same name.
There is also a public schema for shared tables.
There is also a public schema for shared tables. Table/index
creation can be restricted by removing permissions on the
public schema.
DROP COLUMN
DROP COLUMN
...
@@ -175,6 +177,7 @@ Allow views to have default values using ALTER COLUMN ... SET DEFAULT (Neil)
...
@@ -175,6 +177,7 @@ Allow views to have default values using ALTER COLUMN ... SET DEFAULT (Neil)
Fail on INSERTs with column lists that don't supply all column values,
Fail on INSERTs with column lists that don't supply all column values,
e.g. INSERT INTO tab (col1, col2) VALUES ('val1'); (Rod)
e.g. INSERT INTO tab (col1, col2) VALUES ('val1'); (Rod)
Fix for join aliases (Tom)
Fix for join aliases (Tom)
Fix for FULL OUTER JOINs (Tom)
Improve reporting of invalid identifier and location (Tom, Gavin)
Improve reporting of invalid identifier and location (Tom, Gavin)
Fix OPEN cursor(args) (Tom)
Fix OPEN cursor(args) (Tom)
Allow 'ctid' to be used in a view and currtid(viewname) (Hiroshi)
Allow 'ctid' to be used in a view and currtid(viewname) (Hiroshi)
...
@@ -214,6 +217,8 @@ Add CREATE/DROP OPERATOR CLASS (Bill Studenmund, Tom)
...
@@ -214,6 +217,8 @@ Add CREATE/DROP OPERATOR CLASS (Bill Studenmund, Tom)
Add ALTER TABLE DROP COLUMN (Christopher)
Add ALTER TABLE DROP COLUMN (Christopher)
Prevent inherited columns from being removed or renamed (Alvaro Herrera)
Prevent inherited columns from being removed or renamed (Alvaro Herrera)
Add CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE (Gavin, Neil, Tom)
Add CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE (Gavin, Neil, Tom)
Fix foreign key constraints to not error on intermediate db states (Stephan)
Propagate column or table renaming to foreign key constraints
Utility Commands
Utility Commands
================
================
...
@@ -289,6 +294,8 @@ Add current_database() (Rod)
...
@@ -289,6 +294,8 @@ Add current_database() (Rod)
Fix cash_words() to not overflow buffer (Tom)
Fix cash_words() to not overflow buffer (Tom)
Add functions replace(), split(), to_hex() (Joe)
Add functions replace(), split(), to_hex() (Joe)
Fix LIKE for bytea as a right-hand argument (Joe)
Fix LIKE for bytea as a right-hand argument (Joe)
Prevent crashes caused by SELECT cash_out(2)
Triggers are now fired in alphabetical order
Internationalization
Internationalization
====================
====================
...
@@ -338,12 +345,14 @@ Add libpq connection timeout parameter (Denis A Ustimenko)
...
@@ -338,12 +345,14 @@ Add libpq connection timeout parameter (Denis A Ustimenko)
JDBC
JDBC
====
====
jdbc compiles with jdk 1.4 (Dave)
Allow jdbc to compile with jdk 1.4 (Dave)
Add jdbc3 support (Barry)
Allows jdbc to set loglevel by adding ?loglevel=X to the connection URL (Barry)
Allows jdbc to set loglevel by adding ?loglevel=X to the connection URL (Barry)
Add jdbc Driver.info() message that prints out the version number (Barry)
Add jdbc Driver.info() message that prints out the version number (Barry)
Added jdbc updateable result sets
Add jdbc updateable result sets
Add jdbc support for callable statements
Add jdbc query cancel capability
Add refresh row to jdbc (Dave)
Add refresh row to jdbc (Dave)
Add jdbc3 support (Barry)
Fix jdbc MD5 encryption handling for multibyte servers (Jun Kawai)
Fix jdbc MD5 encryption handling for multibyte servers (Jun Kawai)
Add JDBC support for prepared statements (Barry)
Add JDBC support for prepared statements (Barry)
...
...
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