summaryrefslogtreecommitdiff
path: root/src/backend
Commit message (Expand)AuthorAgeFilesLines
* Fix assorted bugs in CREATE/DROP INDEX CONCURRENTLY.Tom Lane2012-11-2811-235/+403
* Split out rmgr rm_desc functions into their own filesAlvaro Herrera2012-11-2837-1009/+1278
* If we don't have a backup-end-location, don't claim we've reached it.Heikki Linnakangas2012-11-281-1/+1
* Add OpenTransientFile, with automatic cleanup at end-of-xact.Heikki Linnakangas2012-11-279-109/+201
* Revert patch for taking fewer snapshots.Tom Lane2012-11-265-38/+31
* Fix SELECT DISTINCT with index-optimized MIN/MAX on inheritance trees.Tom Lane2012-11-262-5/+13
* Avoid bogus "out-of-sequence timeline ID" errors in standby-mode.Heikki Linnakangas2012-11-221-9/+24
* Don't launch new child processes after we've been told to shut down.Tom Lane2012-11-211-20/+23
* Speed up operations on numeric, mostly by avoiding palloc() overhead.Heikki Linnakangas2012-11-211-155/+104
* Improve handling of INT_MIN / -1 and related cases.Tom Lane2012-11-192-83/+115
* Fix archive_cleanup_command.Heikki Linnakangas2012-11-193-33/+23
* Limit values of archive_timeout, post_auth_delay, auth_delay.milliseconds.Tom Lane2012-11-181-2/+2
* Fix syslogger to not fail when log_rotation_age exceeds 2^31 milliseconds.Tom Lane2012-11-182-3/+16
* Assert that WaitLatch's timeout is not more than INT_MAX milliseconds.Tom Lane2012-11-182-5/+8
* Improve check_partial_indexes() to consider join clauses in proof attempts.Tom Lane2012-11-151-6/+76
* Fix the int8 and int2 cases of (minimum possible integer) % (-1).Tom Lane2012-11-142-2/+23
* Fix memory leaks in record_out() and record_send().Tom Lane2012-11-131-12/+40
* Skip searching for subxact locks at commit.Simon Riggs2012-11-131-2/+4
* Clarify docs on hot standby lock releaseSimon Riggs2012-11-132-2/+11
* Fix multiple problems in WAL replay.Tom Lane2012-11-128-448/+745
* Use correct text domain for translating errcontext() messages.Heikki Linnakangas2012-11-125-46/+68
* Check for stack overflow in transformSetOperationTree().Tom Lane2012-11-111-0/+4
* Remove leftover LWLockRelease() callAlvaro Herrera2012-11-091-1/+0
* Fix WaitLatch() to return promptly when the requested timeout expires.Tom Lane2012-11-082-84/+149
* Rename ResolveNew() to ReplaceVarsFromTargetList(), and tweak its API.Tom Lane2012-11-083-72/+92
* Don't trash input list structure in does_not_exist_skipping().Tom Lane2012-11-081-2/+2
* Don't try to use a unopened relationAlvaro Herrera2012-11-071-3/+2
* Make the streaming replication protocol messages architecture-independent.Heikki Linnakangas2012-11-073-124/+211
* Fix handling of inherited check constraints in ALTER COLUMN TYPE.Tom Lane2012-11-051-10/+33
* Limit the number of rel sets considered in consider_index_join_outer_rels.Tom Lane2012-11-011-3/+61
* Fix erroneous choice of timeline variable, tooAlvaro Herrera2012-10-311-1/+1
* Fix erroneous choices of segNo variablesAlvaro Herrera2012-10-311-4/+4
* Fix ALTER EXTENSION / SET SCHEMAAlvaro Herrera2012-10-315-61/+132
* Throw error if expiring tuple is again updated or deleted.Kevin Grittner2012-10-265-91/+188
* Prefer actual constants to pseudo-constants in equivalence class machinery.Tom Lane2012-10-261-2/+8
* Tweak genericcostestimate's fudge factor for index size.Tom Lane2012-10-241-5/+7
* When converting a table to a view, remove its system columns.Tom Lane2012-10-242-2/+50
* Add context info to OAT_POST_CREATE security hookAlvaro Herrera2012-10-237-8/+33
* Correct predicate locking for DROP INDEX CONCURRENTLY.Kevin Grittner2012-10-211-6/+22
* Fix UtilityContainsQuery() to handle CREATE TABLE AS EXECUTE correctly.Tom Lane2012-10-191-9/+4
* Fix hash_search to avoid corruption of the hash table on out-of-memory.Tom Lane2012-10-191-16/+30
* Fix ruleutils to print "INSERT INTO foo DEFAULT VALUES" correctly.Tom Lane2012-10-191-5/+13
* Fix orphan on cancel of drop index concurrently.Simon Riggs2012-10-191-19/+30
* Further cleanup of catcache.c ilist changes.Tom Lane2012-10-181-12/+17
* Remove unnecessary "head" arguments from some dlist/slist functions.Tom Lane2012-10-183-14/+15
* Code review for inline-list patch.Tom Lane2012-10-181-7/+12
* Re-think guts of DROP INDEX CONCURRENTLY.Simon Riggs2012-10-181-14/+90
* Fix planning of non-strict equivalence clauses above outer joins.Tom Lane2012-10-183-35/+141
* Close un-owned SMgrRelations at transaction end.Tom Lane2012-10-175-3/+85
* Revert "Use "transient" files for blind writes, take 2".Tom Lane2012-10-174-99/+28