summaryrefslogtreecommitdiff
path: root/src/backend/tcop
AgeCommit message (Expand)Author
2006-01-18Add a new system view, pg_cursors, that displays the currently availableNeil Conway
2006-01-08Add a new system view, pg_prepared_statements, that can be used toNeil Conway
2006-01-05Make all command-line options of postmaster and postgres the same. SeePeter Eisentraut
2006-01-05Remove BEOS port.Bruce Momjian
2006-01-04Rearrange backend startup sequence so that ShmemIndexLock can becomeTom Lane
2005-12-31Prefix client-side prepare with '[protocol]' rather than '[client]'.Bruce Momjian
2005-12-30Rename send_rfq to send_ready_for_query.Bruce Momjian
2005-12-30Mmark client-side prepare/bind/execute statements with "[client]" soBruce Momjian
2005-12-14Defend against crash while processing Describe Statement or Describe PortalTom Lane
2005-11-29Fix EXPLAIN and EXECUTE commands to pass portal parameters through toTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-11-22 DROP DATABASE IF EXISTS variantAndrew Dunstan
2005-11-21Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera
2005-11-19DROP objecttype IF EXISTS for the following objects:Andrew Dunstan
2005-11-10When in transaction-aborted state, reject Bind message for portals containingTom Lane
2005-11-03Fix a couple of missed None -> DestNone in comments.Tom Lane
2005-11-03Rename the members of CommandDest enum so they don't collide with other uses ofAlvaro Herrera
2005-10-20Postpone pg_timezone_initialize() until after creation of postmaster.pid,Tom Lane
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-10-13Make stack_base_ptr non-static, for PL/Java.Bruce Momjian
2005-10-06Minor API cleanup for async notifications: we can only register theNeil Conway
2005-10-05Code cleanup for log_disconnections(). Patch from Qingqing Zhou,Neil Conway
2005-09-26Log protocol-excute fetch operatation as fetch, rather than execute,Bruce Momjian
2005-09-24Suppress signed-vs-unsigned-char warnings.Tom Lane
2005-09-22Suppress port number for unix domain sockets in log connect/disconnectBruce Momjian
2005-09-19Print proper cause of statement cancel, user interaction or timeout.Bruce Momjian
2005-09-16Update query cancel message:Bruce Momjian
2005-09-02Add log display label for unnamed server-side portals.Bruce Momjian
2005-08-11Autovacuum loose end mop-up. Provide autovacuum-specific vacuum costTom Lane
2005-08-08Cause ShutdownPostgres to do a normal transaction abort during backendTom Lane
2005-08-01Add ALTER object SET SCHEMA capability for a limited but useful set ofTom Lane
2005-07-31Add per-user and per-database connection limit options.Tom Lane
2005-07-21Add time/date macros for code clarity:Bruce Momjian
2005-07-14Integrate autovacuum functionality into the backend. There's still aTom Lane
2005-07-10Change typreceive function API so that receive functions get the sameTom Lane
2005-07-04Arrange for the postmaster (and standalone backends, initdb, etc) toTom Lane
2005-06-30Improve the checkpoint signaling mechanism so that the bgwriter can tellTom Lane
2005-06-29Clean up the rather historically encumbered interface to now() andTom Lane
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-06-22Make REINDEX DATABASE do what one would expect, namely reindex all indexesTom Lane
2005-06-22Fix the mechanism for reporting the original table OID and column numberTom Lane
2005-06-17Two-phase commit. Original patch by Heikki Linnakangas, with additionalTom Lane
2005-06-14Add pg_postmaster_start_time() function.Bruce Momjian
2005-06-03Revise handling of dropped columns in JOIN alias lists to avoid aTom Lane
2005-06-02Push enable/disable of notify and catchup interrupts all the way downTom Lane
2005-06-01Fix log_statement to properly recognize SELECT INTO and CREATE TABLE ASBruce Momjian
2005-05-24Log queries for client-side prepare/execute. Simon RiggsBruce 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-21Rethink original decision to use AND/OR Expr nodes to represent bitmapTom Lane