summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2005-06-04Remove unused 'printCost' field from ExplainState, and simplify the codeNeil Conway
2005-06-03Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane
2005-06-02Add support for \x hex escapes in COPY.Bruce Momjian
2005-05-30When enqueueing after-row triggers for updates of a table with a foreignNeil Conway
2005-05-30Create separate ON INSERT and ON UPDATE triggers on tables with foreignNeil Conway
2005-05-29Modify hash_search() API to prevent future occurrences of the errorTom Lane
2005-05-27Remove second argument from textToQualifiedNameList(), as it is no longerNeil Conway
2005-05-24Log queries for client-side prepare/execute. Simon RiggsBruce Momjian
2005-05-19Split the shared-memory array of PGPROC pointers out of the sinvalTom Lane
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-07Repair very-low-probability race condition between relation extensionTom Lane
2005-05-07Add COPY WITH CVS HEADER to allow a heading line as the first line inBruce Momjian
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-05-06Convert some mulit-line comments in copy.c to single line, as appropriate.Bruce Momjian
2005-05-03Alter the signature for encoding conversion functions to declare theTom Lane
2005-05-02Check the file system on postmaster startup and report any unreferencedBruce Momjian
2005-05-01Change CREATE TYPE to require datatype output and send functions to haveTom Lane
2005-04-28Implement sharable row-level locks, and use them for foreign key referencesTom Lane
2005-04-25Remove support for OR'd indexscans internal to a single IndexScan planTom Lane
2005-04-22First cut at planner support for bitmap index scans. Lots to do yet,Tom 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-16Create a new 'MultiExecProcNode' call API for plan nodes that don'tTom 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-13Change addRangeTableEntryForRelation() to take a Relation pointer insteadTom Lane
2005-04-12Add aggsortop column to pg_aggregate, so that MIN/MAX optimization canTom Lane
2005-04-11Fix interaction between materializing holdable cursors and firingTom Lane
2005-04-11PersistHoldablePortal must establish the correct value for ActiveSnapshotTom Lane
2005-04-06Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane
2005-03-31First phase of OUT-parameters project. We can now define and use SQLTom Lane
2005-03-29Fix grammar for IN/OUT/INOUT parameters. This commit doesn't actuallyTom Lane
2005-03-29Officially decouple FUNC_MAX_ARGS from INDEX_MAX_KEYS, and set theTom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-03-25Remove lazy_update_relstats; go back to having VACUUM just record theTom Lane
2005-03-25Improve EXPLAIN ANALYZE to show the time spent in each trigger whenTom Lane
2005-03-25Fix two bugs in change_owner_recurse_to_sequences: it was grabbing anTom Lane
2005-03-24Revert changes to CREATE TRIGGER and ALTER TABLE ADD FOREIGN KEY locking,Neil Conway
2005-03-23Adjust CREATE TRIGGER and ALTER TABLE ... ADD FOREIGN KEY to acquireNeil Conway
2005-03-23WAL must log CREATE and DROP DATABASE operations *without* using anyTom Lane
2005-03-21Convert index-related tuple handling routines from char 'n'/' ' to boolTom Lane
2005-03-20Change the return value of HeapTupleSatisfiesUpdate() to be an enum,Neil Conway
2005-03-20On Windows, use QueryPerformanceCounter instead of gettimeofday forTom Lane
2005-03-20Remove unnecessary calls of FlushRelationBuffers: there is no needTom Lane
2005-03-16Revise TupleTableSlot code to avoid unnecessary construction and disassemblyTom Lane
2005-03-14Allow ALTER FUNCTION to change a function's strictness, volatility, andNeil Conway
2005-03-13Update obsolete comment.Neil Conway
2005-03-12When cloning template0 (or other fully-frozen databases), set the newTom Lane
2005-03-12Fix ALTER DATABASE RENAME to allow the operation if user is a superuserTom Lane