summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2020-11-05Don't throw an error for LOCK TABLE on a self-referential view.Tom Lane
2020-11-03Improve error messages around REPLICATION and BYPASSRLS properties.Tom Lane
2020-11-03Allow users with BYPASSRLS to alter their own passwords.Tom Lane
2020-11-03Disallow ALTER TABLE ONLY / DROP EXPRESSIONPeter Eisentraut
2020-11-02Track collation versions for indexes.Thomas Munro
2020-11-02Remove pg_collation.collversion.Thomas Munro
2020-11-02Fix some grammar and typos in comments and docsMichael Paquier
2020-10-29Don't use custom OID symbols in pg_type.dat, either.Tom Lane
2020-10-29Centralize horizon determination for temp tables, fixing bug due to skew.Andres Freund
2020-10-27Accept relations of any kind in LOCK TABLEAlvaro Herrera
2020-10-26In INSERT/UPDATE, use the table's real tuple descriptor as target.Tom Lane
2020-10-25Fix corner case for a BEFORE ROW UPDATE trigger returning OLD.Tom Lane
2020-10-23Fix broken XML formatting in EXPLAIN output for incremental sorts.Tom Lane
2020-10-20Fix ALTER TABLE .. ENABLE/DISABLE TRIGGER recursionAlvaro Herrera
2020-10-19Remove PartitionRoutingInfo struct.Heikki Linnakangas
2020-10-19Revise child-to-root tuple conversion map management.Heikki Linnakangas
2020-10-15Fixup some appendStringInfo and appendPQExpBuffer callsDavid Rowley
2020-10-14Remove es_result_relation_info from EState.Heikki Linnakangas
2020-10-13Create ResultRelInfos later in InitPlan, index them by RT index.Heikki Linnakangas
2020-10-05Support for OUT parameters in proceduresPeter Eisentraut
2020-10-05Fix handling of redundant options with COPY for "freeze" and "header"Michael Paquier
2020-09-30Reword partitioning error messageAlvaro Herrera
2020-09-29Fix progress reporting of REINDEX CONCURRENTLYMichael Paquier
2020-09-29Add for_each_from, to simplify loops starting from non-first list cells.Tom Lane
2020-09-28Minor mop-up for List improvements.Tom Lane
2020-09-26Revise RelationBuildRowSecurity() to avoid memory leaks.Tom Lane
2020-09-25Defer flushing of SLRU files.Thomas Munro
2020-09-23Improve error cursor positions for problems with partition bounds.Tom Lane
2020-09-17Remove support for postfix (right-unary) operators.Tom Lane
2020-09-16Don't fetch partition check expression during InitResultRelInfo.Tom Lane
2020-09-16Avoid unnecessary recursion to child tables in ALTER TABLE SET NOT NULL.Tom Lane
2020-09-16Fix use-after-free bug with event triggers in an extension scriptAlvaro Herrera
2020-09-14Message fixes and style improvementsPeter Eisentraut
2020-09-08Add support for partitioned tables and indexes in REINDEXMichael Paquier
2020-09-05Yet more elimination of dead stores and useless initializations.Tom Lane
2020-09-05Switch to multi-inserts when registering dependencies for many code pathsMichael Paquier
2020-09-04Remove variable "concurrent" from ReindexStmtMichael Paquier
2020-09-03Add support for streaming to built-in logical replication.Amit Kapila
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-09-01Raise error on concurrent drop of partitioned indexAlvaro Herrera
2020-08-30Redefine pg_class.reltuples to be -1 before the first VACUUM or ANALYZE.Tom Lane
2020-08-22Fix ALTER TABLE's scheduling rules for AT_AddConstraint subcommands.Tom Lane
2020-08-21Fix handling of CREATE TABLE LIKE with inheritance.Tom Lane
2020-08-21Rework EXPLAIN for planner's buffer usage.Fujii Masao
2020-08-16Correct several behavior descriptions in comments.Noah Misch
2020-08-15Prevent concurrent SimpleLruTruncate() for any given SLRU.Noah Misch
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-13snapshot scalability: Move PGXACT->xmin back to PGPROC.Andres Freund