summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2014-08-09Reject duplicate column names in foreign key referenced-columns lists.Tom Lane
2014-07-31Move log_newpage and log_newpage_buffer to xlog.c.Heikki Linnakangas
2014-07-22Reject out-of-range numeric timezone specifications.Tom Lane
2014-07-21Adjust cutoff points in newly-added sanity tests.Tom Lane
2014-07-21Defend against bad relfrozenxid/relminmxid/datfrozenxid/datminmxid values.Tom Lane
2014-07-14Move view reloptions into their own varlena structAlvaro Herrera
2014-07-14Prevent bitmap heap scans from showing unnecessary block info in EXPLAIN ANAL...Fujii Masao
2014-07-10Implement IMPORT FOREIGN SCHEMA.Tom Lane
2014-07-02Allow CREATE/ALTER DATABASE to manipulate datistemplate and datallowconn.Tom Lane
2014-07-01Refactor CREATE/ALTER DATABASE syntax so options need not be keywords.Tom Lane
2014-06-27Have multixact be truncated by checkpoint, not vacuumAlvaro Herrera
2014-06-27Don't allow relminmxid to go backwards during VACUUM FULLAlvaro Herrera
2014-06-24Don't allow foreign tables with OIDs.Heikki Linnakangas
2014-06-20Do all-visible handling in lazy_vacuum_page() outside its critical section.Andres Freund
2014-06-20Don't allow to disable backend assertions via the debug_assertions GUC.Andres Freund
2014-06-12Fix typosAlvaro Herrera
2014-05-20Prevent auto_explain from changing the output of a user's EXPLAIN.Tom Lane
2014-05-06pgindent run for 9.4Bruce Momjian
2014-04-30Rationalize common/relpath.[hc].Tom Lane
2014-04-23Allow polymorphic aggregates to have non-polymorphic state data types.Tom Lane
2014-04-22Avoid transient bogus page contents when creating a sequence.Heikki Linnakangas
2014-04-17Set the all-visible flag on heap page before writing WAL record, not after.Heikki Linnakangas
2014-04-17Rename EXPLAIN ANALYZE's "total runtime" output to "execution time".Tom Lane
2014-04-13Improve some O(N^2) behavior in window function evaluation.Tom Lane
2014-04-13Make security barrier views automatically updatableStephen Frost
2014-04-12Create infrastructure for moving-aggregate optimization.Tom Lane
2014-04-06Reduce lock levels of some ALTER TABLE cmdsSimon Riggs
2014-04-05Fix tablespace creation WAL replay to work on Windows.Tom Lane
2014-03-23Offer triggers on foreign tables.Noah Misch
2014-03-23Improve comments about AfterTriggerBeginQuery() query level usage.Noah Misch
2014-03-18Fix relcache reference leak in refresh_by_match_merge().Tom Lane
2014-03-13Avoid transaction-commit race condition while receiving a NOTIFY message.Tom Lane
2014-03-08C comments: improve description of relfilenode uniquenessBruce Momjian
2014-03-07Avoid getting more than AccessShareLock when deparsing a query.Tom Lane
2014-03-04Provide a FORCE NULL option to COPY in CSV mode.Andrew Dunstan
2014-03-04Allow VACUUM FULL/CLUSTER to bump freeze horizons even for pg_class.Robert Haas
2014-03-03Introduce logical decoding.Robert Haas
2014-02-25Update a few comments to mention materialized views.Robert Haas
2014-02-23Prefer pg_any_to_server/pg_server_to_any over pg_do_encoding_conversion.Tom Lane
2014-02-17Avoid repeated name lookups during table and index DDL.Robert Haas
2014-02-17Prevent privilege escalation in explicit calls to PL validators.Noah Misch
2014-02-17Shore up ADMIN OPTION restrictions.Noah Misch
2014-02-13Separate multixact freezing parameters from xid'sAlvaro Herrera
2014-02-09Mark some more variables as static or include the appropriate headerPeter Eisentraut
2014-01-30Fix unsafe references to errno within error messaging logic.Tom Lane
2014-01-29Include planning time in EXPLAIN ANALYZE output.Robert Haas
2014-01-24ALTER TABLESPACE ... MOVE ... OWNED BYStephen Frost
2014-01-23Make DROP IF EXISTS more consistently not failAlvaro Herrera
2014-01-20Expose a routine to print triggers during EXPLAIN ANALYZEAlvaro Herrera
2014-01-20Fix typo in comment.Fujii Masao