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
30b2d287
Commit
30b2d287
authored
Oct 24, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
HISTORY file update.
parent
ba63dcd6
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
475 additions
and
325 deletions
+475
-325
HISTORY
HISTORY
+41
-8
doc/FAQ
doc/FAQ
+114
-158
doc/FAQ_DEV
doc/FAQ_DEV
+261
-130
doc/TODO
doc/TODO
+59
-29
No files found.
HISTORY
View file @
30b2d287
PostgreSQL 6.4
Tue Sep 1 21:18:17
EDT 1998
PostgreSQL 6.4
Sat Oct 24 00:41:35
EDT 1998
=========================================================
=========================================================
A dump/restore is required for those wishing to migrate data from
A dump/restore is required for those wishing to migrate data from
previous releases of PostgreSQL.
previous releases of PostgreSQL. You may also use the new pg_upgrade
utility to avoid a dump/reload.
Bug Fixes
Bug Fixes
---------
---------
...
@@ -21,12 +22,13 @@ Fix a bug in the oracle compatibility functions btrim() ltrim() and rtrim()
...
@@ -21,12 +22,13 @@ Fix a bug in the oracle compatibility functions btrim() ltrim() and rtrim()
Fix for usernames longer than eight characters(Tom)
Fix for usernames longer than eight characters(Tom)
Fix for shared invalidation cache overflow(Massimo)
Fix for shared invalidation cache overflow(Massimo)
Prevent file descriptor leaks in failed COPY's(Bruce)
Prevent file descriptor leaks in failed COPY's(Bruce)
Fix problem with username/passwords over 8 characters(Tom)
Enhancements
Enhancements
------------
------------
Upgrade
ECPG to 2.0,
see src/interfaces/ecpc/ChangeLog(Michael)
Upgrade
ecpg and ecpglib,
see src/interfaces/ecpc/ChangeLog(Michael)
Show the index used in an explain(Zeugswetter)
Show the index used in an explain(Zeugswetter)
Multi-byte awareness of many data
data types and functions
(Tatsuo)
Multi-byte awareness of many data
types and functions, via configure
(Tatsuo)
New configure --with-mb option(Tatsuo)
New configure --with-mb option(Tatsuo)
New initdb --pgencoding option(Tatsuo)
New initdb --pgencoding option(Tatsuo)
New createdb -E multibyte option(Tatsuo)
New createdb -E multibyte option(Tatsuo)
...
@@ -64,6 +66,7 @@ Pg_hba.conf now has a sameuser option in the database field
...
@@ -64,6 +66,7 @@ Pg_hba.conf now has a sameuser option in the database field
Make lo_unlink take oid param, not int4
Make lo_unlink take oid param, not int4
New DISABLE_COMPLEX_MACRO for compilers that can't handle our macros(Bruce)
New DISABLE_COMPLEX_MACRO for compilers that can't handle our macros(Bruce)
Libpgtcl now gets async notifies from libpq(Tom)
Libpgtcl now gets async notifies from libpq(Tom)
libpgtcl cleanups(Tom)
New locale patch, see docs/README/locale(Oleg)
New locale patch, see docs/README/locale(Oleg)
Fix for pg_dump so CONSTRAINT and CHECK syntax is correct(ccb)
Fix for pg_dump so CONSTRAINT and CHECK syntax is correct(ccb)
New contrib/lo code for large object orphan removal(Peter)
New contrib/lo code for large object orphan removal(Peter)
...
@@ -74,8 +77,9 @@ Libpq can now be compiled on win32(Magnus)
...
@@ -74,8 +77,9 @@ Libpq can now be compiled on win32(Magnus)
Add PQsetdbLogin() in libpq
Add PQsetdbLogin() in libpq
Two styles we agreed upon for database descriptors(Thomas)
Two styles we agreed upon for database descriptors(Thomas)
New 8-byte integer type, checked by configure for OS support(Thomas)
New 8-byte integer type, checked by configure for OS support(Thomas)
Better support for quited table/column names(Thomas)
Surround table and column names with double-quotes(Thomas) in generated
Surround table and column names with double-quotes(Thomas) in generated
sql code to preserve case (SQL92 syntax)(Thomas)
sql code to preserve case (SQL92 syntax)(Thomas)
New libpqrequestCancel(Tom)
New libpqrequestCancel(Tom)
PQreset() now works with passwords(Tom)
PQreset() now works with passwords(Tom)
Handle case of GROUP BY target list column number out of range(David)
Handle case of GROUP BY target list column number out of range(David)
...
@@ -118,9 +122,13 @@ New rewrite system fixes many problems with rules and views(Jan)
...
@@ -118,9 +122,13 @@ New rewrite system fixes many problems with rules and views(Jan)
* Rules and views inherit the permissions on the creator
* Rules and views inherit the permissions on the creator
* No rules at the column level
* No rules at the column level
* No UPDATE NEW/OLD rules
* No UPDATE NEW/OLD rules
* New pg_
rule and pg_view
system views
* New pg_
tables, pg_indexes, pg_rules and pg_views
system views
* Only a single action on SELECT rules
* Only a single action on SELECT rules
* Total rewrite overhaul, perhaps for 6.5
* Total rewrite overhaul, perhaps for 6.5
* handle subselects
* handle aggregates on views
* handle insert into select from view works
*
System indexes are now multi-key(Bruce)
System indexes are now multi-key(Bruce)
Oidint2, oidint4, and oidname types are removed(Bruce)
Oidint2, oidint4, and oidname types are removed(Bruce)
...
@@ -133,9 +141,27 @@ New setval() command to set sequence value(Massimo)
...
@@ -133,9 +141,27 @@ New setval() command to set sequence value(Massimo)
Auto-remove unix socket file on startup if no postmaster running(Massimo)
Auto-remove unix socket file on startup if no postmaster running(Massimo)
Conditional trace package(Massimo)
Conditional trace package(Massimo)
New UNLISTEN command(Massimo)
New UNLISTEN command(Massimo)
Psql
now compiles
under win32 using win32.mak(Magnus)
Psql
and libpq now compile
under win32 using win32.mak(Magnus)
Lo_read no longer stores trailing NULL(Bruce)
Lo_read no longer stores trailing NULL(Bruce)
Identifiers are now truncated to 31 characters internally(Bruce)
Identifiers are now truncated to 31 characters internally(Bruce)
Createuser options now availble on the command line
PL/pgSQL backend programming language(Jan)
Code for 64-bit integer supported added, configure tested, int8 type(Thomas)
Prevent file descriptor leaf from failed COPY(Bruce)
New pg_upgrade command(Bruce)
Updated /contrib directories(Massimo)
New CREATE TABLE DEFAULT VALUES statement available(Thomas)
New INSERT INTO TABLE DEFAULT VALUES statement available(Thomas)
New DECLARE and FETCH feature(Thomas)
libpq's internal structures now not exported(Tom)
Allow up to 8 key indexes(Bruce)
Remove ARCHIVE keyword, that is no longer used(Thomas)
pg_dump -n flag to supress quotes around indentifiers
disable system columns for views(Jan)
net INET and CIDR types for network addresses(TomH, Paul)
no more double quotes in psql output
pg_dump now dumps views(Terry)
new SET QUERY_LIMIT(Tatsuo,Jan)
Source Tree Changes
Source Tree Changes
-------------------
-------------------
...
@@ -155,11 +181,18 @@ Update backend flowchart in tools/backend(Bruce)
...
@@ -155,11 +181,18 @@ Update backend flowchart in tools/backend(Bruce)
Change atttypmod from int16 to int32(Bruce, Tom)
Change atttypmod from int16 to int32(Bruce, Tom)
Getrusage() fix for platforms that do not have it(Tom)
Getrusage() fix for platforms that do not have it(Tom)
Add PGUSER to libpq man page
Add PGUSER to libpq man page
N
s32k platform fixes(Phil Nelson
)
N
S32K platform fixes(Phil Nelson, John Buller
)
Sco 7/UnixWare 2.x fixes(Billy,others)
Sco 7/UnixWare 2.x fixes(Billy,others)
Sparc/Solaris 2.5 fixes(Ryan)
Sparc/Solaris 2.5 fixes(Ryan)
Pgbuiltin.3 is obsolete, move to doc files(Thomas)
Pgbuiltin.3 is obsolete, move to doc files(Thomas)
Even more documention(Thomas)
Even more documention(Thomas)
Nextstep support(Jacek)
Aix support(David)
pginterface manual page(Bruce)
shared libraries all have version numbers
merged all OS-specific shared library defines into one file
smarter TCL/TK configuration checking(Billy)
smarter perl configuration(Brook)
...
...
doc/FAQ
View file @
30b2d287
Frequently Asked Questions (FAQ) for PostgreSQL
Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: S
un Aug 30 00:01:22
EDT 1998
Last updated: S
at Oct 24 00:12:23
EDT 1998
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
...
@@ -15,9 +15,7 @@
...
@@ -15,9 +15,7 @@
http://postgreSQL.org/docs/faq-irix.shtml.
http://postgreSQL.org/docs/faq-irix.shtml.
_________________________________________________________________
_________________________________________________________________
Questions answered:
General questions
1) General questions
1.1) What is PostgreSQL?
1.1) What is PostgreSQL?
1.2) What does PostgreSQL run on?
1.2) What does PostgreSQL run on?
...
@@ -37,7 +35,7 @@ Questions answered:
...
@@ -37,7 +35,7 @@ Questions answered:
1.14) How can I learn SQL?
1.14) How can I learn SQL?
1.15) What languages are available to communicate with PostgreSQL?
1.15) What languages are available to communicate with PostgreSQL?
2)
Installation/Configuration questions
Installation/Configuration questions
2.1) initdb doesn't run
2.1) initdb doesn't run
2.2) when I start up the postmaster, I get "FindBackend: could not
2.2) when I start up the postmaster, I get "FindBackend: could not
...
@@ -54,17 +52,17 @@ Questions answered:
...
@@ -54,17 +52,17 @@ Questions answered:
change?
change?
2.8) How do I prevent other hosts from accessing my PostgreSQL
2.8) How do I prevent other hosts from accessing my PostgreSQL
database?
database?
2.9) I can't access the database as the
'root'
user.
2.9) I can't access the database as the
root
user.
2.10) All my servers crash under concurrent table access. Why?
2.10) All my servers crash under concurrent table access. Why?
2.11) How do I tune the database engine for better performance?
2.11) How do I tune the database engine for better performance?
2.12) What debugging features are available in PostgreSQL?
2.12) What debugging features are available in PostgreSQL?
2.13) How do I enable more than 64 concurrent backends?
2.14) What
2.13) How do I enable more than 64 concurrent backends?
non-unix ports are available?
2.14) What
non-unix ports are available?
3)
Operational questions
Operational questions
3.1) Does PostgreSQL support nested subqueries?
3.1) Does PostgreSQL support nested subqueries?
3.2) How can I write client applications
to
PostgreSQL?
3.2) How can I write client applications
for
PostgreSQL?
3.3) How do I set up a pg_group?
3.3) How do I set up a pg_group?
3.4) What is the exact difference between binary cursors and normal
3.4) What is the exact difference between binary cursors and normal
cursors?
cursors?
...
@@ -82,13 +80,13 @@ Questions answered:
...
@@ -82,13 +80,13 @@ Questions answered:
3.13) How do I create a serial/auto-incrementing field?
3.13) How do I create a serial/auto-incrementing field?
3.14) What are the pg_psort.XXX files in my database directory?
3.14) What are the pg_psort.XXX files in my database directory?
3.15) Why can't I connect to my database from another machine?
3.15) Why can't I connect to my database from another machine?
3.16) How do I find out what ind
ex
es or operations are defined in the
3.16) How do I find out what ind
ic
es or operations are defined in the
database?
database?
3.17) What is an oid? What is a tid?
3.17) What is an oid? What is a tid?
3.18) What is the meaning of some of the terms used in PostgreSQL?
3.18) What is the meaning of some of the terms used in PostgreSQL?
3.19) What is Genetic Query Optimization?
3.19) What is Genetic Query Optimization?
3.20) How do you remove a column from a table?
3.20) How do you remove a column from a table?
3.21) How do
SELECT
only the first few rows of a query?
3.21) How do
I select
only the first few rows of a query?
3.22) How much database disk space is required to store data from a
3.22) How much database disk space is required to store data from a
typical flat file?
typical flat file?
3.23) How do I get a list of tables, or other things I can see in
3.23) How do I get a list of tables, or other things I can see in
...
@@ -97,7 +95,7 @@ Questions answered:
...
@@ -97,7 +95,7 @@ Questions answered:
exhausted?"
exhausted?"
3.25) How do I tell what PostgreSQL version I am running?
3.25) How do I tell what PostgreSQL version I am running?
4)
Questions about extending PostgreSQL
Questions about extending PostgreSQL
4.1) I wrote a user-defined function and when I run it in psql, it
4.1) I wrote a user-defined function and when I run it in psql, it
dumps core.
dumps core.
...
@@ -106,7 +104,7 @@ Questions answered:
...
@@ -106,7 +104,7 @@ Questions answered:
4.3) I've written some nifty new types and functions for PostgreSQL.
4.3) I've written some nifty new types and functions for PostgreSQL.
4.4) How do I write a C function to return a tuple?
4.4) How do I write a C function to return a tuple?
5)
Bugs
Bugs
5.1) How do I make a bug report?
5.1) How do I make a bug report?
_________________________________________________________________
_________________________________________________________________
...
@@ -146,7 +144,7 @@ Section 1: General Questions
...
@@ -146,7 +144,7 @@ Section 1: General Questions
* aix - IBM on AIX 3.2.5 or 4.x
* aix - IBM on AIX 3.2.5 or 4.x
* alpha - DEC Alpha AXP on Digital Unix 2.0, 3.2, 4.0
* alpha - DEC Alpha AXP on Digital Unix 2.0, 3.2, 4.0
* BSD44_derived - OSs derived from 4.4-lite BSD (NetBSD, FreeBSD)
* BSD44_derived - OSs derived from 4.4-lite BSD (NetBSD, FreeBSD)
* bsdi - BSD/OS 2.
0, 2.01, 2.1, 3.0
* bsdi - BSD/OS 2.
x, 3.x, 4.x
* dgux - DG/UX 5.4R4.11
* dgux - DG/UX 5.4R4.11
* hpux - HP PA-RISC on HP-UX 9.0, 10
* hpux - HP PA-RISC on HP-UX 9.0, 10
* i386_solaris - i386 Solaris
* i386_solaris - i386 Solaris
...
@@ -159,9 +157,6 @@ Section 1: General Questions
...
@@ -159,9 +157,6 @@ Section 1: General Questions
* svr4 - Intel x86 on Intel SVR4 and MIPS
* svr4 - Intel x86 on Intel SVR4 and MIPS
* ultrix4 - DEC MIPS on Ultrix 4.4
* ultrix4 - DEC MIPS on Ultrix 4.4
The following platforms have known problems/bugs:
* nextstep - Motorola MC68K or Intel x86 on NeXTSTEP 3.2
1.3) Where can I get PostgreSQL?
1.3) Where can I get PostgreSQL?
The primary anonymous ftp site for PostgreSQL is:
The primary anonymous ftp site for PostgreSQL is:
...
@@ -203,9 +198,8 @@ Section 1: General Questions
...
@@ -203,9 +198,8 @@ Section 1: General Questions
1.5) Support for PostgreSQL
1.5) Support for PostgreSQL
There is no official support for PostgreSQL from the original
There is no official support for PostgreSQL from the University of
maintainers or from University of California, Berkeley. It is
California, Berkeley. It is maintained through volunteer effort.
maintained through volunteer effort only.
The main mailing list is: pgsql-general@postgreSQL.org. It is
The main mailing list is: pgsql-general@postgreSQL.org. It is
available for discussion of matters pertaining to PostgreSQL, For info
available for discussion of matters pertaining to PostgreSQL, For info
...
@@ -247,7 +241,7 @@ Section 1: General Questions
...
@@ -247,7 +241,7 @@ Section 1: General Questions
1.6) Latest release of PostgreSQL
1.6) Latest release of PostgreSQL
The latest release of PostgreSQL is version 6.4
beta
.
The latest release of PostgreSQL is version 6.4.
We plan to have major releases every four months.
We plan to have major releases every four months.
...
@@ -255,32 +249,31 @@ Section 1: General Questions
...
@@ -255,32 +249,31 @@ Section 1: General Questions
Illustra Information Technology (a wholly owned subsidiary of Informix
Illustra Information Technology (a wholly owned subsidiary of Informix
Software, Inc.) sells an object-relational DBMS called Illustra that
Software, Inc.) sells an object-relational DBMS called Illustra that
was originally based on postgres. Illustra has cosmetic similarities
was originally based on Postgres. For more information, contact
to PostgreSQL but has more features, is more robust, performs better,
sales@illustra.com
and offers real support. On the flip side, it costs money. For more
information, contact sales@illustra.com
1.8) What documentation is available for PostgreSQL?
1.8) What documentation is available for PostgreSQL?
Several manuals, manual pages, and some small test examples are
Several manuals, manual pages, and some small test examples are
included in the distribution. See the /doc directory. The pgintro,
included in the distribution. See the /doc directory.
sql, and pgbuiltin manual pages are particularly important. pgintro
contains a list of all available manual pages.
psql has some nice \d commands to show information about types,
psql has some nice \d commands to show information about types,
operators, functions, aggregates, etc.
operators, functions, aggregates, etc.
The www page contains pointers to an implementation guide and five
The web page contains even more documentation.
papers written about Postgres design concepts and features.
1.9) What version of SQL does PostgreSQL use?
1.9) What version of SQL does PostgreSQL use?
PostgreSQL supports an extended subset of SQL-92.
PostgreSQL supports an extended subset of SQL-92.
It is Y2K compliant.
1.10) Does PostgreSQL work with databases from earlier versions of
1.10) Does PostgreSQL work with databases from earlier versions of
PostgreSQL?
PostgreSQL?
Upgrading to 6.4 from earlier releases requires a dump and restore.
Upgrading to 6.4 from release 6.3.* can be accomplished using the new
pg_upgrade utility. Those upgrading from earlier releases require a
dump and restore.
Those ugrading from versions earlier than 1.09 must upgrade to 1.09
Those ugrading from versions earlier than 1.09 must upgrade to 1.09
first without a dump/reload, then dump the data from 1.09, and then
first without a dump/reload, then dump the data from 1.09, and then
...
@@ -313,8 +306,8 @@ Section 1: General Questions
...
@@ -313,8 +306,8 @@ Section 1: General Questions
PHP is great for simple stuff, but for more complex stuff, some still
PHP is great for simple stuff, but for more complex stuff, some still
use the perl interface and CGI.pm.
use the perl interface and CGI.pm.
An WWW gatway based on WDB using perl can be downloaded from
:
An WWW gatway based on WDB using perl can be downloaded from
* http://www.eol.ists.ca/~dunlop/wdb
-p95
http://www.eol.ists.ca/~dunlop/wdb
-p95
1.13) Does PostgreSQL have a graphical user interface? A report generator? A
1.13) Does PostgreSQL have a graphical user interface? A report generator? A
embedded query language interface?
embedded query language interface?
...
@@ -323,8 +316,8 @@ Section 1: General Questions
...
@@ -323,8 +316,8 @@ Section 1: General Questions
shipped as part of the distribtion. Pgaccess also has a report
shipped as part of the distribtion. Pgaccess also has a report
generator.
generator.
We also have ecpg, which is an embedded SQL query language interface
The web page is http://www.flex.ro/pgaccess We also include ecpg,
for C. This is also included
.
which is an embedded SQL query language interface for C
.
1.14) How can I learn SQL?
1.14) How can I learn SQL?
...
@@ -354,17 +347,15 @@ Section 2: Installation Questions
...
@@ -354,17 +347,15 @@ Section 2: Installation Questions
2.1) initdb doesn't run
2.1) initdb doesn't run
* check that you don't have any of the previous version's binaries
* check that you don't have any of the previous version's binaries
in your path
in your path (If you see the message WARN:heap_modifytuple: repl
is \ 9, this is the problem.)
* check to see that you have the proper paths set
* check to see that you have the proper paths set
* check that the 'postgres' user owns all the right files
* check that the postgres user owns the proper files
* ensure that there are files in $PGDATA/files, and that they are
non-empty. If they aren't, then "gmake install" failed for some
reason
2.2) when I start up the postmaster, I get "FindBackend: could not find a
2.2) when I start up the postmaster, I get "FindBackend: could not find a
backend to execute..." "postmaster: could not find backend to execute..."
backend to execute..." "postmaster: could not find backend to execute..."
You probably do not have the right path set up. The
'postgres'
You probably do not have the right path set up. The
postgres
executable needs to be in your path.
executable needs to be in your path.
2.3) The system seems to be confused about commas, decimal points, and date
2.3) The system seems to be confused about commas, decimal points, and date
...
@@ -383,7 +374,7 @@ Section 2: Installation Questions
...
@@ -383,7 +374,7 @@ Section 2: Installation Questions
It could be a variety of problems, but first check to see that you
It could be a variety of problems, but first check to see that you
have system V extensions installed on your kernel. PostgreSQL requires
have system V extensions installed on your kernel. PostgreSQL requires
kernel support for shared memory.
kernel support for shared memory
and semaphores
.
2.6) When I try to start the postmaster, I get IpcMemoryCreate errors.
2.6) When I try to start the postmaster, I get IpcMemoryCreate errors.
...
@@ -396,16 +387,16 @@ Section 2: Installation Questions
...
@@ -396,16 +387,16 @@ Section 2: Installation Questions
2.7) I have changed a source file, but a recompile does not see the change?
2.7) I have changed a source file, but a recompile does not see the change?
The Makefiles do not have the proper dependencies for include files.
The Makefiles do not have the proper dependencies for include files.
You have to do a
'make clean' and then another 'make'
.
You have to do a
make clean and then another make
.
2.8) How do I prevent other hosts from accessing my PostgreSQL database?
2.8) How do I prevent other hosts from accessing my PostgreSQL database?
By default, PostgreSQL only allows connections from the local machine
By default, PostgreSQL only allows connections from the local machine
using unix domain
. You must add the -i flag to the postmaster, and
using unix domain
sockets. You must add the -i flag to the postmaster,
enable host-based authentication by modifying the file $PGDATA/pg_hba
and enable host-based authentication by modifying the file
accordingly.
$PGDATA/pg_hba
accordingly.
2.9) I can't access the database as the
'root'
user.
2.9) I can't access the database as the
root
user.
You should not create database users with user id 0(root). They will
You should not create database users with user id 0(root). They will
be unable to access the database. This is a security precaution
be unable to access the database. This is a security precaution
...
@@ -419,28 +410,32 @@ Section 2: Installation Questions
...
@@ -419,28 +410,32 @@ Section 2: Installation Questions
2.11) How do I tune the database engine for better performance?
2.11) How do I tune the database engine for better performance?
If you are doing a lot of INSERTs, consider doing them in a large
Certainly, indices can speed up queries. The explain command allows
batch using the COPY command. This is much faster than single
you to see how PostgreSQL is interpreting your query, and which
individual INSERTs. Second, statements not in a BEGIN WORK/COMMIT
indices are being used.
If you are doing a lot of inserts, consider doing them in a large
batch using the copy command. This is much faster than single
individual inserts. Second, statements not in a begin work/commit
transaction block are considered to be their in their own transaction.
transaction block are considered to be their in their own transaction.
Consider performing several statements in a single transaction block.
Consider performing several statements in a single transaction block.
This reduces the transaction overhead. Also consider dropping and
This reduces the transaction overhead. Also consider dropping and
recreating ind
ex
es when making large data changes.
recreating ind
ic
es when making large data changes.
There are several tuning things that can be done. You can disable
There are several tuning things that can be done. You can disable
fsync() by starting the postmaster with a
'-o -F'
option. This will
fsync() by starting the postmaster with a
-o -F
option. This will
prevent fsync()'s from flushing to disk after every transaction.
prevent fsync()'s from flushing to disk after every transaction.
You can also use the postmaster -B option to increase the number of
You can also use the postmaster -B option to increase the number of
shared memory buffers
shared among the backend processes. If you make
shared memory buffers
used by the backend processes. If you make this
this parameter too high, the process will not start or crash
parameter too high, the backends will not start or crash unexpectedly.
unexpectedly. Each buffer is 8K and the defua
lt is 64 buffers.
Each buffer is 8K and the defau
lt is 64 buffers.
You can also use the postgres -S option to increase the maximum amount
You can also use the postgres -S option to increase the maximum amount
of memory used by each backend process for temporary sorts. Each
of memory used by each backend process for temporary sorts. Each
buffer is 1K and the defualt is 512 buffers.
buffer is 1K and the defualt is 512 buffers.
You can also use the
CLUSTER
command to group data in base tables to
You can also use the
cluster
command to group data in base tables to
match an index. See the cluster(l) manual page for more details.
match an index. See the cluster(l) manual page for more details.
2.12) What debugging features are available in PostgreSQL?
2.12) What debugging features are available in PostgreSQL?
...
@@ -460,14 +455,14 @@ Section 2: Installation Questions
...
@@ -460,14 +455,14 @@ Section 2: Installation Questions
./bin/postmaster >server.log 2>&1 &
./bin/postmaster >server.log 2>&1 &
This will put a server.log file in the top-level PostgreSQL directory.
This will put a server.log file in the top-level PostgreSQL directory.
This file c
an contain
useful information about problems or errors
This file c
ontains
useful information about problems or errors
encountered by the server. Postmaster has a -d option that allows even
encountered by the server. Postmaster has a -d option that allows even
more detailed information to be reported. The -d option takes a number
more detailed information to be reported. The -d option takes a number
1-3 that specifies the debug level. Be warned that a debug level of 3
that specifies the debug level. Be warned that high debug level values
generates large log files.
generates large log files.
You can actuall run the postgres backend from the command line, and
You can actuall
y
run the postgres backend from the command line, and
type your SQL statement directly. This is recommended
ONLY
for
type your SQL statement directly. This is recommended
only
for
debugging purposes. Note that a newline terminates the query, not a
debugging purposes. Note that a newline terminates the query, not a
semicolon. If you have compiled with debugging symbols, you can use a
semicolon. If you have compiled with debugging symbols, you can use a
debugger to see what is happening. Because the backend was not started
debugger to see what is happening. Because the backend was not started
...
@@ -484,9 +479,6 @@ Section 2: Installation Questions
...
@@ -484,9 +479,6 @@ Section 2: Installation Questions
pgsql/data/base/dbname directory. The client profile file will be put
pgsql/data/base/dbname directory. The client profile file will be put
in the current directory.
in the current directory.
The EXPLAIN command (see this FAQ) allows you to see how PostgreSQL is
interpreting your query.
2.13) How do I enable more than 64 concurrent backends?
2.13) How do I enable more than 64 concurrent backends?
Edit include/storage/sinvaladt.h, and change the value of
Edit include/storage/sinvaladt.h, and change the value of
...
@@ -503,24 +495,22 @@ Section 2: Installation Questions
...
@@ -503,24 +495,22 @@ Section 2: Installation Questions
A file win32.mak is included in the distributiion for making a Win32
A file win32.mak is included in the distributiion for making a Win32
libpq library and psql.
libpq library and psql.
People have attempted
to port our PostgreSQL database server to
Someone is attempting
to port our PostgreSQL database server to
Windows NT using the Cygnus Unix/NT porting library
, but no one has
Windows NT using the Cygnus Unix/NT porting library
. He has gotten it
succeeded yet
.
compiled, but initdb is currently failing
.
_________________________________________________________________
_________________________________________________________________
Section 3: PostgreSQL Features
Section 3: PostgreSQL Features
3.1) Does PostgreSQL support nested subqueries?
3.1) Does PostgreSQL support nested subqueries?
Yes.
Yes, fully supported, but only in the where clause, not in the target
list.
3.2) How can I write client applications
to
PostgreSQL?
3.2) How can I write client applications
for
PostgreSQL?
PostgreSQL supports a C-callable library interface called libpq as
PostgreSQL supports a C-callable library interface called libpq as
well as many others. See the /src/interfaces directory.
well as many others. See the above list of supported languages.
Others have contributed a perl interface and a WWW gateway to
PostgreSQL. See the PostgreSQL home pages for more details.
3.3) How do I set up a pg_group?
3.3) How do I set up a pg_group?
...
@@ -552,7 +542,7 @@ Section 3: PostgreSQL Features
...
@@ -552,7 +542,7 @@ Section 3: PostgreSQL Features
handle range searches. A B-tree index only handles range searches in a
handle range searches. A B-tree index only handles range searches in a
single dimension. R-tree's can handle multi-dimensional data. For
single dimension. R-tree's can handle multi-dimensional data. For
example, if an R-tree index can be built on an attribute of type
example, if an R-tree index can be built on an attribute of type
'point'
, the system can more efficient answer queries like select all
point
, the system can more efficient answer queries like select all
points within a bounding rectangle.
points within a bounding rectangle.
The canonical paper that describes the original R-Tree design is:
The canonical paper that describes the original R-Tree design is:
...
@@ -582,23 +572,19 @@ Section 3: PostgreSQL Features
...
@@ -582,23 +572,19 @@ Section 3: PostgreSQL Features
3.7) I defined indices but my queries don't seem to make use of them. Why?
3.7) I defined indices but my queries don't seem to make use of them. Why?
PostgreSQL does not automatically maintain statistics. One has to make
PostgreSQL does not automatically maintain statistics. One has to make
an explicit 'vacuum' call to update the statistics. After statistics
an explicit vacuum call to update the statistics. After statistics are
are updated, the optimizer has a better shot at using indices. Note
updated, the optimizer knows how many rows in the table, and can
that the optimizer is limited and does not use indices in some
better decide if it should use indices. Note that the optimizer does
circumstances (such as OR clauses). For column-specific optimization
not use indices in cases when the table is small because a sequentail
statistics, use 'vacuum analyze'.
scan would be faster. For column-specific optimization statistics, use
vacuum analyze.
If the system still does not see the index, it is probably because you
have created an index on a field with the improper *_ops type. For
example, you have created a CHAR(4) field, but have specified a
char_ops index type_class.
See the create_index manual page for information on what type classes
are available. It must match the field type.
PostgreSQL does not warn the user when the improper index is created
.
Indexes are not used for order by operations
.
Indexes not used for ORDER BY operations.
When using wildcard operators like LIKE or ~, indices can only be used
if the beginning of the search is anchored to the start of the string.
So, to use indices, LIKE searches can should not begin with %, and
~(regular expression searches) should start with ^.
3.8) How do I do regular expression searches? case-insensitive regexp
3.8) How do I do regular expression searches? case-insensitive regexp
searching?
searching?
...
@@ -623,11 +609,11 @@ BYTEA bytea variable-length array of bytes
...
@@ -623,11 +609,11 @@ BYTEA bytea variable-length array of bytes
You need to use the internal name when doing internal operations.
You need to use the internal name when doing internal operations.
The last four types above are "varlena" types (i.e. the first four
The last four types above are "varlena" types (i.e. the first four
bytes are the length, followed by the data).
CHAR
(#) allocates the
bytes are the length, followed by the data).
char
(#) allocates the
maximum number of bytes no matter how much data is stored in the
maximum number of bytes no matter how much data is stored in the
field.
TEXT, VARCHAR(#), and BYTEA
all have variable length on the
field.
text, varchar(#), and bytea
all have variable length on the
disk, and because of this, there is a small performance penalty for
disk, and because of this, there is a small performance penalty for
using them. Specifically, the penalty is for access to a
ny
columns
using them. Specifically, the penalty is for access to a
ll
columns
after the first column of this type.
after the first column of this type.
3.11) In a query, how do I detect if a field is NULL?
3.11) In a query, how do I detect if a field is NULL?
...
@@ -640,39 +626,17 @@ BYTEA bytea variable-length array of bytes
...
@@ -640,39 +626,17 @@ BYTEA bytea variable-length array of bytes
3.13) How do I create a serial/auto-incrementing field?
3.13) How do I create a serial/auto-incrementing field?
PostgreSQL does not allow the user to specifiy a user column as type
PostgreSQL supports a serial data type. It auto-creates a sequence and
SERIAL. Instead, you can use each row's oid field as a unique value.
index on the column. See the create_sequence manual page for more
However, if you need to dump and reload the database, you need to use
information about sequences. You can also use each row's oid field as
pgdump's -o option or COPY's WITH OIDS option to preserver the oids.
a unique value. However, if you need to dump and reload the database,
you need to use pgdump's -o option or copy with oids option to
We also have a SEQUENCE function that is very similar to SERIAL. See
preserve the oids.
the create_sequence manual page.
Another valid way of doing this is to create a function:
create table my_oids (f1 int4);
insert into my_oids values (1);
create function new_oid () returns int4 as
'update my_oids set f1 = f1 + 1; select f1 from my_oids; '
language 'sql';
then:
create table my_stuff (my_key int4, value text);
insert into my_stuff values (new_oid(), 'hello');
However, keep in mind there is a race condition here where one server
could do the update, then another one do an update, and they both
could select the same new id. This statement should be performed
within a transaction.
Yet another way is to use general trigger function autoinc() from
contrib/spi/autoinc.c.
3.14) What are the pg_psort.XXX files in my database directory?
3.14) What are the pg_psort.XXX files in my database directory?
They are temporary sort files generated by the query executor. For
They are temporary sort files generated by the query executor. For
example, if a sort needs to be done to satisfy an
ORDER BY
, some temp
example, if a sort needs to be done to satisfy an
order by
, some temp
files are generated as a result of the sort.
files are generated as a result of the sort.
If you have no transactions or sorts running at the time, it is safe
If you have no transactions or sorts running at the time, it is safe
...
@@ -685,28 +649,27 @@ BYTEA bytea variable-length array of bytes
...
@@ -685,28 +649,27 @@ BYTEA bytea variable-length array of bytes
postmaster -i option You need to add a host entry to the file
postmaster -i option You need to add a host entry to the file
pgsql/data/pg_hba. See the pg_hba.conf manual page.
pgsql/data/pg_hba. See the pg_hba.conf manual page.
3.16) How do I find out what ind
ex
es or operations are defined in the
3.16) How do I find out what ind
ic
es or operations are defined in the
database?
database?
psql has a variety of backslash commands to show such information. Use
psql has a variety of backslash commands to show such information. Use
\? to see them.
\? to see them.
Also try the file pgsql/src/tutorial/syscat.source. It illustrates
Also try the file pgsql/src/tutorial/syscat.source. It illustrates
many of the
'select'
s needed to get information out of the database
many of the
select
s needed to get information out of the database
system tables.
system tables.
3.17) What is an oid? What is a tid?
3.17) What is an oid? What is a tid?
Oids are PostgreSQL's answer to unique row ids or serial columns.
Oids are PostgreSQL's answer to unique row ids. Every row that is
Every row that is created in PostgreSQL gets a unique oid. All oids
created in PostgreSQL gets a unique oid. All oids generated during
generated by initdb are less than 16384 (from
initdb are less than 16384 (from backend/access/transam.h). All
backend/access/transam.h). All post-initdb (user-created) oids are
user-created oids are equal or greater that this. By default, all
equal or greater that this. By default, all these oids are unique not
these oids are unique not only within a table, or database, but unique
only within a table, or database, but unique within the entire
within the entire PostgreSQL installation.
PostgreSQL installation.
PostgreSQL uses oids in its internal system tables to link rows
in
PostgreSQL uses oids in its internal system tables to link rows
separate
tables. These oids can be used to identify specific user rows
between
tables. These oids can be used to identify specific user rows
and used in joins. It is recommended you use column type oid to store
and used in joins. It is recommended you use column type oid to store
oid values. See the sql(l) manual page to see the other internal
oid values. See the sql(l) manual page to see the other internal
columns. You can create an index on the oid field for faster access.
columns. You can create an index on the oid field for faster access.
...
@@ -720,8 +683,7 @@ BYTEA bytea variable-length array of bytes
...
@@ -720,8 +683,7 @@ BYTEA bytea variable-length array of bytes
Tids are used to indentify specific physical rows with block and
Tids are used to indentify specific physical rows with block and
offset values. Tids change after rows are modified or reloaded. They
offset values. Tids change after rows are modified or reloaded. They
are used by index entries to point to physical rows. They can not be
are used by index entries to point to physical rows.
accessed through sql.
3.18) What is the meaning of some of the terms used in PostgreSQL?
3.18) What is the meaning of some of the terms used in PostgreSQL?
...
@@ -737,8 +699,6 @@ BYTEA bytea variable-length array of bytes
...
@@ -737,8 +699,6 @@ BYTEA bytea variable-length array of bytes
* portal, cursor
* portal, cursor
* range variable, table name, table alias
* range variable, table name, table alias
Please let me know if you think of any more.
3.19) What is Genetic Query Optimization?
3.19) What is Genetic Query Optimization?
The GEQO module in PostgreSQL is intended to solve the query
The GEQO module in PostgreSQL is intended to solve the query
...
@@ -750,7 +710,7 @@ BYTEA bytea variable-length array of bytes
...
@@ -750,7 +710,7 @@ BYTEA bytea variable-length array of bytes
3.20) How do you remove a column from a table?
3.20) How do you remove a column from a table?
We do not support
ALTER TABLE DROP COLUMN
, but do this:
We do not support
alter table drop column
, but do this:
SELECT ... -- select all columns but the one you want to remove
SELECT ... -- select all columns but the one you want to remove
INTO TABLE new_table
INTO TABLE new_table
...
@@ -758,15 +718,14 @@ BYTEA bytea variable-length array of bytes
...
@@ -758,15 +718,14 @@ BYTEA bytea variable-length array of bytes
DROP TABLE old_table;
DROP TABLE old_table;
ALTER TABLE new_table RENAME TO old_table;
ALTER TABLE new_table RENAME TO old_table;
3.21) How do
SELECT
only the first few rows of a query?
3.21) How do
I select
only the first few rows of a query?
See the fetch manual page.
See the fetch manual page.
This only prevents all row results from being transfered to the
This only prevents all row results from being transfered to the
client. The entire query must be evaluated, even if you only want just
client. The entire query must be evaluated, even if you only want just
the first few rows. Consider a query that has and an ORDER BY. There
the first few rows. Consider a query that has an order by. There is no
is no way to return any rows until the entire query is evaluated and
way to return any rows until the entire query is evaluated and sorted.
sorted.
3.22)How much database disk space is required to store data from a typical
3.22)How much database disk space is required to store data from a typical
flat file?
flat file?
...
@@ -812,10 +771,10 @@ being indexed, so they can be large also.
...
@@ -812,10 +771,10 @@ being indexed, so they can be large also.
Depending on your shell, only one of these may succeed, but it will
Depending on your shell, only one of these may succeed, but it will
set your process data segment limit much higher and perhaps allow the
set your process data segment limit much higher and perhaps allow the
query to complete. This command applies t
he current process, and all
query to complete. This command applies t
o the current process, and
subprocesses created after the command is run. If are having a problem
all subprocesses created after the command is run. If are having a
with the SQL client because the backend is returning too much data,
problem with the SQL client because the backend is returning too much
try it before starting the client.
data,
try it before starting the client.
3.25) How do I tell what PostgreSQL version I am running?
3.25) How do I tell what PostgreSQL version I am running?
...
@@ -848,9 +807,8 @@ Section 4: Extending PostgreSQL
...
@@ -848,9 +807,8 @@ Section 4: Extending PostgreSQL
4.4) How do I write a C function to return a tuple?
4.4) How do I write a C function to return a tuple?
This requires extreme wizardry, so extreme that the authors have not
This requires extreme wizardry so extreme that the authors have not
ever tried it, though in principle it can be done. The short answer is
ever tried it, though in principle it can be done.
... you can't. This capability is forthcoming in the future.
_________________________________________________________________
_________________________________________________________________
Section 5: Bugs
Section 5: Bugs
...
@@ -860,9 +818,7 @@ Section 5: Bugs
...
@@ -860,9 +818,7 @@ Section 5: Bugs
Check the current FAQ at http://postgreSQL.org
Check the current FAQ at http://postgreSQL.org
Also check out our ftp site ftp://ftp.postgreSQL.org/pub to see if
Also check out our ftp site ftp://ftp.postgreSQL.org/pub to see if
there is a more recent PostgreSQL version.
there is a more recent PostgreSQL version
or patches
.
You can also fill out the "bug-template" file and send it to:
You can also fill out the "bug-template" file and send it to:
* bugs@postgreSQL.org
bugs@postgreSQL.org
This is the address of the developers mailing list.
doc/FAQ_DEV
View file @
30b2d287
Developer's Frequently Asked Questions (FAQ) for PostgreSQL
Last updated: Wed Feb 11 20:23:01 EST 1998
Developer's Frequently Asked Questions (FAQ) for PostgreSQL
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
Last updated: Fri Oct 2 15:21:32 EDT 1998
The most recent version of this document can be viewed at the postgreSQL Web
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
site, http://postgreSQL.org.
------------------------------------------------------------------------
The most recent version of this document can be viewed at the
postgreSQL Web site, http://postgreSQL.org.
_________________________________________________________________
Questions answered:
Questions
1) What tools are available for developers?
1) What tools are available for developers?
2) What books are good for developers?
2) What books are good for developers?
3) Why do we use palloc() and pfree() to allocate memory?
3) Why do we use palloc() and pfree() to allocate memory?
4) Why do we use Node and List to make data structures?
4) Why do we use Node and List to make data structures?
5) How do I add a feature or fix a bug?
5) How do I add a feature or fix a bug?
6) How do I download/update the current source tree?
6) How do I download/update the current source tree?
7) How do I test my changes?
7) How do I test my changes?
7) I just added a field to a structure. What else should I do?
8) Why are table, column, type, function, view names sometimes
referenced as Name or NameData, and sometimes as char *?
9) How do I efficiently access information in tables from the backend
code?
10) What is elog()?
_________________________________________________________________
------------------------------------------------------------------------
1) What tools are available for developers?
1) What tools are available for developers?
Aside from the User documentation mentioned in the regular FAQ, there
are several development tools available. First, all the files in the
pgsql/src/tools directory are designed for developers.
Aside from the User documentation mentioned in the regular FAQ, there
are several development tools available. First, all the files in the
/tools directory are designed for developers.
RELEASE_CHANGES changes we have to make for each release
RELEASE_CHANGES changes we have to make for each release
SQL_keywords standard SQL'92 keywords
SQL_keywords standard SQL'92 keywords
backend web flowchart of the backend directories
backend description/flowchart of the backend directorie
s
ccsym find standard defines made by your compiler
ccsym find standard defines made by your compiler
entab converts tabs to spaces, used by pgindent
entab converts tabs to spaces, used by pgindent
find_static finds functions that could be made static
find_static finds functions that could be made static
...
@@ -42,104 +47,230 @@ pgsql/src/tools directory are designed for developers.
...
@@ -42,104 +47,230 @@ pgsql/src/tools directory are designed for developers.
mkldexport create AIX exports file
mkldexport create AIX exports file
pgindent indents C source files
pgindent indents C source files
Let me note some of these. If you point your browser at the
Let me note some of these. If you point your browser at the
pgsql/src/tools/backend directory, you will see all the backend
file:/usr/local/src/pgsql/src/tools/backend/index.html directory, you
components in a flow chart. You can click on any one to see a
will see few paragraphs describing the data flow, the backend
description. If you then click on the directory name, you will be taken
components in a flow chart, and a description of the shared memory
to the source directory, to browse the actual source code behind it. We
area. You can click on any flowchart box to see a description. If you
also have several README files in some source directories to describe
then click on the directory name, you will be taken to the source
the function of the module. The browser will display these when you
directory, to browse the actual source code behind it. We also have
enter the directory also. The pgsql/src/tools/backend directory is also
several README files in some source directories to describe the
contained on our web page under the title Backend Flowchart.
function of the module. The browser will display these when you enter
the directory also. The tools/backend directory is also contained on
Second, you really should have an editor that can handle tags, so you can
our web page under the title How PostgreSQL Processes a Query.
tag a function call to see the function definition, and then tag inside that
function to see an even lower-level function, and then back out twice to
Second, you really should have an editor that can handle tags, so you
return to the original function. Most editors support this via tags or etags
can tag a function call to see the function definition, and then tag
files.
inside that function to see an even lower-level function, and then
back out twice to return to the original function. Most editors
Third, you need to get mkid from ftp.postgresql.org. By running
support this via tags or etags files.
tools/make_mkid, an archive of source symbols can be created that can be
rapidly queried like grep or edited.
Third, you need to get mkid from ftp.postgresql.org. By running
tools/make_mkid, an archive of source symbols can be created that can
make_diff has tools to create patch diff files that can be applied to the
be rapidly queried like grep or edited.
distribution.
make_diff has tools to create patch diff files that can be applied to
pgindent will format source files to match our standard format, which has
the distribution.
four-space tabs, and an indenting format specified by flags to the your
operating system's utility indent.
pgindent will format source files to match our standard format, which
has four-space tabs, and an indenting format specified by flags to the
2) What books are good for developers?
your operating system's utility indent.
I have three good books, An Introduction to Database Systems, by C.J. Date,
pgindent is run on all source files just before each beta test period.
Addison, Wesley, A Guide to the SQL Standard, by C.J. Date, et. al,
It auto-formats all source files to make them consistent. Comment
Addison, Wesley, and Transaction Processing: Concepts and Techniques,
blocks that need specific line breaks should be formatted as block
by Jim Gray and Andreas Reuter, Morgan, Kaufmann.
comments, where the comment starts as /*------. These comments will
not be reformatted in any way.
3) Why do we use palloc() and pfree() to allocate memory?
2) What books are good for developers?
palloc() and pfree() are used in place of malloc() and free() because we
automatically free all memory allocated when a transaction completes. This
I have four good books, An Introduction to Database Systems, by C.J.
makes it easier to make sure we free memory that gets allocated in one
Date, Addison, Wesley, A Guide to the SQL Standard, by C.J. Date, et.
place, but only freed much later. There are several contexts that memory can
al, Addison, Wesley, Fundamentals of Database Systems, by Elmasri and
be allocated in, and this controls when the allocated memory is
Navathe, and Transaction Processing, by Jim Gray, Morgan, Kaufmann
automatically freed by the backend.
There is also a database performance site, with a handbook on-line
4) Why do we use Node and List to make data structures?
written by Jim Gray at http://www.benchmarkresources.com.
We do this because this allows a consistent way to pass data inside the
3) Why do we use palloc() and pfree() to allocate memory?
backend in a flexible way. Every node has a NodeTag which specifies what
type of data is inside the Node. Lists are lists of Nodes. lfirst(),
palloc() and pfree() are used in place of malloc() and free() because
lnext(), and foreach() are used to get, skip, and traverse through Lists.
we automatically free all memory allocated when a transaction
completes. This makes it easier to make sure we free memory that gets
5) How do I add a feature or fix a bug?
allocated in one place, but only freed much later. There are several
contexts that memory can be allocated in, and this controls when the
The source code is over 250,000 lines. Many problems/features are isolated
allocated memory is automatically freed by the backend.
to one specific area of the code. Others require knowledge of much of the
source. If you are confused about where to start, ask the hackers list, and
4) Why do we use Node and List to make data structures?
they will be glad to assess the complexity and give pointers on where to
start.
We do this because this allows a consistent way to pass data inside
the backend in a flexible way. Every node has a NodeTag which
Another thing to keep in mind is that many fixes and features can be added
specifies what type of data is inside the Node. Lists are lists of
with surprisingly little code. I often start by adding code, then looking at
Nodes. lfirst(), lnext(), and foreach() are used to get, skip, and
other areas in the code where similar things are done, and by the time I am
traverse through Lists.
finished, the patch is quite small and compact.
You can print nodes easily inside gdb. First, to disable output
When adding code, keep in mind that it should use the existing facilities in
truncation:
the source, for performance reasons and for simplicity. Often a review of
existing code doing similar things is helpful.
(gdb) set print elements 0
6) How do I download/update the current source tree?
You may then use either of the next two commands to print out List,
Node, and structure contents. The first prints in a short format, and
There are several ways to obtain the source tree. Occasional developers can
the second in a long format:
just get the most recent source tree snapshot from ftp.postgresql.org. For
regular developers, you can use CVSup, which is available from
(gdb) call print(any_pointer)
ftp.postgresql.org too. CVSup allows you to download the source tree, then
(gdb) call pprint(any_pointer)
occasionally update your copy of the source tree with any new changes. Using
CVSup, you don't have to download the entire source each time, only the
5) How do I add a feature or fix a bug?
changed files. CVSup does not allow developers to update the source tree.
The source code is over 250,000 lines. Many problems/features are
Anonymous CVS is available too. See the doc/FAQ_CVS file for more
isolated to one specific area of the code. Others require knowledge of
information.
much of the source. If you are confused about where to start, ask the
hackers list, and they will be glad to assess the complexity and give
To update the source tree, there are two ways. You can generate a patch
pointers on where to start.
against your current source tree, perhaps using the make_diff tools
mentioned above, and send them to the patches list. They will be reviewed,
Another thing to keep in mind is that many fixes and features can be
and applied in a timely manner. If the patch is major, and we are in beta
added with surprisingly little code. I often start by adding code,
testing, the developers may wait for the final release before applying your
then looking at other areas in the code where similar things are done,
patches.
and by the time I am finished, the patch is quite small and compact.
For hard-core developers, Marc(scrappy@postgresql.org) will give you a Unix
When adding code, keep in mind that it should use the existing
shell account on postgresql.org, and you can ftp your files into your
facilities in the source, for performance reasons and for simplicity.
account, patch, and cvs install the changes directly into the source tree.
Often a review of existing code doing similar things is helpful.
6) How do I test my changes?
6) How do I download/update the current source tree?
First, use psql to make sure it is working as you expect. Then run
There are several ways to obtain the source tree. Occasional
src/test/regress and get the output of src/test/regress/checkresults with
developers can just get the most recent source tree snapshot from
and without your changes, to see that your patch does not change the
ftp.postgresql.org. For regular developers, you can use CVS. CVS
regression test in unexpected ways. This practice has saved me many times.
allows you to download the source tree, then occasionally update your
The regression tests test the code in ways I would never do, and has caught
copy of the source tree with any new changes. Using CVS, you don't
many bugs in my patches. By finding the problems now, you save yourself a
have to download the entire source each time, only the changed files.
lot of debugging later when things are broken, and you can't figure out when
Anonymous CVS does not allows developers to update the remote source
it happened.
tree, though privileged developers can do this. There is a CVS FAQ on
our web site that describes how to use remote CVS. You can also use
CVSup, which has similarly functionality, and is available from
ftp.postgresql.org.
To update the source tree, there are two ways. You can generate a
patch against your current source tree, perhaps using the make_diff
tools mentioned above, and send them to the patches list. They will be
reviewed, and applied in a timely manner. If the patch is major, and
we are in beta testing, the developers may wait for the final release
before applying your patches.
For hard-core developers, Marc(scrappy@postgresql.org) will give you a
Unix shell account on postgresql.org, so you can use CVS to update the
main source tree, or you can ftp your files into your account, patch,
and cvs install the changes directly into the source tree.
6) How do I test my changes?
First, use psql to make sure it is working as you expect. Then run
src/test/regress and get the output of src/test/regress/checkresults
with and without your changes, to see that your patch does not change
the regression test in unexpected ways. This practice has saved me
many times. The regression tests test the code in ways I would never
do, and has caught many bugs in my patches. By finding the problems
now, you save yourself a lot of debugging later when things are
broken, and you can't figure out when it happened.
7) I just added a field to a structure. What else should I do?
The structures passing around from the parser, rewrite, optimizer, and
executor require quite a bit of support. Most structures have support
routines in src/backend/nodes used to create, copy, read, and output
those structures. Make sure you add support for your new field to
these files. Find any other places the structure may need code for
your new field. mkid is helpful with this (see above).
8) Why are table, column, type, function, view names sometimes referenced as
Name or NameData, and sometimes as char *?
Table, column, type, function, and view names are stored in system
tables in columns of type Name. Name is a fixed-length,
null-terminated type of NAMEDATALEN bytes. (The default value for
NAMEDATALEN is 32 bytes.)
typedef struct nameData
{
char data[NAMEDATALEN];
} NameData;
typedef NameData *Name;
Table, column, type, function, and view names that come in to the
backend via user queries are stored as variable-length,
null-terminated character strings.
Many functions are called with both types of names, ie. heap_open().
Because the Name type is null-terminated, it is safe to pass it to a
function expecting a char *. Because there are many cases where
on-disk names(Name) are compared to user-supplied names(char *), there
are many cases where Name and char * are used interchangeably.
9) How do I efficiently access information in tables from the backend code?
You first need to find the tuples(rows) you are interested in. There
are two ways. First, SearchSysCacheTuple() and related functions allow
you to query the system catalogs. This is the preferred way to access
system tables, because the first call to the cache loads the needed
rows, and future requests can return the results without accessing the
base table. Some of the caches use system table indexes to look up
tuples. A list of available caches is located in
src/backend/utils/cache/syscache.c.
src/backend/utils/cache/lsyscache.c contains many column-specific
cache lookup functions.
The rows returned are cached-owned versions of the heap rows. They are
invalidated when the base table changes. Because the cache is local to
each backend, you may use the pointer returned from the cache for
short periods without making a copy of the tuple. If you send the
pointer into a large function that will be doing its own cache
lookups, it is possible the cache entry may be flushed, so you should
use SearchSysCacheTupleCopy() in these cases, and pfree() the tuple
when you are done.
If you can't use the system cache, you will need to retrieve the data
directly from the heap table, using the buffer cache that is shared by
all backends. The backend automatically takes care of loading the rows
into the buffer cache.
Open the table with heap_open(). You can then start a table scan with
heap_beginscan(), then use heap_getnext() and continue as long as
HeapTupleIsValid() returns true. Then do a heap_endscan(). Keys can be
assigned to the scan. No indexes are used, so all rows are going to be
compared to the keys, and only the valid rows returned.
You can also use heap_fetch() to fetch rows by block number/offset.
While scans automatically lock/unlock rows from the buffer cache, with
heap_fetch(), you must pass a Buffer pointer, and ReleaseBuffer() it
when completed. Once you have the row, you can get data that is common
to all tuples, like t_ctid and t_oid, by mererly accessing the
HeapTuple structure entries. If you need a table-specific column, you
should take the HeapTuple pointer, and use the GETSTRUCT() macro to
access the table-specific start of the tuple. You then cast the
pointer as a Form_pg_proc pointer if you are accessing the pg_proc
table, or TypeTupleForm if you are accessing pg_type. You can then
access the columns by using a structure pointer:
((Form_pg_class) GETSTRUCT(tuple))->relnatts
You should not directly change live tuples in this way. The best way
is to use heap_tuplemodify() and pass it your palloc'ed tuple, and the
values you want changed. It returns another palloc'ed tuple, which you
pass to heap_replace(). You can delete tuples by passing the tuple's
t_ctid to heap_destroy(). Remember, tuples can be either system cache
versions, which may go away soon after you get them, buffer cache
version, which will go away when you heap_getnext(), heap_endscan, or
ReleaseBuffer(), in the heap_fetch() case. Or it may be a palloc'ed
tuple, that you must pfree() when finished.
10) What is elog()?
elog() is used to send messages to the front-end, and optionally
terminate the current query being processed. The first parameter is an
elog level of NOTICE, DEBUG, ERROR, or FATAL. NOTICE prints on the
user's terminal and the postmaster logs. DEBUG prints only in the
postmaster logs. ERROR prints in both places, and terminates the
current query, never returning from the call. FATAL terminates the
backend process. The remaining parameters of elog are a printf-style
set of parameters to print.
doc/TODO
View file @
30b2d287
TODO list for PostgreSQL
TODO list for PostgreSQL
========================
========================
Last updated: Sat
Aug 29 17:43:10
EDT 1998
Last updated: Sat
Oct 24 00:11:58
EDT 1998
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
Current maintainer: Bruce Momjian (maillist@candle.pha.pa.us)
...
@@ -19,18 +19,13 @@ Developers who have claimed items are:
...
@@ -19,18 +19,13 @@ Developers who have claimed items are:
* Bryan is Bryan Henderson<bryanh@giraffe.netgate.net>
* Bryan is Bryan Henderson<bryanh@giraffe.netgate.net>
* D'Arcy is D'Arcy J.M. Cain <darcy@druid.net>
* D'Arcy is D'Arcy J.M. Cain <darcy@druid.net>
* Dan is Dan McGuirk <mcguirk@indirect.com>
* Dan is Dan McGuirk <mcguirk@indirect.com>
* Daniel is Daniel Kalchev <daniel@digsys.bg>
* Darren is Darren King <darrenk@insightdist.com>
* Darren is Darren King <darrenk@insightdist.com>
* David is David Hartwig <daveh@insightdist.com>
* David is David Hartwig <daveh@insightdist.com>
* Edmund is Edmund Mergl <E.Mergl@bawue.de>
* Edmund is Edmund Mergl <E.Mergl@bawue.de>
* Erich Stamberger <eberger@gewi.kfunigraz.ac.at>
* Gerhard is Gerhard Reithofer <gerhardr@tech-edv.co.at>
* Goran is Goran Thyni <goran@bildbasen.se>
* Goran is Goran Thyni <goran@bildbasen.se>
* Henry is Henry B. Hotz <hotz@jpl.nasa.gov>
* Henry is Henry B. Hotz <hotz@jpl.nasa.gov>
* Igor is Igor <igor@sba.miami.edu>
* Jan is Jan Wieck <wieck@sapserv.debis.de>
* Jan is Jan Wieck <wieck@sapserv.debis.de>
* Jun is Jun Kuwamura <juk@rccm.co.jp>
* Jun is Jun Kuwamura <juk@rccm.co.jp>
* Kurt is "Kurt J. Lidl" <lidl@va.pubnix.com>
* Maarten is Maarten Boekhold <maartenb@dutepp0.et.tudelft.nl>
* Maarten is Maarten Boekhold <maartenb@dutepp0.et.tudelft.nl>
* Marc is Marc Fournier <scrappy@hub.org>
* Marc is Marc Fournier <scrappy@hub.org>
* Martin is Martin S. Utesch <utesch@aut.tu-freiberg.de>
* Martin is Martin S. Utesch <utesch@aut.tu-freiberg.de>
...
@@ -38,20 +33,17 @@ Developers who have claimed items are:
...
@@ -38,20 +33,17 @@ Developers who have claimed items are:
* Michael is Michael Meskes <meskes@debian.org>
* Michael is Michael Meskes <meskes@debian.org>
* Oleg is Oleg Bartunov <oleg@sai.msu.su>
* Oleg is Oleg Bartunov <oleg@sai.msu.su>
* Paul is Paul M. Aoki <aoki@CS.Berkeley.EDU>
* Paul is Paul M. Aoki <aoki@CS.Berkeley.EDU>
* Patrick is Patrick van Kleef <pvk@pobox.com>
* Peter is Peter T Mount <peter@retep.org.uk>
* Peter is Peter T Mount <peter@retep.org.uk>
* Phil is Phil Thompson <phil@river-bank.demon.co.uk>
* Phil is Phil Thompson <phil@river-bank.demon.co.uk>
* Raymond is Raymond Toy <toy@rtp.ericsson.se>
* Ryan is Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
* Ryan is Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
* Soo-Ho Ok <shok@detc.dongeui-tc.ac.kr>
* Soo-Ho Ok <shok@detc.dongeui-tc.ac.kr>
* Stefan Simkovics <ssimkovi@rainbow.studorg.tuwien.ac.at>
* Stefan Simkovics <ssimkovi@rainbow.studorg.tuwien.ac.at>
* Sven is Sven Verdoolaege <skimo@breughel.ufsia.ac.be>
* Sven is Sven Verdoolaege <skimo@breughel.ufsia.ac.be>
* Tatsuo is Tatsuo Ishii <t-ishii@sra.co.jp>
* Tatsuo is Tatsuo Ishii <t-ishii@sra.co.jp>
* Tom is Tom Lane <tgl@sss.pgh.pa.us>
* Thomas is Thomas Lockhart <tgl@mythos.jpl.nasa.gov>
* Thomas is Thomas Lockhart <tgl@mythos.jpl.nasa.gov>
* Todd is Todd Brandys is <brandys@eng3.hep.uiuc.edu>
* TomH is Tom I Helbekkmo <tih@Hamartun.Priv.NO>
* TomH is Tom I Helbekkmo <tih@Hamartun.Priv.NO>
* Vadim is "Vadim B. Mikheev" <vadim@sable.krasnoyarsk.su>
* Vadim is "Vadim B. Mikheev" <vadim@sable.krasnoyarsk.su>
* Vivek is Vivek Khera <khera@kci.kciLink.com>
Additional 6.4 developers include:
Additional 6.4 developers include:
---------------------------------
---------------------------------
...
@@ -63,13 +55,15 @@ Additional 6.4 developers include:
...
@@ -63,13 +55,15 @@ Additional 6.4 developers include:
* Aldrin L. <aldrin@americasnet.com>
* Aldrin L. <aldrin@americasnet.com>
* Pascal ANDRE <andre@via.ecp.fr>
* Pascal ANDRE <andre@via.ecp.fr>
* Magnus Hagander <mha@edu.sollentuna.se>
* Magnus Hagander <mha@edu.sollentuna.se>
* Robert Bruccoleri <bruc@pluto.njcc.com>
* Paul A Vixie <paul@vix.com>
* Jacek Lasecki <jacek@sound.eti.pg.gda.pl>
RELIABILITY
RELIABILITY
-----------
-----------
* Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup
* Overhaul mdmgr/smgr to fix double unlinking and double opens, cleanup
* Overhaul bufmgr/lockmgr/transaction manager
* Overhaul bufmgr/lockmgr/transaction manager
* Remove EXTEND?
* Remove EXTEND?
* -CREATE VIEW requires super-user priviledge
* Can lo_export()/lo_import() read/write anywhere, causing a security problem?
* Can lo_export()/lo_import() read/write anywhere, causing a security problem?
* Tables that start with xinv confused to be large objects
* Tables that start with xinv confused to be large objects
* Two and three dimmensional arrays display improperly, missing {}
* Two and three dimmensional arrays display improperly, missing {}
...
@@ -78,7 +72,6 @@ RELIABILITY
...
@@ -78,7 +72,6 @@ RELIABILITY
* SELECT * FROM table WHERE int4_column = '1' fails
* SELECT * FROM table WHERE int4_column = '1' fails
* SELECT a[1] FROM test fails, it needs test.a[1]
* SELECT a[1] FROM test fails, it needs test.a[1]
* UPDATE table SET table.value = 3 fails
* UPDATE table SET table.value = 3 fails
* -Make pg_dump preserve inheritance column order, do non-inherits first
* User who can create databases can modify pg_database table
* User who can create databases can modify pg_database table
* optimizer memory exhaustion with many OR's
* optimizer memory exhaustion with many OR's
* elog() does not free all its memory(Jan)
* elog() does not free all its memory(Jan)
...
@@ -89,7 +82,6 @@ RELIABILITY
...
@@ -89,7 +82,6 @@ RELIABILITY
* allow UPDATE using aggregate to affect all rows, not just one
* allow UPDATE using aggregate to affect all rows, not just one
* computations in views fail:
* computations in views fail:
create view test as select usesysid * usesysid from pg_shadow;
create view test as select usesysid * usesysid from pg_shadow;
* select upper(usename), count(usesysid) from pg_shadow group by 1 fails
ENHANCEMENTS
ENHANCEMENTS
------------
------------
...
@@ -99,9 +91,7 @@ ENHANCEMENTS
...
@@ -99,9 +91,7 @@ ENHANCEMENTS
* Allow transaction commits with rollback with no-fsync performance
* Allow transaction commits with rollback with no-fsync performance
* More access control over who can create tables and access the database
* More access control over who can create tables and access the database
* Add full ANSI SQL capabilities
* Add full ANSI SQL capabilities
* -Implement HAVING clause(Stephan)
* add OUTER joins, left and right (Thomas)
* add OUTER joins, left and right (Thomas)
* -make VIEWs updateable where possible(use Rules)
* add INTERSECTS, SUBTRACTS(Stephan)
* add INTERSECTS, SUBTRACTS(Stephan)
* add temporary tables
* add temporary tables
* add sql3 recursive unions
* add sql3 recursive unions
...
@@ -111,8 +101,6 @@ ENHANCEMENTS
...
@@ -111,8 +101,6 @@ ENHANCEMENTS
* DOMAIN capability
* DOMAIN capability
* Allow compression of large fields or a compressed field type
* Allow compression of large fields or a compressed field type
* Fix the rules system(Jan,Soo-Ho)
* Fix the rules system(Jan,Soo-Ho)
* -robust
* -making INSTEAD rules work
* add CONSTRAINT
* add CONSTRAINT
* Full set of text operations and functions
* Full set of text operations and functions
* word searches, concat,max() on text, char
* word searches, concat,max() on text, char
...
@@ -126,10 +114,8 @@ ENHANCEMENTS
...
@@ -126,10 +114,8 @@ ENHANCEMENTS
* Make MONEY/DECIMAL have a defined precision
* Make MONEY/DECIMAL have a defined precision
* Fix tables >2G, or report error when 2G size reached
* Fix tables >2G, or report error when 2G size reached
(fix lseek()/off_t, mdextend()/RELSEG_SIZE)
(fix lseek()/off_t, mdextend()/RELSEG_SIZE)
* -Allow libpq to cancel query requests
* Add REGEX internationalization
* Add REGEX internationalization
* allow row re-use without vacuum, maybe?(Vadim)
* allow row re-use without vacuum, maybe?(Vadim)
* -Remove restriction that ORDER BY field must be in SELECT list(David)
* Add word index for text fields, maybe with trigrams, i.e.:
* Add word index for text fields, maybe with trigrams, i.e.:
* ' (cat | dog) & ! fox ' meaning text has cat aor dog, but not fox
* ' (cat | dog) & ! fox ' meaning text has cat aor dog, but not fox
* Populate backend status area and write program to dump status data
* Populate backend status area and write program to dump status data
...
@@ -186,19 +172,29 @@ ENHANCEMENTS
...
@@ -186,19 +172,29 @@ ENHANCEMENTS
* allow creation of functional indexes to use default types
* allow creation of functional indexes to use default types
* put sort files, large objects in their on directory
* put sort files, large objects in their on directory
* CREATE VIEW myview (name) AS SELECT lname FROM wages fails
* CREATE VIEW myview (name) AS SELECT lname FROM wages fails
* do autocommit so always in a transaction block
* add SIMILAR TO to allow character classes, 'pg_[a-c]%'
* allow function isnull(val,'string') to return string if value is null
* multi-verion concurrency control(Vadim)
* improve reporting of syntax errors by showing location of error in query
* allow chaining of pages to allow >8k tuples
* no min/max for oid type
* remove un-needed conversion functions
PERFORMANCE
PERFORMANCE
-----------
-----------
* Use indexes in ORDER BY for restrictive data sets, min(), max()
* Use indexes in ORDER BY for restrictive data sets, min(), max()
* Allow LIMIT ability on single-table queries that have no ORDER BY or
a matching index
* Pull requested data directly from indexes, bypassing heap data
* Prevent psort() usage when query already using index matching ORDER BY
* Optimizing disjunctive queries
* Optimizing disjunctive queries
* Fix bushy-plans
* Fix bushy-plans
* Other optimizer bugs
* Prevent fsync in SELECT-only queries
* Prevent fsync in SELECT-only queries
* Cache most recent query plan(s?)
* Cache most recent query plan(s?)
* Shared catalog cache, reduce lseek()'s by caching table size in shared area
* Shared catalog cache, reduce lseek()'s by caching table size in shared area
* Allow compression of log and meta data
* Allow compression of log and meta data
* Add FILLFACTOR to index creation
* Add FILLFACTOR to index creation
* -Allow indexes to be used with OR clauses(Bruce)
* update pg_statistic table to remove operator column
* update pg_statistic table to remove operator column
* make index creation use psort code, because it is now faster(Vadim)
* make index creation use psort code, because it is now faster(Vadim)
* remove fork()/exec() of backend and make it just fork()
* remove fork()/exec() of backend and make it just fork()
...
@@ -213,15 +209,15 @@ PERFORMANCE
...
@@ -213,15 +209,15 @@ PERFORMANCE
* use mmap() rather than SYSV shared memory(?)
* use mmap() rather than SYSV shared memory(?)
* use index to restrict rows returned by multi-key index when used with
* use index to restrict rows returned by multi-key index when used with
non-consecutive keys or OR clauses, so fewer heap accesses
non-consecutive keys or OR clauses, so fewer heap accesses
* use index with constants on functions
DOCUMENTATION
DOCUMENTATION
-------------
-------------
* Update usermanual source(many)
* Update usermanual source(many)
* added features used in grammer but not in docs, like :: and CAST
* added features used in grammer but not in docs, like :: and CAST
* update libpq++ and pginterface manual page
* Add keyword list to documentation, already in /tools
* Add keyword list to documentation, already in /tools
* Add 'man pgsql' to show all manual page names
* Add 'man pgsql' to show all manual page names
* Add use of 'const' for varibles in source tree
=============================================================================
=============================================================================
...
@@ -246,12 +242,13 @@ Fix a bug in the oracle compatibility functions btrim() ltrim() and rtrim()
...
@@ -246,12 +242,13 @@ Fix a bug in the oracle compatibility functions btrim() ltrim() and rtrim()
Fix for usernames longer than eight characters(Tom)
Fix for usernames longer than eight characters(Tom)
Fix for shared invalidation cache overflow(Massimo)
Fix for shared invalidation cache overflow(Massimo)
Prevent file descriptor leaks in failed COPY's(Bruce)
Prevent file descriptor leaks in failed COPY's(Bruce)
Fix problem with username/passwords over 8 characters(Tom)
Enhancements
Enhancements
------------
------------
Upgrade
ECPG to 2.0,
see src/interfaces/ecpc/ChangeLog(Michael)
Upgrade
ecpg and ecpglib,
see src/interfaces/ecpc/ChangeLog(Michael)
Show the index used in an explain(Zeugswetter)
Show the index used in an explain(Zeugswetter)
Multi-byte awareness of many data
data types and functions
(Tatsuo)
Multi-byte awareness of many data
types and functions, via configure
(Tatsuo)
New configure --with-mb option(Tatsuo)
New configure --with-mb option(Tatsuo)
New initdb --pgencoding option(Tatsuo)
New initdb --pgencoding option(Tatsuo)
New createdb -E multibyte option(Tatsuo)
New createdb -E multibyte option(Tatsuo)
...
@@ -289,6 +286,8 @@ Pg_hba.conf now has a sameuser option in the database field
...
@@ -289,6 +286,8 @@ Pg_hba.conf now has a sameuser option in the database field
Make lo_unlink take oid param, not int4
Make lo_unlink take oid param, not int4
New DISABLE_COMPLEX_MACRO for compilers that can't handle our macros(Bruce)
New DISABLE_COMPLEX_MACRO for compilers that can't handle our macros(Bruce)
Libpgtcl now gets async notifies from libpq(Tom)
Libpgtcl now gets async notifies from libpq(Tom)
libpgtcl cleanups(Tom)
New locale patch, see docs/README/locale(Oleg)
New locale patch, see docs/README/locale(Oleg)
Fix for pg_dump so CONSTRAINT and CHECK syntax is correct(ccb)
Fix for pg_dump so CONSTRAINT and CHECK syntax is correct(ccb)
New contrib/lo code for large object orphan removal(Peter)
New contrib/lo code for large object orphan removal(Peter)
...
@@ -299,8 +298,9 @@ Libpq can now be compiled on win32(Magnus)
...
@@ -299,8 +298,9 @@ Libpq can now be compiled on win32(Magnus)
Add PQsetdbLogin() in libpq
Add PQsetdbLogin() in libpq
Two styles we agreed upon for database descriptors(Thomas)
Two styles we agreed upon for database descriptors(Thomas)
New 8-byte integer type, checked by configure for OS support(Thomas)
New 8-byte integer type, checked by configure for OS support(Thomas)
Better support for quited table/column names(Thomas)
Surround table and column names with double-quotes(Thomas) in generated
Surround table and column names with double-quotes(Thomas) in generated
sql code to preserve case (SQL92 syntax)(Thomas)
sql code to preserve case (SQL92 syntax)(Thomas)
New libpqrequestCancel(Tom)
New libpqrequestCancel(Tom)
PQreset() now works with passwords(Tom)
PQreset() now works with passwords(Tom)
Handle case of GROUP BY target list column number out of range(David)
Handle case of GROUP BY target list column number out of range(David)
...
@@ -343,9 +343,13 @@ New rewrite system fixes many problems with rules and views(Jan)
...
@@ -343,9 +343,13 @@ New rewrite system fixes many problems with rules and views(Jan)
* Rules and views inherit the permissions on the creator
* Rules and views inherit the permissions on the creator
* No rules at the column level
* No rules at the column level
* No UPDATE NEW/OLD rules
* No UPDATE NEW/OLD rules
* New pg_
rule and pg_view
system views
* New pg_
tables, pg_indexes, pg_rules and pg_views
system views
* Only a single action on SELECT rules
* Only a single action on SELECT rules
* Total rewrite overhaul, perhaps for 6.5
* Total rewrite overhaul, perhaps for 6.5
* handle subselects
* handle aggregates on views
* handle insert into select from view works
*
System indexes are now multi-key(Bruce)
System indexes are now multi-key(Bruce)
Oidint2, oidint4, and oidname types are removed(Bruce)
Oidint2, oidint4, and oidname types are removed(Bruce)
...
@@ -358,9 +362,27 @@ New setval() command to set sequence value(Massimo)
...
@@ -358,9 +362,27 @@ New setval() command to set sequence value(Massimo)
Auto-remove unix socket file on startup if no postmaster running(Massimo)
Auto-remove unix socket file on startup if no postmaster running(Massimo)
Conditional trace package(Massimo)
Conditional trace package(Massimo)
New UNLISTEN command(Massimo)
New UNLISTEN command(Massimo)
Psql
now compiles
under win32 using win32.mak(Magnus)
Psql
and libpq now compile
under win32 using win32.mak(Magnus)
Lo_read no longer stores trailing NULL(Bruce)
Lo_read no longer stores trailing NULL(Bruce)
Identifiers are now truncated to 31 characters internally(Bruce)
Identifiers are now truncated to 31 characters internally(Bruce)
Createuser options now availble on the command line
PL/pgSQL backend programming language(Jan)
Code for 64-bit integer supported added, configure tested, int8 type(Thomas)
Prevent file descriptor leaf from failed COPY(Bruce)
New pg_upgrade command(Bruce)
Updated /contrib directories(Massimo)
New CREATE TABLE DEFAULT VALUES statement available(Thomas)
New INSERT INTO TABLE DEFAULT VALUES statement available(Thomas)
New DECLARE and FETCH feature(Thomas)
libpq's internal structures now not exported(Tom)
Allow up to 8 key indexes(Bruce)
Remove ARCHIVE keyword, that is no longer used(Thomas)
pg_dump -n flag to supress quotes around indentifiers
disable system columns for views(Jan)
net INET and CIDR types for network addresses(TomH, Paul)
no more double quotes in psql output
pg_dump now dumps views(Terry)
new SET QUERY_LIMIT(Tatsuo,Jan)
Source Tree Changes
Source Tree Changes
-------------------
-------------------
...
@@ -380,8 +402,16 @@ Update backend flowchart in tools/backend(Bruce)
...
@@ -380,8 +402,16 @@ Update backend flowchart in tools/backend(Bruce)
Change atttypmod from int16 to int32(Bruce, Tom)
Change atttypmod from int16 to int32(Bruce, Tom)
Getrusage() fix for platforms that do not have it(Tom)
Getrusage() fix for platforms that do not have it(Tom)
Add PGUSER to libpq man page
Add PGUSER to libpq man page
N
s32k platform fixes(Phil Nelson
)
N
S32K platform fixes(Phil Nelson, John Buller
)
Sco 7/UnixWare 2.x fixes(Billy,others)
Sco 7/UnixWare 2.x fixes(Billy,others)
Sparc/Solaris 2.5 fixes(Ryan)
Sparc/Solaris 2.5 fixes(Ryan)
Pgbuiltin.3 is obsolete, move to doc files(Thomas)
Pgbuiltin.3 is obsolete, move to doc files(Thomas)
Even more documention(Thomas)
Even more documention(Thomas)
Nextstep support(Jacek)
Aix support(David)
pginterface manual page(Bruce)
shared libraries all have version numbers
merged all OS-specific shared library defines into one file
smarter TCL/TK configuration checking(Billy)
smarter perl configuration(Brook)
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