summaryrefslogtreecommitdiff
path: root/src/backend/tcop/postgres.c
Commit message (Expand)AuthorAgeFilesLines
* Allow read only connections during recovery, known as Hot Standby.Simon Riggs2009-12-191-3/+53
* Don't unblock SIGQUIT in the SIGQUIT handlerPeter Eisentraut2009-12-161-1/+2
* If there is no sigdelset(), define it as a macro.Peter Eisentraut2009-12-161-5/+1
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-151-7/+1
* Add support for invoking parser callback hooks via SPI and in cached plans.Tom Lane2009-11-041-1/+52
* Remove very ancient tuple-counting infrastructure (IncrRetrieved() andTom Lane2009-10-081-2/+1
* Remove flatfiles.c, which is now obsolete.Alvaro Herrera2009-09-011-8/+1
* Move processing of startup-packet switches and GUC settings into InitPostgres,Tom Lane2009-09-011-76/+9
* Remove the use of the pg_auth flat file for client authentication.Tom Lane2009-08-291-220/+245
* Remove useless code that propagated FrontendProtocol to a backend via aTom Lane2009-08-281-1/+8
* Create a multiplexing structure for signals to Postgres child processes.Tom Lane2009-07-311-3/+4
* Fix a few errors in comments. Patch by Fujii Masao, plus the one inHeikki Linnakangas2009-06-181-4/+4
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-3/+3
* Fix all the server-side SIGQUIT handlers (grumble ... why so many identicalTom Lane2009-05-151-7/+15
* Update comment associated with 'debug_query_string'.Bruce Momjian2009-01-071-2/+2
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Fix an oversight in my patch of a couple weeks ago that ensured a snapshotTom Lane2009-01-011-6/+12
* 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
* Clean up the API for DestReceiver objects by eliminating the assumptionTom Lane2008-11-301-3/+7
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-301-9/+1
* Cause the output from debug_print_parse, debug_print_rewritten, andTom Lane2008-08-191-7/+7
* Add a few more DTrace probes to the backend.Alvaro Herrera2008-08-011-2/+20
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-181-18/+14
* 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-121-34/+22
* 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-261-2/+2
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-261-1/+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
* 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-011-2/+2
* 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
* pgindent run for 8.3.Bruce Momjian2007-11-151-28/+30
* Move session_start out of MyProcPort stucture and make it a global called MyS...Andrew Dunstan2007-08-021-1/+3
* Fix single-user mode so that interrupts (particularly SIGTERM andTom Lane2007-07-091-49/+77
* Arrange for SIGINT in autovacuum workers to cancel the current table andAlvaro Herrera2007-06-291-4/+10
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-231-50/+38
* Fix oversight in my patch of yesterday: forgot to ensure that stats wouldTom Lane2007-04-301-2/+2
* Make plancache store cursor options so it can pass them to planner duringTom Lane2007-04-161-1/+3
* Expose more cursor-related functionality in SPI: specifically, allowTom Lane2007-04-161-9/+12
* exec_parse_message neglected to copy parameter type array into theTom Lane2007-03-291-4/+16