summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2015-08-06Further fixes for degenerate outer join clauses.Tom Lane
2015-08-05Make real sure we don't reassociate joins into or out of SEMI/ANTI joins.Tom Lane
2015-08-04Fix bogus "out of memory" reports in tuplestore.c.Tom Lane
2015-08-04Cap wal_buffers to avoid a server crash when it's set very large.Robert Haas
2015-08-02Fix incorrect order of lock file removal and failure to close() sockets.Tom Lane
2015-08-02Fix some planner issues with degenerate outer join clauses.Tom Lane
2015-07-30Avoid some zero-divide hazards in the planner.Tom Lane
2015-07-28Reduce chatter from signaling of autovacuum workers.Tom Lane
2015-07-28Disable ssl renegotiation by default.Andres Freund
2015-07-27Reuse all-zero pages in GIN.Heikki Linnakangas
2015-07-22Fix off-by-one error in calculating subtrans/multixact truncation point.Heikki Linnakangas
2015-07-16AIX: Link the postgres executable with -Wl,-brtllib.Noah Misch
2015-07-09Fix postmaster's handling of a startup-process crash.Tom Lane
2015-06-27Revoke incorrectly applied patch versionSimon Riggs
2015-06-26Avoid hot standby cancels from VAC FREEZESimon Riggs
2015-06-25Fix the logic for putting relations into the relcache init file.Tom Lane
2015-06-22Truncate strings in tarCreateHeader() with strlcpy(), not sprintf().Noah Misch
2015-06-20Fix thinko in comment (launcher -> worker)Alvaro Herrera
2015-06-19Clamp autovacuum launcher sleep time to 5 minutesAlvaro Herrera
2015-06-09Report more information if pg_perm_setlocale() fails at startup.Tom Lane
2015-06-07Use a safer method for determining whether relcache init file is stale.Tom Lane
2015-06-05Fix incorrect order of database-locking operations in InitPostgres().Tom Lane
2015-05-29Remove special cases for ETXTBSY from new fsync'ing logic.Tom Lane
2015-05-28Fix fsync-at-startup code to not treat errors as fatal.Tom Lane
2015-05-24Rename pg_shdepend.c's typedef "objectType" to SharedDependencyObjectType.Tom Lane
2015-05-22Back-patch libpq support for TLS versions beyond v1.Tom Lane
2015-05-19Fix off-by-one error in Assertion.Heikki Linnakangas
2015-05-18Don't MultiXactIdIsRunning when in recoveryAlvaro Herrera
2015-05-18Fix error message in pre_sync_fname.Robert Haas
2015-05-18Check return values of sensitive system library calls.Noah Misch
2015-05-18Prevent a double free by not reentering be_tls_close().Noah Misch
2015-05-18Translation updatesPeter Eisentraut
2015-05-13Fix RBM_ZERO_AND_LOCK mode to not acquire lock on local buffers.Heikki Linnakangas
2015-05-11Fix incorrect checking of deferred exclusion constraint after a HOT update.Tom Lane
2015-05-05Fix some problems with patch to fsync the data directory.Robert Haas
2015-05-04Recursively fsync() the data directory after a crash.Robert Haas
2015-04-25Prevent improper reordering of antijoins vs. outer joins.Tom Lane
2015-04-23Fix deadlock at startup, if max_prepared_transactions is too small.Heikki Linnakangas
2015-04-14Fix typo in commentAlvaro Herrera
2015-04-13Don't archive bogus recycled or preallocated files after timeline switch.Heikki Linnakangas
2015-04-08Fix autovacuum launcher shutdown sequenceAlvaro Herrera
2015-04-04Fix incorrect matching of subexpressions in outer-join plan nodes.Tom Lane
2015-04-03Remove unnecessary variables in _hash_splitbucket().Tom Lane
2015-03-31Remove spurious semicolons.Heikki Linnakangas
2015-03-30Fix bogus concurrent use of _hash_getnewbuf() in bucket split code.Tom Lane
2015-03-29Add vacuum_delay_point call in compute_index_stats's per-sample-row loop.Tom Lane
2015-03-24Fix ExecOpenScanRelation to take a lock on a ROW_MARK_COPY relation.Tom Lane
2015-03-12Ensure tableoid reads correctly in EvalPlanQual-manufactured tuples.Tom Lane
2015-03-05Fix user mapping object descriptionAlvaro Herrera
2015-02-26Reconsider when to wait for WAL flushes/syncrep during commit.Andres Freund