summaryrefslogtreecommitdiff
path: root/src/backend/tcop
AgeCommit message (Expand)Author
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-21Rethink original decision to use AND/OR Expr nodes to represent bitmapTom Lane
2005-04-14First phase of project to use fixed OIDs for all system catalogs andTom 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-25Improve EXPLAIN ANALYZE to show the time spent in each trigger whenTom 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-02-22Use _() macro consistently rather than gettext(). Add translationBruce Momjian
2005-02-20Add code to prevent transaction ID wraparound by enforcing a safe limitTom Lane
2005-02-10Fix SPI cursor support to allow scanning the results of utility commandsTom Lane
2005-02-01Fix a bug induced by the list-rewrite that resulted in incrementing theNeil Conway
2005-01-27Generalize TRUNCATE to support truncating multiple tables in oneTom Lane
2005-01-24Disallow LOAD to non-superusers. Per report from John Heasman.Tom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-11-24A client_encoding specification coming from the connection request hasTom Lane
2004-11-20Move pgstat_report_tabstat() call so that stats are not reported to theTom Lane
2004-11-14Remove GUC USERLIMIT variable category, making the affected variablesTom Lane
2004-10-15Have log_duration only output when log_statement has printed the query.Bruce Momjian
2004-10-12Message style revisionsPeter Eisentraut
2004-10-08Whack some sense into the configuration-file-location patch.Tom Lane
2004-10-04PortalRun must guard against the possibility that the portal it'sTom Lane
2004-09-26Repair bug that would allow libpq to think a command had succeeded whenTom Lane
2004-09-13Redesign query-snapshot timing so that volatile functions in READ COMMITTEDTom Lane
2004-09-10Fire non-deferred AFTER triggers immediately upon query completion,Tom Lane
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-08-20Add ALTER INDEX, particularly for moving tablespaces.Bruce Momjian
2004-08-12Allow commas in BEGIN, START TRANSACTION, and SET TRANSACTION, as requiredTom Lane
2004-08-12Allow optional SAVEPOINT keyword in RELEASE and ROLLBACK TO, for greaterTom Lane
2004-08-02Allow DECLARE CURSOR to take parameters from the portal in which it isTom Lane
2004-08-01Some mop-up work for savepoints (nested transactions). Store a smallTom Lane
2004-07-31Restructure error handling as recently discussed. It is now reallyTom Lane
2004-07-28Revert ill-conceived patch that made elog(FATAL) the same as elog(ERROR)Tom Lane
2004-07-27Replace nested-BEGIN syntax for subtransactions with spec-compliantTom Lane
2004-07-17Invent ResourceOwner mechanism as per my recent proposal, and use it toTom Lane
2004-07-11Allow configuration files to be placed outside the data directory.Bruce Momjian
2004-07-01Nested transactions. There is still much left to do, especially on theTom Lane
2004-06-25Support renaming of tablespaces, and changing the owners ofTom Lane
2004-06-24Replace direct fprintf(stderr) calls by write_stderr(), and cause thisTom Lane
2004-06-18Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane
2004-06-11When using extended-query protocol, postpone planning of unnamed statementsTom Lane
2004-06-06Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane
2004-06-05Tweak palloc/repalloc to allow zero bytes to be requested, as per recentTom Lane
2004-06-03Adjust our timezone library to use pg_time_t (typedef'd as int64) inTom Lane
2004-05-29Separate out bgwriter code into a logically separate module, ratherTom Lane
2004-05-28Code review for EXEC_BACKEND changes. Reduce the number of #ifdefs byTom Lane
2004-05-26Use new forboth() macro to make loop coding a bit clearer.Tom Lane
2004-05-26This patch implement the TODO [ALTER DATABASE foo OWNER TO bar].Bruce Momjian