summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2006-01-19Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path for AIX and Darwin.Bruce Momjian
2006-01-19Remove $(DESTDIR) from the pgxs BE_DLLLIBS= -L path.Bruce Momjian
2006-01-19Avoid crashing if relcache flush occurs while trying to load data into anTom Lane
2006-01-19Fix pgxs -L library path specification for Win32 and Cygwin, was /bin,Bruce Momjian
2006-01-19It turns out that TablespaceCreateDbspace fails badly if a relcache flushTom Lane
2006-01-19Fix a tiny memory leak (one List header) in RelationCacheInvalidate().Tom Lane
2006-01-18Modify pgstats code to reduce performance penalties from oversized stats dataTom Lane
2006-01-18Add a new system view, pg_cursors, that displays the currently availableNeil Conway
2006-01-17Fix fsync code to test whether F_FULLFSYNC is available, instead ofTom Lane
2006-01-17Data transferred binary is now put into the variables verbatim.Michael Meskes
2006-01-17Improve comments about btree's use of ScanKey data structures: thereTom Lane
2006-01-16Change the parameter_types column of the pg_prepared_statements to beNeil Conway
2006-01-15When using GCC on AMD64 and PPC, ECPGget_variable() takes a va_list *, notNeil Conway
2006-01-15Add regression tests to verify that domain constraints on parametersNeil Conway
2006-01-15Allow the types of parameters to PREPARE to be inferred. If a parameter'sNeil Conway
2006-01-14Some minor code cleanup, falling out from the removal of rtree. SK_NEGATETom Lane
2006-01-14Fix pg_ctl crash on "unregister" when a data directory is not specified.Peter Eisentraut
2006-01-14Add selectivity-calculation code for RowCompareExpr nodes. Simplistic,Tom Lane
2006-01-13Remove logic in XactLockTableWait() that attempted to mark a crashedTom Lane
2006-01-13Document that CREATE OPERATOR CLASS amounts to granting public executeTom Lane
2006-01-13Require the issuer of CREATE TYPE to own the functions mentioned in theTom Lane
2006-01-12We neglected to apply domain constraints on UNKNOWN parameters toNeil Conway
2006-01-12Clear up remaining compile warning for plperl on Windows.Andrew Dunstan
2006-01-12mbutils was previously doing some allocations, including invokingNeil Conway
2006-01-12Repair "Halloween problem" in EvalPlanQual: a tuple that's been inserted byTom Lane
2006-01-11Brace cleanup.Bruce Momjian
2006-01-11Create a standard function pg_sleep() to sleep for a specified amount of time.Tom Lane
2006-01-11Cosmetic code cleanup: fix a bunch of places that used "return (expr);"Neil Conway
2006-01-11Remove a confusing pair of parentheses.Neil Conway
2006-01-10Improve error messages for missing-FROM-entry cases, as per recent discussion.Tom Lane
2006-01-10Minor code clarity improvement: AFAICS, estate.eval_econtext must beNeil Conway
2006-01-10Improve patternsel() by applying the operator itself to each valueTom Lane
2006-01-10remove unneeded defines for uid_t and gid_t, which conflict with perl's typed...Andrew Dunstan
2006-01-10In PLy_function_build_args(), the code loops repeatedly, constructingNeil Conway
2006-01-09Fix pg_dump to add the required OPERATOR() decoration to schema-qualifiedTom Lane
2006-01-09Change allow_system_table_mods to PGC_POSTMASTER, restoring previousPeter Eisentraut
2006-01-09Minor code cleanup for PL/Python: fixup some strangely formatted comments,Neil Conway
2006-01-08Rationalise perl header inclusions via a common include file, which alsoAndrew Dunstan
2006-01-08Fix the assert_enabled issue properly. This eliminates the former ABITom Lane
2006-01-08Recent patch broke guc.c for non-USE_ASSERT_CHECKING case. PerTom Lane
2006-01-08Avoid leaking memory while reading toasted entries from pg_rewrite,Tom Lane
2006-01-08Add a new system view, pg_prepared_statements, that can be used toNeil Conway
2006-01-07Add RelationOpenSmgr() calls to ensure rd_smgr is valid when we try toTom Lane
2006-01-07Add comment explaining why RelationOpenSmgr() call is not needed.Tom Lane
2006-01-07During CatCacheRemoveCList, we must now remove any members that areTom Lane
2006-01-06Fix failure to apply domain constraints to a NULL constant that's added toTom Lane
2006-01-06Use RELKIND_COMPOSITE_TYPE rather than hardcoded 'c'.Bruce Momjian
2006-01-06Fix Windows-only postmaster code to reject a connection request and continue,Tom Lane
2006-01-06Convert Assert checking for empty page into a regular test and elog.Tom Lane
2006-01-06Fix ReadBuffer() to correctly handle the case where it's trying to extendTom Lane