Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Repair planning bug introduced in 7.4: outer-join ON clauses that referenced | Tom Lane | 2005-09-28 | |
| | | | | | | only the inner-side relation would be considered as potential equijoin clauses, which is wrong because the condition doesn't necessarily hold above the point of the outer join. Per test case from Kevin Grittner (bug#1916). | |||
* | Fix typo. | Bruce Momjian | 2005-09-28 | |
| | ||||
* | Add section on reliable operation, talking about caching and storage | Bruce Momjian | 2005-09-28 | |
| | | | | subsystem reliability. | |||
* | Improve messages | Peter Eisentraut | 2005-09-28 | |
| | ||||
* | Update SQL conformance mention to 2003. | Bruce Momjian | 2005-09-28 | |
| | ||||
* | Update Russian FAQ. | Bruce Momjian | 2005-09-28 | |
| | | | | Victor Vislobokov | |||
* | Add attribution. | Bruce Momjian | 2005-09-27 | |
| | ||||
* | Done: | Bruce Momjian | 2005-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 when | Tom Lane | 2005-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 was | Tom Lane | 2005-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 Momjian | 2005-09-27 | |
| | ||||
* | Suppress FAQ and TODO changes in pgcvslog output. | Bruce Momjian | 2005-09-27 | |
| | ||||
* | PGXS should be set with := not =, as specified in the documentation, | Tom Lane | 2005-09-27 | |
| | | | | to avoid useless multiple executions of pg_config. | |||
* | Fix incorrect psql \x memory allocation for numericlocale. Redesign API | Bruce Momjian | 2005-09-27 | |
| | | | | to be less error-prone. | |||
* | Add: | Bruce Momjian | 2005-09-27 | |
| | | | | | > o Improve signal handling, > http://archives.postgresql.org/pgsql-patches/2005-06/msg00027.php | |||
* | Novice: | Bruce Momjian | 2005-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 for | Tom Lane | 2005-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 Lane | 2005-09-26 | |
| | ||||
* | Rename variable for clarity. | Bruce Momjian | 2005-09-26 | |
| | ||||
* | Don't need gettext calls around debug messages. | Peter Eisentraut | 2005-09-26 | |
| | ||||
* | Prevent threaded python build on BSD's, where it fails. | Bruce Momjian | 2005-09-26 | |
| | | | | Marko Kreen | |||
* | Done: | Bruce Momjian | 2005-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 Momjian | 2005-09-26 | |
| | | | | adjusted from a patch by Simon. | |||
* | Add: | Bruce Momjian | 2005-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 the | Tom Lane | 2005-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 Momjian | 2005-09-25 | |
| | ||||
* | Document why PQtrace and ecpg debug() can crash the application if the | Bruce Momjian | 2005-09-25 | |
| | | | | DLL compiles to not match the application. | |||
* | Cleanups for recent addition to log_connections documentation. | Neil Conway | 2005-09-24 | |
| | ||||
* | Improve wording. | Bruce Momjian | 2005-09-24 | |
| | ||||
* | Clean up possibly-uninitialized-variable warnings reported by gcc 4.x. | Tom Lane | 2005-09-24 | |
| | ||||
* | Add mention of duplicate connection messages from psql, per Andrew. | Bruce Momjian | 2005-09-24 | |
| | ||||
* | Update release notes for 4-byte UTF mappings. | Bruce Momjian | 2005-09-24 | |
| | ||||
* | Clean up possibly-uninitialized-variable warnings reported by gcc 4.x. | Tom Lane | 2005-09-24 | |
| | ||||
* | Document change in large object snapshotting behavior as a version | Tom Lane | 2005-09-24 | |
| | | | | compatibility issue. | |||
* | Suppress signed-vs-unsigned-char warnings in contrib. | Tom Lane | 2005-09-24 | |
| | ||||
* | Suppress signed-vs-unsigned-char warnings. | Tom Lane | 2005-09-24 | |
| | ||||
* | In a machine where INT64_IS_BUSTED, we can only support 32-bit values | Tom Lane | 2005-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 Momjian | 2005-09-23 | |
| | ||||
* | Add: | Bruce Momjian | 2005-09-23 | |
| | | | | > * Simplify dropping roles that have objects in several databases | |||
* | Add: | Bruce Momjian | 2005-09-23 | |
| | | | | > o Allow PL/PgSQL to support WITH HOLD cursors | |||
* | Add: | Bruce Momjian | 2005-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 Momjian | 2005-09-23 | |
| | ||||
* | Fix typo in comment. | Tom Lane | 2005-09-23 | |
| | ||||
* | Document that chkpass ignores password characters after the eighth. | Tom Lane | 2005-09-23 | |
| | ||||
* | Add: | Bruce Momjian | 2005-09-23 | |
| | | | | > * Add function to report the time of the most recent server reload | |||
* | Add: | Bruce Momjian | 2005-09-23 | |
| | | | | | | > * Add options to pg_config to show the share_dir, sysconfdir, > pkgincludedir, and localedir > | |||
* | Clarify autovacuum wording. | Bruce Momjian | 2005-09-23 | |
| | ||||
* | Please find attached a patch which tells about what the spiffy, | Bruce Momjian | 2005-09-23 | |
| | | | | | | integrated autovacuum now does :) David Fetter | |||
* | Mention that autovacuum also needs stats. | Bruce Momjian | 2005-09-23 | |
| | ||||
* | Attached patch takes a swing at improving the autovacuum wording in | Bruce Momjian | 2005-09-23 | |
| | | | | | | | | maintenance.sgml. Robert Treat [ Also fix create domain markup.] |