summaryrefslogtreecommitdiff
path: root/src/backend
AgeCommit message (Expand)Author
2021-08-09Avoid determining regexp subexpression matches, when possible.Tom Lane
2021-08-09Use ExplainPropertyInteger for queryid in EXPLAINDavid Rowley
2021-08-08Remove some unnecessary casts in format argumentsPeter Eisentraut
2021-08-08Check the size in COPY_POINTER_FIELDPeter Eisentraut
2021-08-08Change NestPath node to contain JoinPath nodePeter Eisentraut
2021-08-08Change SeqScan node to contain Scan nodePeter Eisentraut
2021-08-08Rethink regexp engine's backref-related compilation state.Tom Lane
2021-08-08Make regexp engine's backref-related compilation state more bulletproof.Tom Lane
2021-08-08Fix use-after-free issue in regexp engine.Tom Lane
2021-08-08Move temporary file cleanup to before_shmem_exit().Andres Freund
2021-08-07Really fix the ambiguity in REFRESH MATERIALIZED VIEW CONCURRENTLY.Tom Lane
2021-08-07Message style improvementsPeter Eisentraut
2021-08-07pgstat: Schedule per-backend pgstat shutdown via before_shmem_exit().Andres Freund
2021-08-07Schedule ShutdownXLOG() in single user mode using before_shmem_exit().Andres Freund
2021-08-07Make parallel worker shutdown complete entirely via before_shmem_exit().Andres Freund
2021-08-07pgstat: Bring up pgstat in BaseInit() to fix uninitialized use of pgstat by AV.Andres Freund
2021-08-06Don't elide casting to typmod -1.Tom Lane
2021-08-06Adjust the integer overflow tests in the numeric code.Dean Rasheed
2021-08-06Add missing message punctuationPeter Eisentraut
2021-08-06Fix wordingPeter Eisentraut
2021-08-05process startup: Always call Init[Auxiliary]Process() before BaseInit().Andres Freund
2021-08-05Call pgwin32_signal_initialize() in postmaster as well.Andres Freund
2021-08-05process startup: Centralize pgwin32_signal_initialize() calls.Andres Freund
2021-08-05process startup: Remove bootstrap / checker modes from AuxProcType.Andres Freund
2021-08-05process startup: Move AuxiliaryProcessMain into its own file.Andres Freund
2021-08-05process startup: auxprocess: reindent blockAndres Freund
2021-08-05process startup: Separate out BootstrapModeMain from AuxiliaryProcessMain.Andres Freund
2021-08-05process startup: Rename postmaster's --forkboot to --forkaux.Andres Freund
2021-08-05Remove unused argument "txn" in maybe_send_schema().Fujii Masao
2021-08-05Fix division-by-zero error in to_char() with 'EEEE' format.Dean Rasheed
2021-08-05pgstat: split reporting/fetching of bgwriter and checkpointer stats.Andres Freund
2021-08-04Make vacuum_index_cleanup reloption RELOPT_TYPE_ENUM.Peter Geoghegan
2021-08-04Add prepare API support for streaming transactions in logical replication.Amit Kapila
2021-08-03Add assorted new regexp_xxx SQL functions.Tom Lane
2021-08-03interval: round values when spilling to monthsBruce Momjian
2021-08-03Further simplify a bit of logic in StartupXLOG().Thomas Munro
2021-08-03Allow ordered partition scans in more casesDavid Rowley
2021-08-02Track a Bitmapset of non-pruned partitions in RelOptInfoDavid Rowley
2021-08-02Run checkpointer and bgwriter in crash recovery.Thomas Munro
2021-08-02Remove misplaced comment from AuxiliaryProcessMain().Andres Freund
2021-08-02Fix oversight in commit 1ec7fca8592178281cd5cdada0f27a340fb813fc.Etsuro Fujita
2021-07-31Use elog, not Assert, to report failure to provide an outer snapshot.Tom Lane
2021-07-31Remove redundant setting of pg_attribute.attcompressionJohn Naylor
2021-07-31Fix corner-case errors and loss of precision in numeric_power().Dean Rasheed
2021-07-31Move InRecovery and standbyState global vars to xlogutils.c.Heikki Linnakangas
2021-07-31Extract code to describe recovery stop reason to a function.Heikki Linnakangas
2021-07-31Remove unnecessary 'restoredFromArchive' global variable.Heikki Linnakangas
2021-07-31Don't use O_SYNC or similar when opening signal file to fsync it.Heikki Linnakangas
2021-07-30Improve documentation for START_REPLICATION ... LOGICAL.Jeff Davis
2021-07-30Remove unnecessary call to ReadCheckpointRecord().Robert Haas