summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2019-02-17Fix CREATE VIEW to allow zero-column views.Tom Lane
2019-01-03Improve ANALYZE's handling of concurrent-update scenarios.Tom Lane
2018-12-27Ignore inherited temp relations from other sessions when truncatingMichael Paquier
2018-12-17Fix use-after-free bug when renaming constraintsMichael Paquier
2018-12-17Make constraint rename issue relcache invalidation on target relationMichael Paquier
2018-12-07Fix misapplication of pgstat_count_truncate to wrong relation.Tom Lane
2018-11-10Fix missing role dependencies for some schema and type ACLs.Tom Lane
2018-10-08Silence compiler warning in Assert()Alvaro Herrera
2018-10-06Fix event triggers for partitioned tablesAlvaro Herrera
2018-10-01Fix ALTER COLUMN TYPE to not open a relation without any lock.Tom Lane
2018-09-26Recurse to sequences on ownership change for all relkindsPeter Eisentraut
2018-09-01Avoid using potentially-under-aligned page buffers.Tom Lane
2018-08-21Fix set of NLS translation issuesMichael Paquier
2018-08-07Don't record FDW user mappings as members of extensions.Tom Lane
2018-07-18Fix misc typos, mostly in comments.Heikki Linnakangas
2018-05-22Widen COPY FROM's current-line-number counter from 32 to 64 bits.Tom Lane
2018-04-20Fix race conditions when an event trigger is added concurrently with DDL.Tom Lane
2018-04-18Better fix for deadlock hazard in CREATE INDEX CONCURRENTLY.Tom Lane
2018-03-19Fix some corner-case issues in REFRESH MATERIALIZED VIEW CONCURRENTLY.Tom Lane
2018-03-19Fix performance hazard in REFRESH MATERIALIZED VIEW CONCURRENTLY.Tom Lane
2018-03-13When updating reltuples after ANALYZE, just extrapolate from our sample.Tom Lane
2018-02-27Prevent dangling-pointer access when update trigger returns old tuple.Tom Lane
2018-01-19Fix StoreCatalogInheritance1 to use 32bit inhseqnoAlvaro Herrera
2018-01-02Fix deadlock hazard in CREATE INDEX CONCURRENTLYAlvaro Herrera
2017-12-15Perform a lot more sanity checks when freezing tuples.Andres Freund
2017-11-05Ignore CatalogSnapshot when checking COPY FREEZE prerequisites.Noah Misch
2017-11-02Revert bogus fixes of HOT-freezing bugAlvaro Herrera
2017-10-11Fix low-probability loss of NOTIFY messages due to XID wraparound.Tom Lane
2017-09-28Fix freezing of a dead HOT-updated tupleAlvaro Herrera
2017-09-26Improve wording of error message added in commit 714805010.Tom Lane
2017-09-23Fix saving and restoring umaskPeter Eisentraut
2017-09-21Give a better error for duplicate entries in VACUUM/ANALYZE column list.Tom Lane
2017-09-17Fix possible dangling pointer dereference in trigger.c.Tom Lane
2017-08-23Fix translation markerPeter Eisentraut
2017-08-09Fix handling of container types in find_composite_type_dependencies.Tom Lane
2017-06-16Fix dependency, when changing a function's argument/return type.Heikki Linnakangas
2017-06-04Assorted translatable string fixesAlvaro Herrera
2017-05-15Fix unsafe reference into relcache in constructed CommentStmt.Tom Lane
2017-05-02Ensure commands in extension scripts see the results of preceding DDL.Tom Lane
2017-04-28Fix VALIDATE CONSTRAINT to consider NO INHERIT attribute.Robert Haas
2017-03-16Avoid having vacuum set reltuples to 0 on non-empty relations in theAndrew Gierth
2017-03-06Avoid dangling pointer to relation name in RLS code path in DoCopy().Tom Lane
2017-03-04In rebuild_relation(), don't access an already-closed relcache entry.Tom Lane
2017-02-12Ignore tablespace ACLs when ignoring schema ACLs.Noah Misch
2017-02-06Fix typos in comments.Heikki Linnakangas
2017-01-09Fix ALTER TABLE / SET TYPE for irregular inheritanceAlvaro Herrera
2017-01-06Invalidate cached plans on FDW option changes.Tom Lane
2017-01-04Handle OID column inheritance correctly in ALTER TABLE ... INHERIT.Tom Lane
2016-12-22Use TSConfigRelationId in AlterTSConfiguration()Stephen Frost
2016-12-21Fix order of operations in CREATE OR REPLACE VIEW.Dean Rasheed