summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2008-03-19Support ALTER TYPE RENAME. Petr JelinekTom Lane
2008-03-18Arrange to "inline" SQL functions that appear in a query's FROM clause,Tom Lane
2008-03-17Enable probes to work with Mac OS X Leopard and other OSes that willPeter Eisentraut
2008-03-17Fix postgres --describe-config for guc enums, breakage noted by Alvaro.Magnus Hagander
2008-03-17Move ProcState definition into sinvaladt.c from sinvaladt.h, since it's notAlvaro Herrera
2008-03-17Fix TransactionIdIsCurrentTransactionId() to use binary search instead ofTom Lane
2008-03-16When creating a large hash index, pre-sort the index entries by estimatedTom Lane
2008-03-16Modify interactions between sinval.c and sinvaladt.c. The code that actuallyAlvaro Herrera
2008-03-16Some cleanups of enum-guc code, per comments from Tom.Magnus Hagander
2008-03-15Change hash index creation so that rather than always establishing exactlyTom Lane
2008-03-14Fix vacuum so that autovacuum is really not cancelled when doing an emergencyAlvaro Herrera
2008-03-13Fix heap_page_prune's problem with failing to send cache invalidationTom Lane
2008-03-11Make TransactionIdIsInProgress check transam.c's single-item XID status cacheTom Lane
2008-03-10Provide a build-time option to store large relations as single files, ratherTom Lane
2008-03-10Bump catversion from guc enum patch, which I forgot. Sorry!Magnus Hagander
2008-03-10Implement enum type for guc parameters, and convert a couple of existingMagnus Hagander
2008-03-10Reduce memory consumption during VACUUM of large relations, by usingTom Lane
2008-03-09Change patternsel() so that instead of switching from a pureTom Lane
2008-03-08Refactor heap_page_prune so that instead of changing item states on-the-fly,Tom Lane
2008-03-07This patch addresses some issues in TOAST compression strategy thatTom Lane
2008-03-04Fix PREPARE TRANSACTION to reject the case where the transaction has dropped aTom Lane
2008-02-29Remove long-unused and broken TCL_ARRAYS.Alvaro Herrera
2008-02-29Fix handling of restricted processes for Windows Vista (mainly),Magnus Hagander
2008-02-23Change the declaration of struct varlena so that the length word isTom Lane
2008-02-20Rename miscadmin.h's PG_VERSIONSTR macro to PG_BACKEND_VERSIONSTR toTom Lane
2008-02-18Added --htmldir option to pg_config, equivalent to the new configure option.Peter Eisentraut
2008-02-17Upgrade to Autoconf 2.61:Peter Eisentraut
2008-02-17Replace time_t with pg_time_t (same values, but always int64) in on-diskTom Lane
2008-02-14Sync our regex code with upstream changes since last time we did this, whichTom Lane
2008-02-13Stamp HEAD as 8.4devel.Tom Lane
2008-02-07Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane
2008-02-01Stamp 8.3 in CVS. _No_ update of configure/configure.in.Bruce Momjian
2008-01-30Add checks to TRUNCATE, CLUSTER, and REINDEX to prevent performing theseTom Lane
2008-01-26Change StatementCancelHandler() to check the DoingCommandRead flag to decideTom Lane
2008-01-24Change /contrib to contrib for consistency.Peter Eisentraut
2008-01-23Prevent integer overflow within the integer-datetimes version ofTom Lane
2008-01-21Fix RS_isRegis() to agree exactly with RS_compile()'s idea of what's a validTom Lane
2008-01-18Stamp release for 8.3RC2; configure will be stamped by packager.Bruce Momjian
2008-01-17Fix ALTER INDEX RENAME so that if the index belongs to a unique or primary keyTom Lane
2008-01-15Revise memory management for libxml calls. Instead of keeping libxml's dataTom Lane
2008-01-14Fix CREATE INDEX CONCURRENTLY so that it won't use synchronized scan forTom Lane
2008-01-11The original implementation of polymorphic aggregates didn't really get theTom Lane
2008-01-11Fix a conceptual error in my patch of 2007-10-26 that avoided consideringTom Lane
2008-01-09Fix CREATE INDEX CONCURRENTLY to not deadlock against an automatic or manualTom Lane
2008-01-09Fix some planner issues found while investigating Kevin Grittner's reportTom Lane
2008-01-09Don't enforce 32-bit time_t for FRONTEND apps. Fixes standaloneMagnus Hagander
2008-01-08lmgr.c:DescribeLockTag was never taught about virtual xids, per Greg Stark.Tom Lane
2008-01-03Stamp release 8.3RC1.REL8_3_RC1Tom Lane
2008-01-03Make standard maintenance operations (including VACUUM, ANALYZE, REINDEX,Tom Lane
2008-01-03Fix assorted security-grade bugs in the regex engine. All of these problemsTom Lane