aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* One of the web pages mentioned in dmetaphone.c has moved. Also fixBruce Momjian2005-09-30
| | | | | | | | | | a few typos in comments. The dictionaries I checked list "altho" as a variant of "although," but I didn't find any other instances of the former in the source tree so I changed it. Michael Fuhr
* Equalize wordings to avoid redundant translation work.Peter Eisentraut2005-09-30
|
* Clean up the help displays.Peter Eisentraut2005-09-30
|
* Change the option spelling to --connection-limit to be consistent with thePeter Eisentraut2005-09-30
| | | | SQL option spelling.
* Fix confusion between relfilenode and Oid.Alvaro Herrera2005-09-29
| | | | | Also, make pg_total_relation_size include the size of the TOAST index.
* Fix unportable usages in new pgbench code (strndup, ctype macros)Tom Lane2005-09-29
|
* Add -f option which enables to read SQL commands from a file.Tatsuo Ishii2005-09-29
| | | | Patches Contributed by Tomoaki Sato.
* Correct spellingPeter Eisentraut2005-09-29
|
* Remove acronym in one title.Bruce Momjian2005-09-29
|
* Mention fix for bug #1916 in release notes for affected versions.Tom Lane2005-09-28
|
* Repair planning bug introduced in 7.4: outer-join ON clauses that referencedTom Lane2005-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 Momjian2005-09-28
|
* Add section on reliable operation, talking about caching and storageBruce Momjian2005-09-28
| | | | subsystem reliability.
* Improve messagesPeter Eisentraut2005-09-28
|
* 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
* 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