aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Add "codelines" script to compute number of lines in a releaes.Bruce Momjian2005-09-22
|
* Add:Bruce Momjian2005-09-22
| | | | | > > Another idea would be to allow actual SELECT queries in a COPY.
* pgindent new GIST index code, per request from Tom.Bruce Momjian2005-09-22
|
* Adjust GiST error messages to conform to message style guidelines.Tom Lane2005-09-22
|
* Take exclusive buffer lock in scan_heap() to eliminate some corner casesTom Lane2005-09-22
| | | | | | | | in which invalid page data could be transiently written to disk by concurrent bgwriter activity. There doesn't seem any risk of loss of actual user data, but an empty page could possibly be left corrupt if a crash occurs before the correct data gets written out. Pointed out by Alvaro Herrera.
* This patch cleans up the access to members of ItemIdData.Bruce Momjian2005-09-22
| | | | | | It uses existing macros instead of touching directly. ITAGAKI Takahiro
* Add:Bruce Momjian2005-09-22
| | | | | | > > o Allow COPY to output from views >
* Fix psql \x by removing puts().Bruce Momjian2005-09-22
| | | | Greg Sabino Mullane
* Suppress port number for unix domain sockets in log connect/disconnectBruce Momjian2005-09-22
| | | | messages.
* Remove some dead code.Tom Lane2005-09-22
|
* Fix postgresql.conf lexer to accept doubled single quotes in literalTom Lane2005-09-21
| | | | | | strings. This is consistent with SQL conventions, and since Bruce already changed initdb in a way that assumed it worked like this, seems we'd better make it work like this.
* Suppress database dump item when --table and/or --schema switch wasTom Lane2005-09-21
| | | | given, per gripe from Michael Fuhr.
* optimize_minmax_aggregates() neglected to check for inherited tables.Tom Lane2005-09-21
| | | | Per report from Cesar Paipilla.
* Fix interaction between psql \set AUTOCOMMIT and "ON_ERROR_ROLLBACK"Bruce Momjian2005-09-20
| | | | by properly updating transaction state after AUTOCOMMIT.
* Merge items:Bruce Momjian2005-09-20
| | | | | | | | < This would be beneficial when there are few distinct values. > This would be beneficial when there are few distinct values. This is > already used by GROUP BY. 946d946 < * Allow DISTINCT to use hashing like GROUP BY
* Return proper value for psql -f filename failure if filename open fails.Bruce Momjian2005-09-20
| | | | Backpatch to 8.0.X.
* autovacuum setting false -> off, for consistencyBruce Momjian2005-09-20
|
* Fix typo:Bruce Momjian2005-09-20
| | | | | < * Allow WAL traffic to be steamed to another server for stand-by > * Allow WAL traffic to be streamed to another server for stand-by
* Add:Bruce Momjian2005-09-20
| | | | > * Allow DISTINCT to use hashing like GROUP BY
* Update profile file location.Bruce Momjian2005-09-20
|
* Add:Bruce Momjian2005-09-20
| | | | | > * Allow WAL traffic to be steamed to another server for stand-by > replication
* Remove:Bruce Momjian2005-09-19
| | | | < * Research use of sched_yield() for spinlock acquisition failure
* Print proper cause of statement cancel, user interaction or timeout.Bruce Momjian2005-09-19
|
* update timestamp on file.Bruce Momjian2005-09-19
|
* Clarify some error messagesPeter Eisentraut2005-09-18
|
* Fix typo in link label, per Evgeny Gridasov.Tom Lane2005-09-18
|
* Add:Bruce Momjian2005-09-17
| | | | | | > 1032a1034 > * Remove BeOS and QNX-specific code
* Add:Bruce Momjian2005-09-16
| | | | > o Fix SELECT INTERVAL '1' MONTH
* Adjust regression for new cancel query message.Bruce Momjian2005-09-16
|
* Update query cancel message:Bruce Momjian2005-09-16
| | | | errmsg("canceling query due to user request or statement timeout")));
* Adjust bcc to work for thread changes.Bruce Momjian2005-09-16
|
* This correction is required of nmake of Windows.Bruce Momjian2005-09-16
| | | | Hiroshi Saito
* Update numbering.Bruce Momjian2005-09-16
| | | | Michael Fuhr
* Add:Bruce Momjian2005-09-16
| | | | | < > * Update Bonjour to work with newer cross-platform SDK
* tag it all beta2 ...REL8_1_0BETA2PostgreSQL Daemon2005-09-16
|
* Update wording:Bruce Momjian2005-09-16
| | | | | | | | | | | < 390d388 < 453c451 < removed or have its heap and index files truncated. One > be removed or have its heap and index files truncated. One < * Use a phantom command counter for nested subtransactions to reduce < per-tuple overhead
* Small fixesTeodor Sigaev2005-09-16
|
* Add:Bruce Momjian2005-09-16
| | | | > o Add single-step debugging of PL/PgSQL functions
* Rename pg_complete_relation_size() to pg_total_relation_size(), for theNeil Conway2005-09-16
| | | | | | | | | | | | | | sake of brevity and clarity. Make pg_reload_conf(), pg_rotate_logfile(), and pg_cancel_backend() return a boolean rather than an integer to indicate success or failure. Along the way, make some minor cleanups to dbsize.c -- in particular, use elog() rather than ereport() for "shouldn't happen" error conditions, and remove some of the more flagrant violations of the Postgres indentation conventions. Catalog version bumped.
* Update two comments to refer to use the new list API names.Neil Conway2005-09-16
|
* Update release notes for changes between beta1 and beta2.Tom Lane2005-09-16
|
* Add note about pg_autovacuum settings not being saved on a dump, perAlvaro Herrera2005-09-16
| | | | Robert Treat.
* Force the size and alignment of LWLock array entries to be either 16 or 32Tom Lane2005-09-16
| | | | | | | bytes. This shouldn't make any difference on x86 machines, where the size happened to be 16 bytes anyway, but on 64-bit machines and machines with slock_t int or wider, it will speed array indexing and hopefully reduce SMP cache contention effects. Per recent experimentation.
* Copy-editing for GiST README.Neil Conway2005-09-15
|
* Readme about GiST's algorithmsTeodor Sigaev2005-09-15
|
* 1 Update Snowball sourcesTeodor Sigaev2005-09-15
| | | | 2 Makefile fixes
* Various documentation improvements. Add a lot of index entries forNeil Conway2005-09-14
| | | | | | | | | the builtin functions (although some more entries are still needed), and remove the duplicate index entries that have been causing collateindex.pl warnings. Consistently use "int" and "bigint", rather than a mix of "int", "integer", "int4", "bigint", and "int8". Make parenthesis style in syntax examples more consistent. Various copy-editing for newly-added documentation and SGML markup fixes.
* Tweak the PL/PgSQL regression tests to catch the recently reported bugNeil Conway2005-09-14
| | | | in parsing cursor declarations.
* Fix recent breakage of decl_cursor_arglist syntax, per Michael Paesold.Tom Lane2005-09-14
|
* Fix make_tuple_from_row to support nested rowtypes, per gripe fromTom Lane2005-09-13
| | | | Roman Neuhauser. Update some obsolete comments for exec_eval_datum, too.