summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Expand)Author
2016-08-11Replace buffer I/O locks with condition variables.cvRobert Haas
2016-08-11Condition variable code.Robert Haas
2016-08-11Once again allow LWLocks to be used within DSM segments.Robert Haas
2016-08-11Fix busted Assert for CREATE MATVIEW ... WITH NO DATA.Tom Lane
2016-08-08Stamp 9.6beta4.Tom Lane
2016-08-08Fix several one-byte buffer over-reads in to_numberPeter Eisentraut
2016-08-08Translation updatesPeter Eisentraut
2016-08-08Fix two errors with nested CASE/WHEN constructs.Tom Lane
2016-08-08Obstruct shell, SQL, and conninfo injection via database and role names.Noah Misch
2016-08-08Promote pg_dumpall shell/connstr quoting functions to src/fe_utils.Noah Misch
2016-08-08Fix Windows shell argument quoting.Noah Misch
2016-08-08Reject, in pg_dumpall, names containing CR or LF.Noah Misch
2016-08-08Field conninfo strings throughout src/bin/scripts.Noah Misch
2016-08-08Introduce a psql "\connect -reuse-previous=on|off" option.Noah Misch
2016-08-08Sort out paired double quotes in \connect, \password and \crosstabview.Noah Misch
2016-08-08Make format() error messages consistent againPeter Eisentraut
2016-08-08Correct column name in information schemaPeter Eisentraut
2016-08-07Fix misestimation of n_distinct for a nearly-unique column with many nulls.Tom Lane
2016-08-07Fix crash when pg_get_viewdef_name_ext() is passed a non-view relation.Tom Lane
2016-08-07Fix TOAST access failure in RETURNING queries.Tom Lane
2016-08-07Avoid crashing in GetOldestSnapshot() if there are no known snapshots.Tom Lane
2016-08-07Don't propagate a null subtransaction snapshot up to parent transaction.Tom Lane
2016-08-06In B-tree page deletion, clean up properly after page deletion failure.Tom Lane
2016-08-05Teach libpq to decode server version correctly from future servers.Tom Lane
2016-08-05Fix copy-and-pasteo in 81c766b3fd41c78c634d78ebae8d316808dfc630.Tom Lane
2016-08-05Make array_to_tsvector() sort and de-duplicate the given strings.Tom Lane
2016-08-05Fix ts_delete(tsvector, text[]) to cope with duplicate array entries.Tom Lane
2016-08-05Re-pgindent tsvector_op.c.Tom Lane
2016-08-05Update time zone data files to tzdata release 2016f.Tom Lane
2016-08-05Change InitToastSnapshot to a macro.Robert Haas
2016-08-05Fix hard to hit race condition in heapam's tuple locking code.Andres Freund
2016-08-04Fix bogus coding in WaitForBackgroundWorkerShutdown().Tom Lane
2016-08-03Prevent "snapshot too old" from trying to return pruned TOAST tuples.Robert Haas
2016-08-03Make INSERT-from-multiple-VALUES-rows handle targetlist indirection better.Tom Lane
2016-08-03Do not let PostmasterContext survive into background workers.Tom Lane
2016-08-03Add missing casts in information schemaPeter Eisentraut
2016-08-03Fix assorted problems in recovery testsAlvaro Herrera
2016-08-03C comment: fix typoBruce Momjian
2016-08-03Small wording tweaksPeter Eisentraut
2016-08-02Remove duplicate InitPostmasterChild() call while starting a bgworker.Tom Lane
2016-08-02Block interrupts during HandleParallelMessages().Tom Lane
2016-08-02Change minimum max_worker_processes from 1 to 0Peter Eisentraut
2016-08-02Fix pg_dump's handling of public schema with both -c and -C options.Tom Lane
2016-08-02Consistently capitalize names of recovery testsPeter Eisentraut
2016-08-01Minor cleanup for access/transam/parallel.c.Tom Lane
2016-08-01Don't CHECK_FOR_INTERRUPTS between WaitLatch and ResetLatch.Tom Lane
2016-08-01Remove unused arguments from pg_replication_origin_xact_reset function.Fujii Masao
2016-08-01Fixed array checking code for "unsigned long long" datatypes in libecpg.Michael Meskes
2016-08-01Fix pg_basebackup so that it accepts 0 as a valid compression level.Fujii Masao
2016-07-31Code review for tqueue.c: fix memory leaks, speed it up, other fixes.Tom Lane