summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2006-06-21Eliminate a gratuitously different wording of the 'cannot use aggregate funct...Tom Lane
2006-06-20Remove redundant gettimeofday() calls to the extent practical withoutTom Lane
2006-06-20Split definitions for md5.c out of crypt.h and into their own headerTom Lane
2006-06-16Fix a couple of obvious problems in DROP IF EXISTS patch.Tom Lane
2006-06-16DROP ... IF EXISTS for the following cases:Andrew Dunstan
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-06-07Have REINDEX use NOTICE, so it can be suppressed.Bruce Momjian
2006-06-07Use INFO-level for reindex messages, rather than NOTICE.Bruce Momjian
2006-05-30Make EXPLAIN sampling smarter, to avoid excessive sampling delay.Bruce Momjian
2006-05-26Further hacking on performance of COPY OUT. It seems that fwrite()'sTom Lane
2006-05-25Reduce per-character overhead in COPY OUT by combining calls toTom Lane
2006-05-21Change the backend to reject strings containing invalidly-encoded multibyteTom Lane
2006-05-10Clean up code associated with updating pg_class statistics columnsTom Lane
2006-05-04Rethink the locking mechanisms used for CREATE/DROP/RENAME DATABASE.Tom Lane
2006-05-03Create a syscache for pg_database-indexed-by-oid, and make use of itTom Lane
2006-05-02Clean up API for ambulkdelete/amvacuumcleanup as per today's discussion.Tom Lane
2006-05-02Fix grammar of new error message.Tom Lane
2006-05-02GIN: Generalized Inverted iNdex.Teodor Sigaev
2006-04-30Revert patch pending more discussion:Bruce Momjian
2006-04-29Disallow changing DEFAULT expression of a SERIAL column.Bruce Momjian
2006-04-27Use schema search path to find the first matching contraint name for SETBruce Momjian
2006-04-25Back out RESET CONNECTION until there is more discussion.Bruce Momjian
2006-04-25Add RESET CONNECTION, to reset all aspects of a session.Bruce Momjian
2006-04-22Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane
2006-04-15Support the syntaxTom Lane
2006-04-08Fix EXPLAIN so that it can drill down through multiple levels of subplanTom Lane
2006-04-05Fix a bunch of problems with domains by making them use special input functionsTom Lane
2006-04-04Modify all callers of datatype input and receive functions so that if theseTom Lane
2006-03-31Clean up WAL/buffer interactions as per my recent proposal. Get rid of theTom Lane
2006-03-29Clean up and document the API for XLogOpenRelation and XLogReadBuffer.Tom Lane
2006-03-29TablespaceCreateDbspace should function normally even on platforms that do notTom Lane
2006-03-24Arrange to emit a description of the current XLOG record as error contextTom Lane
2006-03-23Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane
2006-03-14Improve parser so that we can show an error cursor position for errorsTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-03-04Prevent lazy_space_alloc from making requests that exceed MaxAllocSize,Tom Lane
2006-03-03Make the COPY command return a command tag that includes the number ofTom Lane
2006-03-03Dept. of second thoughts: rejigger the TRUNCATE ... CASCADE patch so thatTom Lane
2006-03-03Add CASCADE option to TRUNCATE. Joachim WielandTom Lane
2006-03-01Attached is a patch that replaces a bunch of places where StringInfosNeil Conway
2006-02-28Allow the syntax CREATE TYPE foo, with no parameters, to permit explicitTom Lane
2006-02-28Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane
2006-02-27Clean up CREATE FUNCTION syntax usage in contrib and elsewhere, inPeter Eisentraut
2006-02-19Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway
2006-02-12Fix bug that allowed any logged-in user to SET ROLE to any other database userTom Lane
2006-02-12Revert patch becaues of locking concerns:Bruce Momjian
2006-02-12I've created a new shared catalog table pg_shdescription to storeBruce Momjian
2006-02-11Skip ambulkdelete scan if there's nothing to delete and the index is notTom Lane
2006-02-11Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAMEBruce Momjian
2006-02-11Revert based on Tom's recommendation:Bruce Momjian