aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Fix yesno_prompt() memory leak in /script tools, reported by Converity.Bruce Momjian2006-10-03
|
* Improve numeric overflow error message.Bruce Momjian2006-10-03
| | | | David Fetter
* Make some sentences consistent with similar ones.Bruce Momjian2006-10-03
| | | | Euler Taveira de Oliveira
* Improve readline psql prompt suggestion.Bruce Momjian2006-10-03
| | | | Andreas Seltenreich
* Add experimental support for db2x texinfoBruce Momjian2006-10-03
| | | | Andreas Seltenreich
* The attached patch changes units of the some default values inBruce Momjian2006-10-03
| | | | | | | | | | | | | | | | | | | postgresql.conf. - shared_buffers = 32000kB => 32MB - temp_buffers = 8000kB => 8MB - wal_buffers = 8 => 64kB The code of initdb was a bit modified to write MB-unit values. Values greater than 8000kB are rounded out to MB. GUC_UNIT_XBLOCKS is added for wal_buffers. It is like GUC_UNIT_BLOCKS, but uses XLOG_BLCKSZ instead of BLCKSZ. Also, I cleaned up the test of GUC_UNIT_* flags in preparation to add more unit flags in less bits. ITAGAKI Takahiro
* Cleanup pgwin32_open() 'if' test, and avoid possible error.Bruce Momjian2006-10-03
|
* Rearrange MSVC errcode hack, fix incorrect _MSC_VER test. MagnusTom Lane2006-10-03
|
* Move WIN32_ONLY_COMPILER define from c.h to win32.h because it was beingBruce Momjian2006-10-03
| | | | defined too late.
* This patch fixes a small typo in information_schema.sgml.Bruce Momjian2006-10-03
| | | | Guillaume Lelarge
* Mention in postgresql.conf that autovacuum also needsBruce Momjian2006-10-03
| | | | | | stats_start_collector and stats_row_level to also be on David Wheeler
* Add URL for strlcpy():Bruce Momjian2006-10-03
| | | | | > > http://archives.postgresql.org/pgsql-hackers/2006-09/msg02108.php
* Add:Bruce Momjian2006-10-03
| | | | | > * Fix SSL retry to avoid useless repeated connection attempts and > ensuing misleading error messages
* Add URL about strlcpy() creation history.Bruce Momjian2006-10-02
|
* Update wording:Bruce Momjian2006-10-02
| | | | | < * Use strlcpy() rather than StrNCpy() macro > * Use strlcpy() rather than our StrNCpy() macro
* Add:Bruce Momjian2006-10-02
| | | | | > > * Use strlcpy() rather than StrNCpy() macro
* Remove mention of the -fast option from the Solaris FAQ.Bruce Momjian2006-10-02
| | | | Kenneth Marshall
* Update recovery documentation.Bruce Momjian2006-10-02
| | | | Simon Riggs
* Update tsearch2 README.Bruce Momjian2006-10-02
| | | | Robert Treat
* Add URL for cached copy of paper as SGML comment.Bruce Momjian2006-10-02
|
* Add release note item:Bruce Momjian2006-10-02
| | | | | Drop privileges on startup so servers can be started from an administrative account (Magnus)
* Move "Exotic Features" to the bottom of TODO.Bruce Momjian2006-10-02
|
* Properly handle the case where strlcpy() exists in libc but isn'tTom Lane2006-10-02
| | | | | declared in the system headers. Per report from Bruce than some BSDen are like this.
* Improve documentation of configure's readline/libedit switches.Tom Lane2006-10-01
|
* Make some marginal performance improvements in reportErrorPosition(),Tom Lane2006-10-01
| | | | | | | | which turns out to be a dominant part of the runtime in scenarios involving lots of parse-time warnings (such as Stephen Frost's example of an INSERT with a lot of backslash-containing strings). There's not a whole lot we can do about the character-at-a-time scanning, but we can at least avoid traversing the query twice.
* Do a CHECK_FOR_INTERRUPTS after emitting a message of less than ERRORTom Lane2006-10-01
| | | | | | | severity. This is to ensure the user can cancel a query that's spitting out lots of notice/warning messages, even if they're coming from a loop that doesn't otherwise contain a CHECK_FOR_INTERRUPTS. Per gripe from Stephen Frost.
* date_trunc also accepts 'quarter'. Noted by Yoshihisa Nakano.Tom Lane2006-10-01
|
* Remove accented characters in comments, to avoid failures when thisTom Lane2006-10-01
| | | | | file is read with an incompatible client_encoding setting. Per report from Tim N. van der Leeuw.
* Fix overly enthusiastic Assert introduced in 8.1: it's expecting aTom Lane2006-10-01
| | | | | CaseTestExpr, but forgot that the optimizer is sometimes able to replace CaseTestExpr by Const.
* Suppress compiler warnings.Tom Lane2006-09-30
|
* uninstall script for sslinfoTom Lane2006-09-30
|
* uninstall script for pg_freespacemapTom Lane2006-09-30
|
* uninstall script for pgrowlocks - Josh DrakeTom Lane2006-09-30
|
* Add uninstall script for adminpack - Josh DrakeTom Lane2006-09-30
|
* BSD/OS doesn't have a prototype for strlcpy() but has the function, soBruce Momjian2006-09-30
| | | | work around that with defines.
* Add:Bruce Momjian2006-09-30
| | | | | | | | | | > * Allow more complex user/database default GUC settings > Currently, ALTER USER and ALTER DATABASE support per-user and > per-database defaults. Consider adding per-user-and-database > defaults so things like search_path can be defaulted for a > specific user connecting to a specific database. > >
* Add MONEY URL:Bruce Momjian2006-09-30
| | | | > http://archives.postgresql.org/pgsql-hackers/2006-09/msg01107.php
* Allow assignment to array elements not contiguous with those alreadyTom Lane2006-09-29
| | | | | | | | | | present; intervening positions are filled with nulls. This behavior is required by SQL99 but was not implementable before 8.2 due to lack of support for nulls in arrays. I have only made it work for the one-dimensional case, which is all that SQL99 requires. It seems quite complex to get it right in higher dimensions, and since we never allowed extension at all in higher dimensions, I think that must count as a future feature addition not a bug fix.
* Remove duplicate (and now incorrect) documentation for row-wise IS [NOT]Tom Lane2006-09-29
| | | | NULL. Noted by Teodor.
* 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
|