summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2019-12-04Fix whitespace.Etsuro Fujita
2019-12-03Fix thinkos from commit 9989d37Michael Paquier
2019-12-03Remove XLogFileNameP() from the treeMichael Paquier
2019-12-03Fix EXPLAIN's column alias output for mismatched child tables.Tom Lane
2019-12-02Add a reverse-translation column number array to struct AppendRelInfo.Tom Lane
2019-12-01Fix misbehavior with expression indexes on ON COMMIT DELETE ROWS tables.Tom Lane
2019-11-29Small code simplificationPeter Eisentraut
2019-11-29Make allow_system_table_mods settable at run timePeter Eisentraut
2019-11-29Remove any-user DML capability from allow_system_table_modsPeter Eisentraut
2019-11-29Add error position to an error messagePeter Eisentraut
2019-11-28Remove unnecessary clauses_attnums variableTomas Vondra
2019-11-28Fix choose_best_statistics to check clauses individuallyTomas Vondra
2019-11-28Remove useless "return;" linesAlvaro Herrera
2019-11-27Fix typo in comment.Etsuro Fujita
2019-11-26Allow access to child table statistics if user can read parent table.Tom Lane
2019-11-26Add safeguards for pg_fsync() called with incorrectly-opened fdsMichael Paquier
2019-11-26Don't shut down Gather[Merge] early under Limit.Amit Kapila
2019-11-25Use procsignal_sigusr1_handler for auxiliary processes.Robert Haas
2019-11-25Refactor WAL file-reading code into WALRead()Alvaro Herrera
2019-11-25Fix unportable printf format introduced in commit 9290ad198.Tom Lane
2019-11-25Make the order of the header file includes consistent.Amit Kapila
2019-11-25Fix inconsistent variable name in static function of mac8.cMichael Paquier
2019-11-25Refactor reloption handling for index AMs in-coreMichael Paquier
2019-11-24Doc: improve discussion of race conditions involved in LISTEN.Tom Lane
2019-11-24Avoid assertion failure with LISTEN in a serializable transaction.Tom Lane
2019-11-24Stabilize NOTIFY behavior by transmitting notifies before ReadyForQuery.Tom Lane
2019-11-24Stabilize the results of pg_notification_queue_usage().Tom Lane
2019-11-23Remove debugging aidAlvaro Herrera
2019-11-23Add object TRUNCATE hookJoe Conway
2019-11-22Fix bogus tuple-slot management in logical replication UPDATE handling.Tom Lane
2019-11-21Defend against self-referential views in relation_is_updatable().Tom Lane
2019-11-21Remove configure --disable-float4-byvalPeter Eisentraut
2019-11-21Make DROP DATABASE command generate less WAL records.Fujii Masao
2019-11-21Allow ALTER VIEW command to rename the column in the view.Fujii Masao
2019-11-21Track statistics for spilling of changes from ReorderBuffer.Amit Kapila
2019-11-21Provide statistics for hypothetical BRIN indexesMichael Paquier
2019-11-20Sync patternsel_common's operator selection logic with pattern_prefix's.Tom Lane
2019-11-20Fix HeapTupleSatisfiesNonVacuumable() comment.Peter Geoghegan
2019-11-20Reduce match_pattern_prefix()'s dependencies on index opfamilies.Tom Lane
2019-11-19Fix corner-case failure in match_pattern_prefix().Tom Lane
2019-11-19Fix page modification outside of critical section in GINAlexander Korotkov
2019-11-19Revise GIN READMEAlexander Korotkov
2019-11-19Fix traversing to the deleted GIN page via downlinkAlexander Korotkov
2019-11-19Fix deadlock between ginDeletePage() and ginStepRight()Alexander Korotkov
2019-11-19Add logical_decoding_work_mem to limit ReorderBuffer memory usage.Amit Kapila
2019-11-18nbtree: Tweak _bt_pgaddtup() comments.Peter Geoghegan
2019-11-17Further fix dumping of views that contain just VALUES(...).Tom Lane
2019-11-16Properly determine length for on-disk TOAST valuesTomas Vondra
2019-11-16Skip system attributes when applying mvdistinct statsTomas Vondra
2019-11-15Always call ExecShutdownNode() if appropriate.Thomas Munro