summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2011-10-26Change FK trigger naming convention to fix self-referential FKs.Tom Lane
2011-10-26Change FK trigger creation order to better support self-referential FKs.Tom Lane
2011-10-21More cleanup after failed reduced-lock-levels-for-DDL feature.Tom Lane
2011-10-21Fix DROP OPERATOR FAMILY IF EXISTS.Robert Haas
2011-10-20Add "skipping" to the NOTICE produced by DROP OPERATOR CLASS IF EXISTS.Robert Haas
2011-10-20Consolidate DROP handling for some object types.Robert Haas
2011-10-19Suppress -Wunused-result warnings about write() and fwrite().Tom Lane
2011-10-14Measure the number of all-visible pages for use in index-only scan costing.Tom Lane
2011-10-12Throw a useful error message if an extension script file is fed to psql.Tom Lane
2011-10-11Rearrange the implementation of index-only scans.Tom Lane
2011-10-10Fix ALTER TABLE ONLY .. DROP CONSTRAINT.Robert Haas
2011-10-08Support index-only scans using the visibility map to avoid heap fetches.Tom Lane
2011-10-06Improve and simplify CREATE EXTENSION's management of GUC variables.Tom Lane
2011-10-04Improve define_custom_variable's handling of pre-existing settings.Tom Lane
2011-10-04Use callbacks in SlruScanDirectory for the actual actionAlvaro Herrera
2011-10-02Restructure error handling in reading of postgresql.conf.Tom Lane
2011-09-22Make EXPLAIN ANALYZE report the numbers of rows rejected by filter steps.Tom Lane
2011-09-16Redesign the plancache mechanism for more flexibility and efficiency.Tom Lane
2011-09-11Remove many -Wcast-qual warningsPeter Eisentraut
2011-09-09Simplify handling of the timezone GUC by making initdb choose the default.Tom Lane
2011-09-09Move Timestamp/Interval typedefs and basic macros into datatype/timestamp.h.Tom Lane
2011-09-07Fix typo in error message.Tom Lane
2011-09-06Avoid possibly accessing off the end of memory in examine_attribute().Tom Lane
2011-09-04Clean up the #include mess a little.Tom Lane
2011-09-02Teach ANALYZE to clear pg_class.relhassubclass when appropriate.Tom Lane
2011-09-01Remove unnecessary #include references, per pgrminclude script.Bruce Momjian
2011-08-30Fix a missed case in code for "moving average" estimate of reltuples.Tom Lane
2011-08-24Make CREATE EXTENSION check schema creation permissions.Tom Lane
2011-08-21Fix trigger WHEN conditions when both BEFORE and AFTER triggers exist.Tom Lane
2011-08-18Make lazy_vacuum_rel call pg_rusage_init only if needed.Robert Haas
2011-08-16Preserve toast value OIDs in toast-swap-by-content for CLUSTER/VACUUM FULL.Tom Lane
2011-08-14Fix unsafe order of operations in foreign-table DDL commands.Tom Lane
2011-08-05Allow per-column foreign data wrapper options.Robert Haas
2011-08-04Create VXID locks "lazily" in the main lock table.Robert Haas
2011-07-23Rethink behavior of CREATE OR REPLACE during CREATE EXTENSION.Tom Lane
2011-07-20Support SECURITY LABEL on databases, tablespaces, and roles.Robert Haas
2011-07-19Remove superfluous variable.Robert Haas
2011-07-18Avoid index rebuild for no-rewrite ALTER TABLE .. ALTER TYPE.Robert Haas
2011-07-16Replace errdetail("%s", ...) with errdetail_internal("%s", ...).Tom Lane
2011-07-12Avoid listing ungrouped Vars in the targetlist of Agg-underneath-Window.Tom Lane
2011-07-09Try to acquire relation locks in RangeVarGetRelid.Robert Haas
2011-07-08Fix another oversight in logging of changes in postgresql.conf settings.Tom Lane
2011-07-08Message style improvementsPeter Eisentraut
2011-07-07Finish disabling reduced-lock-levels-for-DDL feature.Tom Lane
2011-07-05Call FDW validator functions even when the options list is empty.Tom Lane
2011-07-04Message style tweaksPeter Eisentraut
2011-07-04Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera
2011-07-04Don't try to use a constraint name as domain nameAlvaro Herrera
2011-07-04Remove unused variable to silence compiler warningPeter Eisentraut
2011-07-04Reset ALTER TABLE lock levels to AccessExclusiveLock in all cases.Simon Riggs