aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Done:Bruce Momjian2005-09-27
| | | | | < * +Add options to pg_config to show the share_dir, sysconfdir, < pkgincludedir, and localedir
* Some marginal tweaks to make 'make installcheck' mostly work whenTom Lane2005-09-27
| | | | | building contrib with USE_PGXS. To make it work all the way, the pg_regress script would need to be included in the installation tree.
* 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
|
* Suppress FAQ and TODO changes in pgcvslog output.Bruce Momjian2005-09-27
|
* PGXS should be set with := not =, as specified in the documentation,Tom Lane2005-09-27
| | | | to avoid useless multiple executions of pg_config.
* Fix incorrect psql \x memory allocation for numericlocale. Redesign APIBruce Momjian2005-09-27
| | | | to be less error-prone.
* 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,
* Fix our version of strdup() to adhere to the standard semantics forTom Lane2005-09-27
| | | | | out-of-memory --- that is, return NULL rather than dumping core. Noted by Qingqing Zhou.
* Create preliminary release notes for upcoming back-branch releases.Tom Lane2005-09-26
|
* Rename variable for clarity.Bruce Momjian2005-09-26
|
* Don't need gettext calls around debug messages.Peter Eisentraut2005-09-26
|
* Prevent threaded python build on BSD's, where it fails.Bruce Momjian2005-09-26
| | | | Marko Kreen
* 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
* Log protocol-excute fetch operatation as fetch, rather than execute,Bruce Momjian2005-09-26
| | | | adjusted from a patch by Simon.
* 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
* The original patch to avoid building a hash join's hashtable when theTom Lane2005-09-25
| | | | | | | | outer relation is empty did not work, per test case from Patrick Welche. It tried to use nodeHashjoin.c's high-level mechanisms for fetching an outer-relation tuple, but that code expected the hash table to be filled already. As patched, the code failed in corner cases such as having no outer-relation tuples for the first hash batch. Revert and rewrite.
* 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
|
* Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane2005-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
|
* Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.Tom Lane2005-09-24
|
* Document change in large object snapshotting behavior as a versionTom Lane2005-09-24
| | | | compatibility issue.
* Suppress signed-vs-unsigned-char warnings in contrib.Tom Lane2005-09-24
|
* Suppress signed-vs-unsigned-char warnings.Tom Lane2005-09-24
|
* In a machine where INT64_IS_BUSTED, we can only support 32-bit valuesTom Lane2005-09-24
| | | | | | | for int8 and related types. However we might be talking to a client that has working int64; so pq_getmsgint64 really needs to check the incoming value and throw an overflow error if we can't represent it accurately.
* Add comments explaining clauses used by CREATE ROLE but not ALTER.Bruce Momjian2005-09-23
|
* Add:Bruce Momjian2005-09-23
| | | | > * Simplify dropping roles that have objects in several databases
* Add:Bruce Momjian2005-09-23
| | | | > o Allow PL/PgSQL to support WITH HOLD cursors
* Add:Bruce Momjian2005-09-23
| | | | | | | | > > o Display IN, INOUT, and OUT parameters in \df+ > > It probably requires psql to output newlines in the proper > column, which is already on the TODO list.
* Remove xid wraparound mention, because it was already done in 8.0, per Neil.Bruce Momjian2005-09-23
|
* Fix typo in comment.Tom Lane2005-09-23
|
* Document that chkpass ignores password characters after the eighth.Tom Lane2005-09-23
|
* Add:Bruce Momjian2005-09-23
| | | | > * Add function to report the time of the most recent server reload
* Add:Bruce Momjian2005-09-23
| | | | | | > * Add options to pg_config to show the share_dir, sysconfdir, > pkgincludedir, and localedir >
* Clarify autovacuum wording.Bruce Momjian2005-09-23
|
* Please find attached a patch which tells about what the spiffy,Bruce Momjian2005-09-23
| | | | | | integrated autovacuum now does :) David Fetter
* Mention that autovacuum also needs stats.Bruce Momjian2005-09-23
|
* Attached patch takes a swing at improving the autovacuum wording inBruce Momjian2005-09-23
| | | | | | | | maintenance.sgml. Robert Treat [ Also fix create domain markup.]
* Add warning about DOMAINs.Bruce Momjian2005-09-22
| | | | David Fetter
* Add:Bruce Momjian2005-09-22
| | | | | | > * Allow CREATE INDEX to take an additional parameter for use with > special index types >
* Move table constraint patch up into the main new features section of theBruce Momjian2005-09-22
| | | | release notes.
* Fix bug introduced into indexable_outerrelids() by an ill-consideredTom Lane2005-09-22
| | | | | | | | | | "optimization". When we find a potentially useful joinclause, we have to add all its other required_relids to the result, not only the other clause_relids. They are different in the case of a joinclause whose applicability has to be postponed due to outer join. We have to include the extra rels because otherwise, after best_inner_indexscan masks the join rels with index_outer_relids, it will always fail to find the joinclause as applicable. Per report from Husam Tomeh.
* Add "basic" for table partitioning.Bruce Momjian2005-09-22
|
* Add instructions.Bruce Momjian2005-09-22
|
* Add "codelines" script to compute number of lines in a releaes.Bruce Momjian2005-09-22
|