summaryrefslogtreecommitdiff
path: root/src/backend/tcop
Commit message (Expand)AuthorAgeFilesLines
* SQL/MED catalog manipulation facilitiesPeter Eisentraut2008-12-191-1/+100
* Remove pg_plan_queries()'s now-useless needSnapshot parameter. It's uselessTom Lane2008-12-131-26/+6
* Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane2008-12-131-5/+52
* Revert SIGUSR1 multiplexing patch, per Tom's objection.Heikki Linnakangas2008-12-091-19/+2
* Provide support for multiplexing SIGUSR1 signal. The upcoming synchronousHeikki Linnakangas2008-12-091-2/+19
* Default values for function argumentsPeter Eisentraut2008-12-041-2/+2
* Ensure that the contents of a holdable cursor don't depend on out-of-lineTom Lane2008-12-011-2/+3
* Clean up the API for DestReceiver objects by eliminating the assumptionTom Lane2008-11-303-20/+17
* Some infrastructure changes for the upcoming auto-explain contrib module:Tom Lane2008-11-191-1/+3
* Implement ALTER DATABASE SET TABLESPACE to move a whole database (or at leastTom Lane2008-11-071-2/+2
* Disallow LOCK TABLE outside a transaction block (or function), since this caseTom Lane2008-11-041-1/+6
* Allow SQL-language functions to return the output of an INSERT/UPDATE/DELETETom Lane2008-10-311-1/+8
* Fix omission of DiscardStmt in GetCommandLogLevel, per report from HubertTom Lane2008-10-101-37/+42
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-301-9/+1
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-5/+5
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-301-2/+5
* Cause the output from debug_print_parse, debug_print_rewritten, andTom Lane2008-08-191-7/+7
* Have autovacuum consider processing TOAST tables separately from theirAlvaro Herrera2008-08-131-2/+2
* Add a few more DTrace probes to the backend.Alvaro Herrera2008-08-012-3/+30
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-182-20/+22
* Rearrange ALTER TABLE syntax processing as per my recent proposal: theTom Lane2008-06-151-12/+19
* Refactor the handling of the various DropStmt variants so that when multipleTom Lane2008-06-141-242/+40
* Modify vacuum() to accept a single relation OID instead of a list (which weAlvaro Herrera2008-06-051-2/+3
* Add support for tracking call counts and elapsed runtime for user-definedTom Lane2008-05-151-2/+2
* Improve snapshot manager by keeping explicit track of snapshots.Alvaro Herrera2008-05-123-79/+68
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-121-1/+2
* Revert addition of pg_terminate_backend() because of race conditions.Bruce Momjian2008-04-151-10/+2
* Add pg_terminate_backend() to allow terminating only a single session.Bruce Momjian2008-04-151-2/+10
* Revert my bad decision of about a year ago to make PortalDefineQueryTom Lane2008-04-021-9/+33
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-263-6/+6
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-263-3/+6
* Support ALTER TYPE RENAME. Petr JelinekTom Lane2008-03-191-1/+4
* Fix vacuum so that autovacuum is really not cancelled when doing an emergencyAlvaro Herrera2008-03-141-2/+2
* Fix pg_plan_queries() to restore the previous setting of ActiveSnapshotTom Lane2008-03-121-17/+35
* Implement enum type for guc parameters, and convert a couple of existingMagnus Hagander2008-03-101-2/+2
* Refactor backend makefiles to remove lots of duplicate codePeter Eisentraut2008-02-191-8/+2
* Add back #include <time.h> in a couple of files that seem to need itTom Lane2008-02-171-1/+2
* Change StatementCancelHandler() to check the DoingCommandRead flag to decideTom Lane2008-01-261-13/+8
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-015-10/+10
* Improve consistency of error reporting in GUC assign_hook routines. SomeTom Lane2007-12-281-2/+2
* Change wording of logged message when cancelling an autovacuum task, usingAlvaro Herrera2007-12-061-1/+5
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-011-2/+1
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-4/+4
* pgindent run for 8.3.Bruce Momjian2007-11-153-68/+75
* Support SET FROM CURRENT in CREATE/ALTER FUNCTION, ALTER DATABASE, ALTER ROLE.Tom Lane2007-09-032-63/+20
* Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane2007-08-211-1/+117
* Move session_start out of MyProcPort stucture and make it a global called MyS...Andrew Dunstan2007-08-021-1/+3
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-171-1/+2
* Fix single-user mode so that interrupts (particularly SIGTERM andTom Lane2007-07-091-49/+77
* Add ALTER VIEW ... RENAME TO, and a RENAME TO clause to ALTER SEQUENCE.Neil Conway2007-07-031-1/+7