summaryrefslogtreecommitdiff
path: root/src/include/catalog
AgeCommit message (Expand)Author
2020-09-18Allow most keywords to be used as column labels without requiring AS.Tom Lane
2020-09-17Remove support for postfix (right-unary) operators.Tom Lane
2020-09-17Remove factorial operators, leaving only the factorial() function.Tom Lane
2020-09-17Add support for building GiST index by sorting.Heikki Linnakangas
2020-09-05Use multi-inserts for pg_dependMichael Paquier
2020-09-03Add support for streaming to built-in logical replication.Amit Kapila
2020-09-02Add string_to_table() function.Tom Lane
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-26Prevent non-superusers from reading pg_backend_memory_contexts, by default.Fujii Masao
2020-08-19Add pg_backend_memory_contexts system view.Fujii Masao
2020-08-11Rename VariableCacheData.nextFullXid to nextXid.Andres Freund
2020-08-01Invent "amadjustmembers" AM method for validating opclass members.Tom Lane
2020-07-31Use multi-inserts for pg_attribute and pg_shdependMichael Paquier
2020-07-25Mark built-in coercion functions as leakproof where possible.Tom Lane
2020-07-21Be more careful about marking catalog columns NOT NULL by default.Tom Lane
2020-07-20Correctly mark pg_subscription_rel.srsublsn as nullable.Tom Lane
2020-07-20Add generic_plans and custom_plans fields into pg_prepared_statements.Fujii Masao
2020-07-19Correctly mark pg_subscription.subslotname as nullable.Tom Lane
2020-07-18Allow logical replication to transfer data in binary format.Tom Lane
2020-07-15Eliminate cache lookup errors in SQL functions for object addressesMichael Paquier
2020-07-13Revert "Track statistics for spilling of changes from ReorderBuffer".Amit Kapila
2020-07-12Include replication origins in SQL functions for commit timestampMichael Paquier
2020-07-08code: replace 'master' with 'leader' where appropriate.Andres Freund
2020-07-07Don't create pg_type entries for sequences or toast tables.Tom Lane
2020-07-07Morph pg_replication_slots.min_safe_lsn to safe_wal_sizeAlvaro Herrera
2020-07-06Create composite array types for initdb-created relations.Tom Lane
2020-06-30Add +(pg_lsn,numeric) and -(pg_lsn,numeric) operators.Fujii Masao
2020-06-15Bump catversion for ACL changes on replication origin functionsMichael Paquier
2020-06-09Unify drop-by-OID functionsPeter Eisentraut
2020-05-17Make pg_stat_wal_receiver consistent with the WAL receiver's shmem infoMichael Paquier
2020-05-14Initial pgindent and pgperltidy run for v13.Tom Lane
2020-05-12Do pre-release housekeeping on catalog data.Tom Lane
2020-05-06Heed lock protocol in DROP OWNED BYAlvaro Herrera
2020-04-24Repair performance regression in information_schema.triggers view.Tom Lane
2020-04-21Fix possible crash during FATAL exit from reindexing.Tom Lane
2020-04-20Add ALTER .. NO DEPENDS ONAlvaro Herrera
2020-04-08Allow publishing partition changes via ancestorsPeter Eisentraut
2020-04-07Allow users to limit storage reserved by replication slotsAlvaro Herrera
2020-04-07Support FETCH FIRST WITH TIESAlvaro Herrera
2020-04-07Adjust bytea get_bit/set_bit to use int8 not int4 for bit numbering.Tom Lane
2020-04-07Introduce xid8-based functions to replace txid_XXX.Thomas Munro
2020-04-07Add SQL type xid8 to expose FullTransactionId to users.Thomas Munro
2020-04-04Skip WAL for new relfilenodes, under wal_level=minimal.Noah Misch
2020-04-02Add SQL functions for Unicode normalizationPeter Eisentraut
2020-04-02Collect statistics about SLRU cachesTomas Vondra
2020-04-01Improve selectivity estimation for assorted match-style operators.Tom Lane
2020-03-30Implement operator class parametersAlexander Korotkov
2020-03-28Trigger autovacuum based on number of INSERTsDavid Rowley
2020-03-26Improve performance of "simple expressions" in PL/pgSQL.Tom Lane