aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform toTom Lane2006-09-28
| | | | | | | | | | | | the SQL spec, viz IS NULL is true if all the row's fields are null, IS NOT NULL is true if all the row's fields are not null. The former coding got this right for a limited number of cases with IS NULL (ie, those where it could disassemble a ROW constructor at parse time), but was entirely wrong for IS NOT NULL. Per report from Teodor. I desisted from changing the behavior for arrays, since on closer inspection it's not clear that there's any support for that in the SQL spec. This probably needs more consideration.
* Add URL for client_encoding being set by client:Bruce Momjian2006-09-28
| | | | > http://archives.postgresql.org/pgsql-hackers/2006-08/msg01696.php
* Fix a couple other places that need to know about (some) src/port/ filesTom Lane2006-09-28
| | | | explicitly.
* Oops, forgot that libpq needs extra steps to make use of src/port/ files.Tom Lane2006-09-27
|
* Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane2006-09-27
| | | | | | | to performance. (A wholesale effort to get rid of strncpy should be undertaken sometime, but not during beta.) This commit also fixes dynahash.c to correctly truncate overlength string keys for hashtables, so that its callers don't have to anymore.
* Add strlcpy() to the set of functions supported by src/port/ when notTom Lane2006-09-27
| | | | | available directly on the platform. Per discussion, this function is sufficiently widely recognized to be treated as standard.
* Fix some misuses of strncat().Tom Lane2006-09-27
|
* Remove separate strdup.h header file; it's redundant with port.h.Tom Lane2006-09-27
|
* GiST stands for "Generalized Search Tree", and therefore should not beNeil Conway2006-09-27
| | | | spelled with a capital "I".
* Degrade the transaction-id wraparound point message from LOG to DEBUG1, perAlvaro Herrera2006-09-26
| | | | | | discussion. Patch from Simon Riggs.
* Update wording of inheritance major release item.Bruce Momjian2006-09-26
|
* Split out inheritance major feature item in release notes.Bruce Momjian2006-09-26
|
* Done:Bruce Momjian2006-09-26
| | | | | | | | | | | | | | | | < o Add command to archive partially filled write-ahead logs? [pitr] < < Currently only full WAL files are archived. This means that the < most recent transactions aren't available for recovery in case < of a disk failure. < Reorder: < o %Create dump tool for write-ahead logs for use in determining < transaction id for point-in-time recovery > o %Create dump tool for write-ahead logs for use in determining > transaction id for point-in-time recovery
* Added new filesMichael Meskes2006-09-26
|
* Added Joachim's changes for MinGW.Michael Meskes2006-09-26
| | | | Added SET DATESTYLE to one test so the output format is defined.
* Increase default value of effective_cache_size to 128MB, per discussion.Tom Lane2006-09-25
|
* Add a check to prevent overwriting valid data if smgrnblocks() gives aTom Lane2006-09-25
| | | | | | wrong answer, as has been seen to occur with a buggy Linux kernel. Not really our bug, but it's a simple test in a seldom-used control path, so might as well have a defense.
* More incremental improvements for the release notes.Neil Conway2006-09-25
|
* no-data-for-failed-tables is a pg_restore option, not a pg_dump option.Tom Lane2006-09-25
|
* Fix notice message from DROP FUNCTION IF EXISTS, and improve messageTom Lane2006-09-25
| | | | for DROP AGGREGATE IF EXISTS. Per report from Teodor.
* Fix name, "Laurenz Albe" at request of author.Bruce Momjian2006-09-25
|
* Minor incremental improvements to the release notes.Neil Conway2006-09-24
|
* Fix incorrect mapping of fopen mode 'a' in recently-added code toTom Lane2006-09-24
| | | | make fopen work safely on Windows. Magnus
* Cause pg_regress to invoke the temporary postmaster as 'postgres' notTom Lane2006-09-24
| | | | | | 'postmaster', so as not to depend on the existence of the postmaster symlink. Also, implement postmaster-still-alive and postmaster-kill operations for Windows, per Magnus.
* Suppress useless warning on pre-XP versions of Windows. MagnusTom Lane2006-09-24
|
* Tag us Beta1REL8_2_BETA1PostgreSQL Daemon2006-09-23
|
* Fix pg_locks view to call advisory locks advisory locks, while preservingTom Lane2006-09-22
| | | | | backward compatibility for anyone using the old userlock code that's now on pgfoundry --- locks from that code still show as 'userlock'.
* Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane2006-09-22
| | | | | | | | | return true for exactly the characters treated as whitespace by their flex scanners. Per report from Victor Snezhko and subsequent investigation. Also fix a passel of unsafe usages of <ctype.h> functions, that is, ye olde char-vs-unsigned-char issue. I won't miss <ctype.h> when we are finally able to stop using it.
* Surely this temp buffer needn't be static.Tom Lane2006-09-22
|
* Rearrange yes/no prompting code so that the prompts always show thePeter Eisentraut2006-09-22
| | | | | | | (possibly (un)translated) letters that are actually expected as input. Also reject invalid responses instead of silenty taken them as "no". with help from Bernd Helmle
* Add to major release notes items, per Simon.Bruce Momjian2006-09-22
|
* Add units to the default postgresql.conf. For the most part, this shouldPeter Eisentraut2006-09-22
| | | | | match what SHOW displays as default value, to make the user experience uniform.
* Move incorrectly-located indexterm entry.Tom Lane2006-09-22
|
* Update timezone documentation to reflect current reality: instead ofTom Lane2006-09-22
| | | | | giving tables of known timezone names, refer the user to the system views. Joachim Wieland
* Update release notes to only use HTML4 entities.Bruce Momjian2006-09-22
| | | | Add URL's to mention proper entity lists.
* We're going to have to spell dotless i as plain i, because dotless i isTom Lane2006-09-22
| | | | | | not in the character set supported by DocBook nor standard HTML. (Sorry Volkan.) Also replace random character-set references by a pointer to the actual standard.
* Fix a lot of broken markup.Tom Lane2006-09-22
|
* Update release notes to be current as of CVS today.Bruce Momjian2006-09-22
|
* Update major release note items.Bruce Momjian2006-09-22
|
* First try at a major features list for 8.2.Bruce Momjian2006-09-22
|
* Fix free space map to correctly track the total amount of FSM space neededTom Lane2006-09-21
| | | | | | | even when a single relation requires more than max_fsm_pages pages. Also, make VACUUM emit a warning in this case, since it likely means that VACUUM FULL or other drastic corrective measure is needed. Per reports from Jeff Frost and others of unexpected changes in the claimed max_fsm_pages need.
* Add comments about STORAGE option for GINTeodor Sigaev2006-09-21
|
* Fix table's captionTeodor Sigaev2006-09-21
|
* Updated several parts in particular variable handling. This is work that was ↵Michael Meskes2006-09-21
| | | | part of SoC.
* Wording changes for continuous archving, per Simon.Bruce Momjian2006-09-21
|
* Add documentation for new in-core advisory lock functions. Merlin MoncureTom Lane2006-09-20
|
* Add URL for domain casting:Bruce Momjian2006-09-20
| | | | > http://archives.postgresql.org/pgsql-hackers/2006-09/msg01681.php
* Update release notes to use scaron, rather than numeric code for entity.Bruce Momjian2006-09-20
|
* Fix bogus markup.Tom Lane2006-09-20
|
* Add AIX shared library support item to release notes.Bruce Momjian2006-09-20
|