summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Centralize some ALTER <whatever> .. SET SCHEMA checks.Robert Haas2010-11-225-54/+55
* Remove GucContext parameter from ParseConfigFileAlvaro Herrera2010-11-221-7/+4
* Add new SQL function, format(text).Robert Haas2010-11-201-0/+195
* Further cleanup of indxpath logic related to IndexOptInfo.opfamily array.Tom Lane2010-11-202-35/+28
* Minor cleanup of indxpath.c.Robert Haas2010-11-201-27/+8
* Assorted further cleanup for integer-conversion patch.Tom Lane2010-11-201-29/+24
* Expose quote_literal_cstr() from core.Robert Haas2010-11-201-22/+53
* Attempt to fix breakage caused by signed integer conversion patch.Robert Haas2010-11-201-1/+11
* Fix leakage of cost_limit when multiple autovacuum workers are active.Tom Lane2010-11-191-18/+45
* Speed up conversion of signed integers to C strings.Robert Haas2010-11-192-18/+105
* Improve relation width estimation for subqueries.Tom Lane2010-11-194-19/+147
* Add pg_describe_object functionAlvaro Herrera2010-11-181-27/+30
* Dept of second thoughts: don't try to push LIMIT below a SRF.Tom Lane2010-11-181-1/+14
* Remove unused parameter. Patch by Shigeru Hanada.Heikki Linnakangas2010-11-181-4/+3
* Further fallout from the MergeAppend patch.Tom Lane2010-11-186-21/+101
* Make TRUNCATE ... RESTART IDENTITY restart sequences transactionally.Tom Lane2010-11-173-66/+142
* Require VALUE keyword when extending an enum type. Based on a patch from Alva...Andrew Dunstan2010-11-161-8/+8
* Send paramHandle to subprocesses as 64-bit on Win64Magnus Hagander2010-11-161-0/+8
* The GiST scan algorithm uses LSNs to detect concurrent pages splits, butHeikki Linnakangas2010-11-163-7/+26
* Add new buffers_backend_fsync field to pg_stat_bgwriter.Robert Haas2010-11-155-4/+24
* Avoid spurious Hot Standby conflicts from btree delete records.Simon Riggs2010-11-151-13/+5
* Correct poor grammar in comment.Robert Haas2010-11-141-1/+1
* Cleanup various comparisons with the constant "true".Robert Haas2010-11-147-14/+14
* Fix canAcceptConnections() bugs introduced by replication-related patches.Tom Lane2010-11-141-14/+19
* Add missing outfuncs.c support for struct InhRelation.Tom Lane2010-11-131-0/+12
* Move copydir() prototype into its own header file.Robert Haas2010-11-122-0/+2
* Fix old oversight in const-simplification of COALESCE() expressions.Tom Lane2010-11-121-1/+5
* Improved parallel make supportPeter Eisentraut2010-11-124-10/+9
* Add missing support for removing foreign data wrapper / server privilegesHeikki Linnakangas2010-11-121-0/+6
* Fix bug introduced by the recent patch to check that the checkpoint redoHeikki Linnakangas2010-11-111-1/+3
* Fix line_construct_pm() for the case of "infinite" (DBL_MAX) slope.Tom Lane2010-11-101-4/+11
* Add monitoring function pg_last_xact_replay_timestamp.Robert Haas2010-11-091-0/+18
* Repair memory leakage while ANALYZE-ing complex index expressions.Tom Lane2010-11-091-3/+20
* In rewriteheap.c (used by VACUUM FULL and CLUSTER), calculate the tupleHeikki Linnakangas2010-11-091-1/+1
* Fix error handling in temp-file deletion with log_temp_files active.Tom Lane2010-11-081-6/+33
* Fix permanent memory leak in autovacuum launcherAlvaro Herrera2010-11-081-3/+17
* Use appendrel planning logic for top-level UNION ALL structures.Tom Lane2010-11-082-12/+120
* Prevent invoking I/O conversion casts via functional/attribute notation.Tom Lane2010-11-071-4/+24
* Add support for detecting register-stack overrun on IA64.Tom Lane2010-11-061-0/+61
* Make get_stack_depth_rlimit() handle RLIM_INFINITY more sanely.Tom Lane2010-11-062-6/+10
* Include the current value of max_stack_depth in stack depth complaints.Tom Lane2010-11-041-2/+3
* Use appendStringInfoString() where appropriate in elog.c.Tom Lane2010-11-041-22/+29
* Reimplement planner's handling of MIN/MAX aggregate optimization.Tom Lane2010-11-0412-458/+567
* Fix adjust_semi_join to be more cautious about clauseless joins.Tom Lane2010-11-021-5/+13
* Ensure an index that uses a whole-row Var still depends on its table.Tom Lane2010-11-023-14/+40
* Bootstrap WAL to begin at segment logid=0 logseg=1 (000000010000000000000001)Heikki Linnakangas2010-11-022-10/+13
* Avoid using a local FunctionCallInfoData struct in ExecMakeFunctionResultTom Lane2010-11-011-79/+61
* Fix corner-case bug in tracking of latest removed WAL segment duringHeikki Linnakangas2010-11-012-4/+7
* Provide hashing support for arrays.Tom Lane2010-10-3018-74/+338
* Fix comparisons of pointers with zero to compare with NULL instead.Tom Lane2010-10-293-3/+3