summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2006-10-19Work around reported problem that AIX's getaddrinfo() doesn't seem to zeroTom Lane
2006-10-18Add some code to CREATE DATABASE to check for pre-existing subdirectoriesTom Lane
2006-10-18Fix up timetz input so that a date is required only when the specifiedTom Lane
2006-10-17Fix up some problems in handling of zic-style time zone names in datetimeTom Lane
2006-10-15Redesign the patch for allocation of shmem space and LWLocks for add-onTom Lane
2006-10-13Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane
2006-10-13Fix infinite sleep and failes of send in Win32.Teodor Sigaev
2006-10-12Fix mishandling of after-trigger state when a SQL function returns multipleTom Lane
2006-10-11Update pg_hba.conf comment about documentation section.Bruce Momjian
2006-10-11Repair incorrect check for coercion of unknown literal to ANYARRAY, a bugTom Lane
2006-10-11Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane
2006-10-08Update Darwin dlopen() support to avoid deprecation warnings with latestTom Lane
2006-10-08Add include needed for new getrusage() call.Bruce Momjian
2006-10-08On Windows, we know the backend stack size limit because we have toTom Lane
2006-10-07Added missing entry (CASCADED) in keywords table.Peter Eisentraut
2006-10-07When planning a query at Bind time, be careful to pass the correctTom Lane
2006-10-07On platforms that have getrlimit(RLIMIT_STACK), use it to ensure thatTom Lane
2006-10-07Adjust HINT for stack depth limit to mention checking the underlyingTom Lane
2006-10-07Fix string_to_array() to correctly handle the case where there areTom Lane
2006-10-06Fix SysCacheGetAttr() to handle the case where the specified syscache has notTom Lane
2006-10-06Message style improvementsPeter Eisentraut
2006-10-05Cleanup for pglz_compress code: remove dead code, const-ify API ofTom Lane
2006-10-05Make use of qsort_arg in several places that were formerly using klugyTom Lane
2006-10-05Work around buggy strtod on (some versions of?) IRIX. Combination ofTom Lane
2006-10-04Fix comment to agree with presentation.Tom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-10-03Switch over to using our own qsort() all the time, as has been proposedTom Lane
2006-10-03Improve numeric overflow error message.Bruce Momjian
2006-10-03Make some sentences consistent with similar ones.Bruce Momjian
2006-10-03The attached patch changes units of the some default values inBruce Momjian
2006-10-03Mention in postgresql.conf that autovacuum also needsBruce Momjian
2006-10-01Do a CHECK_FOR_INTERRUPTS after emitting a message of less than ERRORTom Lane
2006-10-01Fix overly enthusiastic Assert introduced in 8.1: it's expecting aTom Lane
2006-09-29Allow assignment to array elements not contiguous with those alreadyTom Lane
2006-09-28Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform toTom Lane
2006-09-27Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane
2006-09-26Degrade the transaction-id wraparound point message from LOG to DEBUG1, perAlvaro Herrera
2006-09-25Increase default value of effective_cache_size to 128MB, per discussion.Tom Lane
2006-09-25Add a check to prevent overwriting valid data if smgrnblocks() gives aTom Lane
2006-09-25Fix notice message from DROP FUNCTION IF EXISTS, and improve messageTom Lane
2006-09-22Fix pg_locks view to call advisory locks advisory locks, while preservingTom Lane
2006-09-22Fix bugs in plpgsql and ecpg caused by assuming that isspace() would onlyTom Lane
2006-09-22Add units to the default postgresql.conf. For the most part, this shouldPeter Eisentraut
2006-09-21Fix free space map to correctly track the total amount of FSM space neededTom Lane
2006-09-20Change patternsel (LIKE/regex selectivity estimation) so that if thereTom Lane
2006-09-19Improve usage of effective_cache_size parameter by assuming that all theTom Lane
2006-09-18Add built-in userlock manipulation functions to replace the formerTom Lane
2006-09-18Fix problems with column name list of CREATE TABLE AS being applied toTom Lane
2006-09-18Fix CREATE TABLE ... AS VALUES ... to work rather than Assert'ing;Tom Lane
2006-09-17Change ANALYZE to take ShareUpdateExclusiveLock not AccessShareLock onTom Lane