summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Expand)Author
2020-09-04C comment: correct use of 64-"byte" cache line sizeBruce Momjian
2020-09-04Remove variable "concurrent" from ReindexStmtMichael Paquier
2020-09-04Remove arbitrary restrictions on password length.Tom Lane
2020-09-03Add support for streaming to built-in logical replication.Amit Kapila
2020-09-02Add string_to_table() function.Tom Lane
2020-09-02Fix thinko with definition of REINDEXOPT_MISSING_OKMichael Paquier
2020-09-02Improve handling of dropped relations for REINDEX DATABASE/SCHEMA/SYSTEMMichael Paquier
2020-09-01Set cutoff xmin more aggressively when vacuuming a temporary table.Tom Lane
2020-08-31C comment: remove mention of use of t_hoff WAL structure memberBruce Momjian
2020-08-30Mark factorial operator, and postfix operators in general, as deprecated.Tom Lane
2020-08-30Redefine pg_class.reltuples to be -1 before the first VACUUM or ANALYZE.Tom Lane
2020-08-26Add additional information in the vacuum error context.Amit Kapila
2020-08-26Extend the BufFile interface.Amit Kapila
2020-08-26Prevent non-superusers from reading pg_backend_memory_contexts, by default.Fujii Masao
2020-08-21Fix handling of CREATE TABLE LIKE with inheritance.Tom Lane
2020-08-20Fix a few typos in JIT comments and READMEDavid Rowley
2020-08-19Suppress unnecessary RelabelType nodes in yet more cases.Tom Lane
2020-08-19Add pg_backend_memory_contexts system view.Fujii Masao
2020-08-18snapshot scalability: cache snapshots using a xact completion counter.Andres Freund
2020-08-17Make xact.h usable in frontend.Heikki Linnakangas
2020-08-16Correct several behavior descriptions in comments.Noah Misch
2020-08-15Prevent concurrent SimpleLruTruncate() for any given SLRU.Noah Misch
2020-08-15Remove obsolete cygwin.h hackPeter Eisentraut
2020-08-15Remove obsolete HAVE_BUGGY_SOLARIS_STRTODPeter Eisentraut
2020-08-15Mark a few logical decoding related variables with PGDLLIMPORT.Amit Kapila
2020-08-15Be more careful about the shape of hashable subplan clauses.Tom Lane
2020-08-14snapshot scalability: Move subxact info to ProcGlobal, remove PGXACT.Andres Freund
2020-08-14snapshot scalability: Move PGXACT->vacuumFlags to ProcGlobal->vacuumFlags.Andres Freund
2020-08-14snapshot scalability: Introduce dense array of in-progress xids.Andres Freund
2020-08-14Fix postmaster's behavior during smart shutdown.Tom Lane
2020-08-13snapshot scalability: Move PGXACT->xmin back to PGPROC.Andres Freund
2020-08-12snapshot scalability: Don't compute global horizons while building snapshots.Andres Freund
2020-08-12Track latest completed xid as a FullTransactionId.Andres Freund
2020-08-11Rename VariableCacheData.nextFullXid to nextXid.Andres Freund
2020-08-10Replace remaining StrNCpy() by strlcpy()Peter Eisentraut
2020-08-10Move connect.h from fe_utils to src/include/common.Noah Misch
2020-08-08Add some const decorationsPeter Eisentraut
2020-08-08Implement streaming mode in ReorderBuffer.Amit Kapila
2020-08-07Remove PROC_IN_ANALYZE and derived flagsAlvaro Herrera
2020-08-03Correct comment in simplehash.h.Thomas Munro
2020-08-02Use int64 instead of long in incremental sort codeDavid Rowley
2020-08-01Invent "amadjustmembers" AM method for validating opclass members.Tom Lane
2020-08-01Improve programmer docs for simplehash and dynahash.Thomas Munro
2020-07-31Preallocate some DSM space at startup.Thomas Munro
2020-07-31Fix comment in instrument.hMichael Paquier
2020-07-31Cache smgrnblocks() results in recovery.Thomas Munro
2020-07-31Use multi-inserts for pg_attribute and pg_shdependMichael Paquier
2020-07-30Use a long lived WaitEventSet for WaitLatch().Thomas Munro
2020-07-29Add hash_mem_multiplier GUC.Peter Geoghegan
2020-07-29Remove non-fast promotion.Fujii Masao