summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2006-11-21Get rid of retail definitions of HAVE_STRDUP and HAVE_VSNPRINTF inTom Lane
2006-11-17Repair two related errors in heap_lock_tuple: it was failing to recognizeTom Lane
2006-11-08Tweak accumArrayResult() to double the size of its working arrays whenTom Lane
2006-11-07Tag as Beta3 ... two outstanding *known* bugs before RC1 ...REL8_2_BETA3PostgreSQL Daemon
2006-11-06Revert to the pre-8.2 method of probing for libm, that is, alwaysTom Lane
2006-11-05Fix recently-identified PITR recovery hazard: the base backup could containTom Lane
2006-11-05Fix recently-understood problems with handling of XID freezing, particularlyTom Lane
2006-11-01Fix "failed to re-find parent key" btree VACUUM failure by revising pageTom Lane
2006-10-23Stamp 8.2beta2.REL8_2_BETA2Tom Lane
2006-10-19Rename our substitute qsort to pg_qsort at the link-symbol level (butTom Lane
2006-10-19Further MSVC portability fixes from Magnus.Tom Lane
2006-10-19Clean up local redeclarations of variables with DLLIMPORT, per reportTom Lane
2006-10-18Fix up timetz input so that a date is required only when the specifiedTom 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-11Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane
2006-10-07On platforms that have getrlimit(RLIMIT_STACK), use it to ensure thatTom Lane
2006-10-06Fix SysCacheGetAttr() to handle the case where the specified syscache has notTom Lane
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-05Second try at fixing libedit configuration for Bob Friesenhahn.Tom Lane
2006-10-04Update Solaris strtod() bug comment.Bruce Momjian
2006-10-04Update Solaris strtol() bug comment.Bruce Momjian
2006-10-04Adjust configure's handling of libedit to not look for a history.h file.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-03The attached patch changes units of the some default values inBruce Momjian
2006-10-03Rearrange MSVC errcode hack, fix incorrect _MSC_VER test. MagnusTom Lane
2006-10-03Move WIN32_ONLY_COMPILER define from c.h to win32.h because it was beingBruce Momjian
2006-10-02Properly handle the case where strlcpy() exists in libc but isn'tTom Lane
2006-09-30BSD/OS doesn't have a prototype for strlcpy() but has the function, soBruce Momjian
2006-09-28Fix IS NULL and IS NOT NULL tests on row-valued expressions to conform toTom Lane
2006-09-27Add strlcpy() to the set of functions supported by src/port/ when notTom Lane
2006-09-27Remove separate strdup.h header file; it's redundant with port.h.Tom Lane
2006-09-25Increase default value of effective_cache_size to 128MB, per discussion.Tom Lane
2006-09-25Fix notice message from DROP FUNCTION IF EXISTS, and improve messageTom Lane
2006-09-23Tag us Beta1REL8_2_BETA1PostgreSQL Daemon
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-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-16Rename the recently-added pg_timezonenames view to pg_timezone_abbrevs,Tom Lane
2006-09-16Define errcode as __msvc_errcode not __vc_errcode for MSVC builds,Tom Lane
2006-09-14Add a couple of information functions to support direct checks on whetherTom Lane
2006-09-11Move set_pglocale_pgservice() from path.c to exec.c, so that pulling inTom Lane
2006-09-10If we're going to advertise the array overlap/containment operators,Tom Lane
2006-09-10Rename contains/contained-by operators to @> and <@, per discussion thatTom Lane