summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2005-05-20Implement md5(bytea), update regression tests and documentation. PatchNeil Conway
2005-05-19Factor out lock cleanup code that is needed in several places in lock.c.Tom Lane
2005-05-19Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane
2005-05-17Extend the pg_locks system view so that it can fully display all lockTom Lane
2005-05-17Cleanup GiST header files. Since GiST extensions are often written asNeil Conway
2005-05-17GiST improvements:Neil Conway
2005-05-15Rename Rendezvous to Bonjour to match OS/X renaming.Bruce Momjian
2005-05-14Minor refactoring to eliminate duplicate code and make startup aTom Lane
2005-05-13Revise nodeMergejoin in light of example provided by Guillaume Smet.Tom Lane
2005-05-11This patch refactors away some duplicated code in the index AM buildNeil Conway
2005-05-11This patch reduces the size of the message header used by statisticsNeil Conway
2005-05-11Code cleanup: in C89, there is no point casting the first argument toNeil Conway
2005-05-10Back out check for unreferenced files.Bruce Momjian
2005-05-10Report index name on CLUSTER failure. Also, suggest ALTER TABLEBruce Momjian
2005-05-09Complete the following TODO items:Neil Conway
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-05-05Adjust nodeBitmapIndexscan to keep the target index opened from planTom Lane
2005-05-03Clean up MultiXactIdExpand's API by separating out the case where weTom Lane
2005-05-02Check the file system on postmaster startup and report any unreferencedBruce Momjian
2005-05-02Change SPI functions to use a `long' when specifying the number of tuplesNeil Conway
2005-05-01Change CREATE TYPE to require datatype output and send functions to haveTom Lane
2005-04-30Change catalog entries for record_out and record_send to show only oneTom Lane
2005-04-30Use the standard lock manager to establish priority order when thereTom Lane
2005-04-29Restructure LOCKTAG as per discussions of a couple months ago.Tom Lane
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
2005-04-25Replace slightly klugy create_bitmap_restriction() function with aTom Lane
2005-04-25Remove support for OR'd indexscans internal to a single IndexScan planTom Lane
2005-04-24Adjust nodeBitmapIndexscan.c to not keep the index open across calls,Tom Lane
2005-04-22First cut at planner support for bitmap index scans. Lots to do yet,Tom Lane
2005-04-21Rethink original decision to use AND/OR Expr nodes to represent bitmapTom Lane
2005-04-21Install some slightly realistic cost estimation for bitmap index scans.Tom Lane
2005-04-20Minor performance improvement: avoid unnecessary creation/unioning ofTom Lane
2005-04-19Create executor and planner-backend support for decoupled heap and indexTom Lane
2005-04-19Attached patch gets rid of the global timezone in the following steps:Bruce Momjian
2005-04-17Initial implementation of lossy-tuple-bitmap data structures.Tom Lane
2005-04-16Create a new 'MultiExecProcNode' call API for plan nodes that don'tTom Lane
2005-04-14Marginal hack to use a specialized hash function for dynahash hashtablesTom Lane
2005-04-14Completion of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom Lane
2005-04-13Simplify initdb-time assignment of OIDs as I proposed yesterday, andTom Lane
2005-04-13Change addRangeTableEntryForRelation() to take a Relation pointer insteadTom Lane
2005-04-13Revert yesterday's change to make pg_cast.h say 'OID = 0' in DATA entries.Tom Lane
2005-04-12Adjust pg_cast.h so that the OIDs assigned to built-in casts come fromTom Lane
2005-04-12Fix oversight in MIN/MAX optimization: must not return NULL entriesTom Lane
2005-04-12Add aggsortop column to pg_aggregate, so that MIN/MAX optimization canTom Lane
2005-04-11Create the planner mechanism for optimizing simple MIN and MAX queriesTom Lane
2005-04-11Fix interaction between materializing holdable cursors and firingTom Lane
2005-04-07Add a "USING" clause to DELETE, which is equivalent to the FROM clauseNeil Conway
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
2005-04-05plpgsql does OUT parameters, as per my proposal a few weeks ago.Tom Lane