aboutsummaryrefslogtreecommitdiff
path: root/doc/src
Commit message (Collapse)AuthorAge
...
* Update keywords table for 8.1.Peter Eisentraut2005-10-12
|
* Add description:Bruce Momjian2005-10-12
| | | | | | | | | < * Prevent libpq's PQfnumber() from lowercasing the column name? > * Prevent libpq's PQfnumber() from lowercasing the column name > > One idea is to lowercase all identifiers except those that are > surrounded by quotes. >
* Add:Bruce Momjian2005-10-12
| | | | > o Add options like pg_restore -l and -L to pg_dump
* Add:Bruce Momjian2005-10-11
| | | | | | | > o Allow selection of individual object(s) of all types, not just > tables > o In a selective dump, allow dumping of an object and all its > dependencies
* Release notes up to date as of today.Tom Lane2005-10-11
|
* Remove the DELETEs from pg_shadow and pg_group that pg_dumpall used toTom Lane2005-10-10
| | | | | | | | emit when given the --clean option, in favor of individual DROP ROLE commands. The old technique could not possibly work in 8.1, and was never a very good idea anyway IMHO. The DROP ROLE approach has the defect that the DROPs will fail for roles that own objects or have privileges, but perhaps we can improve that later.
* Fix a thinko in description of krb_server_hostname.Tom Lane2005-10-08
|
* Update:Bruce Momjian2005-10-07
| | | | | | | | < * Consider compressing indexes by storing key prefix values shared by > * Consider compressing indexes by storing key values duplicated in 735a736,737 > > This is difficult because it requires datatype-specific knowledge.
* Add:Bruce Momjian2005-10-07
| | | | | | < > * Consider compressing indexes by storing key prefix values shared by > several rows as a single index entry
* Minor tweaks for PL/PgSQL documentation.Neil Conway2005-10-06
|
* Revise pgstats stuff to fix the problems with not counting accessesTom Lane2005-10-06
| | | | | | | generated by bitmap index scans. Along the way, simplify and speed up the code for counting sequential and index scans; it was both confusing and inefficient to be taking care of that in the per-tuple loops, IMHO. initdb forced because of internal changes in pg_stat view definitions.
* Improve wording of entry.Bruce Momjian2005-10-05
|
* Update Japanese FAQ.Bruce Momjian2005-10-05
| | | | Jun Kuwamura
* Update FAQ for version number.Bruce Momjian2005-10-05
|
* Clean up some messages and fix missing translation support. Option --logPeter Eisentraut2005-10-04
| | | | renamed to --log-file for clarity.
* COPY's test for read-only transaction was backward; it prohibited COPY TOTom Lane2005-10-03
| | | | where it should prohibit COPY FROM. Found by Alon Goldshuv.
* Add a trace_sort option to help with measuring resource usage of externalTom Lane2005-10-03
| | | | sort operations. Per recent discussion. Simon Riggs and Tom Lane.
* Fix procedure for updating nextval() defaults so that it actually works.Tom Lane2005-10-03
| | | | Update release dates for pending back-branch releases.
* Fix font of sequence header.Bruce Momjian2005-10-03
|
* Fix null bytes at end of file (weird).Bruce Momjian2005-10-03
|
* Update sequence docs.Bruce Momjian2005-10-03
|
* Merge Tom and my descriptions of new sequence behavior into one entry.Bruce Momjian2005-10-03
|
* Update release notes to show how to upgrade a database to use the newBruce Momjian2005-10-03
| | | | early binding for nextval() calls in default clauses.
* Remove, 8.1 completed items already removed:Bruce Momjian2005-10-03
| | | | < * -Have sequence dependency track use of DEFAULT sequences
* Done:Bruce Momjian2005-10-03
| | | | | | < * Have sequence dependency track use of DEFAULT sequences, < seqname.nextval? > * -Have sequence dependency track use of DEFAULT sequences
* Change nextval and other sequence functions to specify their sequenceTom Lane2005-10-02
| | | | | | | | | | | | | | | argument as a 'regclass' value instead of a text string. The frontend conversion of text string to pg_class OID is now encapsulated as an implicitly-invocable coercion from text to regclass. This provides backwards compatibility to the old behavior when the sequence argument is explicitly typed as 'text'. When the argument is just an unadorned literal string, it will be taken as 'regclass', which means that the stored representation will be an OID. This solves longstanding problems with renaming sequences that are referenced in default expressions, as well as new-in-8.1 problems with renaming such sequences' schemas or moving them to another schema. All per recent discussion. Along the way, fix some rather serious problems in dbmirror's support for mirroring sequence operations (int4 vs int8 confusion for instance).
* Adjust wording.Bruce Momjian2005-10-01
|
* Change the option spelling to --connection-limit to be consistent with thePeter Eisentraut2005-09-30
| | | | SQL option spelling.
* Remove acronym in one title.Bruce Momjian2005-09-29
|
* Mention fix for bug #1916 in release notes for affected versions.Tom Lane2005-09-28
|
* Fix typo.Bruce Momjian2005-09-28
|
* Add section on reliable operation, talking about caching and storageBruce Momjian2005-09-28
| | | | subsystem reliability.
* Update SQL conformance mention to 2003.Bruce Momjian2005-09-28
|
* Update Russian FAQ.Bruce Momjian2005-09-28
| | | | Victor Vislobokov
* Add attribution.Bruce Momjian2005-09-27
|
* Done:Bruce Momjian2005-09-27
| | | | | < * +Add options to pg_config to show the share_dir, sysconfdir, < pkgincludedir, and localedir
* Fix problems with PGXS builds against an installation tree that wasTom Lane2005-09-27
| | | | | | | relocated after installation. We can't trust the installation paths inserted into Makefile.global by configure, so instead we must get the paths from pg_config. This requires extending pg_config to support all the separately-configurable path names, but that was on TODO anyway.
* Release notes up to date as of today.Bruce Momjian2005-09-27
|
* Add:Bruce Momjian2005-09-27
| | | | | > o Improve signal handling, > http://archives.postgresql.org/pgsql-patches/2005-06/msg00027.php
* Novice:Bruce Momjian2005-09-27
| | | | | < * Add options to pg_config to show the share_dir, sysconfdir, > * +Add options to pg_config to show the share_dir, sysconfdir,
* Create preliminary release notes for upcoming back-branch releases.Tom Lane2005-09-26
|
* Done:Bruce Momjian2005-09-26
| | | | | < * Allow protocol-level EXECUTE that is actually a fetch to appear < in the logs as a fetch rather than another execute
* Add:Bruce Momjian2005-09-26
| | | | | | > * Allow protocol-level BIND parameter values to be logged > * Allow protocol-level EXECUTE that is actually a fetch to appear > in the logs as a fetch rather than another execute
* Wording cleanup.Bruce Momjian2005-09-25
|
* Document why PQtrace and ecpg debug() can crash the application if theBruce Momjian2005-09-25
| | | | DLL compiles to not match the application.
* Cleanups for recent addition to log_connections documentation.Neil Conway2005-09-24
|
* Improve wording.Bruce Momjian2005-09-24
|
* Add mention of duplicate connection messages from psql, per Andrew.Bruce Momjian2005-09-24
|
* Update release notes for 4-byte UTF mappings.Bruce Momjian2005-09-24
|
* Document change in large object snapshotting behavior as a versionTom Lane2005-09-24
| | | | compatibility issue.