summaryrefslogtreecommitdiff
path: root/src/backend/tcop
AgeCommit message (Expand)Author
2007-07-17Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway
2007-07-09Fix single-user mode so that interrupts (particularly SIGTERM andTom Lane
2007-07-03Add ALTER VIEW ... RENAME TO, and a RENAME TO clause to ALTER SEQUENCE.Neil Conway
2007-06-29Arrange for SIGINT in autovacuum workers to cancel the current table andAlvaro Herrera
2007-06-28Implement "distributed" checkpoints in which the checkpoint I/O is spreadTom Lane
2007-06-23Separate parse-analysis for utility commands out of parser/analyze.cTom Lane
2007-05-30Make large sequential scans and VACUUMs work in a limited-size "ring" ofTom Lane
2007-04-30Fix oversight in my patch of yesterday: forgot to ensure that stats wouldTom Lane
2007-04-27Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane
2007-04-26Rename the newly-added commands for discarding session state.Neil Conway
2007-04-16Make plancache store cursor options so it can pass them to planner duringTom Lane
2007-04-16Expose more cursor-related functionality in SPI: specifically, allowTom Lane
2007-04-12RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,Neil Conway
2007-04-02Support enum data types. Along the way, use macros for the values ofTom Lane
2007-03-29exec_parse_message neglected to copy parameter type array into theTom Lane
2007-03-26Allow non-superuser database owners to create procedural languages.Tom Lane
2007-03-22Arrange for PreventTransactionChain to reject commands submitted as partTom Lane
2007-03-13First phase of plan-invalidation project: create a plan cache managementTom Lane
2007-03-03Add resetStringInfo(), which clears the content of a StringInfo, andNeil Conway
2007-03-02Make log_min_error_statement put LOG level at the same priority asTom Lane
2007-02-20Remove the Query structure from the executor's API. This allows us to stopTom Lane
2007-02-18Fix portal management code to support non-default command completion tags forTom Lane
2007-02-17Add code so that when COPY_PARSE_PLAN_TREES is defined, the copy andTom Lane
2007-02-15Restructure autovacuum in two processes: a dummy process, which runsAlvaro Herrera
2007-02-14Fix up foreign-key mechanism so that there is a sound semantic basis for theTom Lane
2007-02-10StrNCpy -> strlcpy (not complete)Peter Eisentraut
2007-01-23Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATORTom Lane
2007-01-20Remove remains of old depend target.Peter Eisentraut
2007-01-05Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian
2007-01-04Fix erroneous implementation of -s in postmaster.c (the switch doesn't takeTom Lane
2006-12-14Activate WIN32_STACK_RLIMIT override only on platforms where this isPeter Eisentraut
2006-12-08Fix the build for when SHOW_MEMORY_STATS is defined. The reference toNeil Conway
2006-11-21On systems that have setsid(2) (which should be just about everything exceptTom Lane
2006-11-21Adjust elog.c so that elog(FATAL) exits (including cases where ERROR isTom Lane
2006-10-19Marginal improvement in logging: include the function name when loggingTom Lane
2006-10-19Make sure that debug_query_string contains the original query text,Tom Lane
2006-10-08Add include needed for new getrusage() call.Bruce Momjian
2006-10-08On Windows, we know the backend stack size limit because we have toTom Lane
2006-10-07When planning a query at Bind time, be careful to pass the correctTom Lane
2006-10-07On platforms that have getrlimit(RLIMIT_STACK), use it to ensure thatTom Lane
2006-10-07Adjust HINT for stack depth limit to mention checking the underlyingTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-09-13Make logging of extended-protocol commands a bit more consistent, perTom Lane
2006-09-08Tweak the behavior of log_duration as proposed by Guillaume Smet: ratherTom Lane
2006-09-07Clean up logging for extended-query-protocol operations, as per my recentTom Lane
2006-09-06Change processing of extended-Query mode so that an unnamed statementTom Lane
2006-09-03Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian
2006-09-03Fix LLONG_MAX define used by new int64 FETCH/MOVE patch.Bruce Momjian
2006-09-02Change FETCH/MOVE to use int8.Bruce Momjian
2006-08-30Extend COPY to support COPY (SELECT ...) TO ...Tom Lane