summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2006-10-18Add some code to CREATE DATABASE to check for pre-existing subdirectoriesTom Lane
2006-10-13Code and docs review for ALTER TABLE INHERIT/NO INHERIT patch.Tom Lane
2006-10-11Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane
2006-10-06Message style improvementsPeter Eisentraut
2006-10-05Make use of qsort_arg in several places that were formerly using klugyTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-10-03Make some sentences consistent with similar ones.Bruce Momjian
2006-09-27Replace strncpy with strlcpy in selected places that seem possibly relevantTom Lane
2006-09-25Fix notice message from DROP FUNCTION IF EXISTS, and improve messageTom Lane
2006-09-21Fix free space map to correctly track the total amount of FSM space neededTom Lane
2006-09-17Change ANALYZE to take ShareUpdateExclusiveLock not AccessShareLock onTom Lane
2006-09-17Marginal cleanup in arrangements for ensuring StrategyHintVacuum is clearedTom Lane
2006-09-13Code review for patch to avoid second scan when vacuuming index-lessTom Lane
2006-09-07Clean up logging for extended-query-protocol operations, as per my recentTom Lane
2006-09-06Change processing of extended-Query mode so that an unnamed statementTom Lane
2006-09-05Get rid of the separate RULE privilege for tables: now only a table's ownerTom Lane
2006-09-04Trivial patch to double vacuum speed on tables with no indexes (preventBruce Momjian
2006-09-04Disallow TRUNCATE when there are any pending after-trigger events forTom Lane
2006-09-03Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian
2006-09-02Change FETCH/MOVE to use int8.Bruce Momjian
2006-08-31Attibution addition: Add Karel Zak also for COPY SELECT.Bruce Momjian
2006-08-31Correct attibution:Bruce Momjian
2006-08-30Extend COPY to support COPY (SELECT ...) TO ...Tom Lane
2006-08-29Now bind displays prepare as detail, and execute displays prepare andBruce Momjian
2006-08-27Add a function GetLockConflicts() to lock.c to report xacts holdingTom Lane
2006-08-25Add the ability to create indexes 'concurrently', that is, withoutTom Lane
2006-08-21Fix all known problems with pg_dump's handling of serial sequencesTom Lane
2006-08-18Now that we've rearranged relation open to get a lock before touchingTom Lane
2006-08-14Fix oversight in initial implementation of PORTAL_ONE_RETURNING mode: weTom Lane
2006-08-12Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane
2006-08-12Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane
2006-08-08For protocol-level prepare/bind/execute:Bruce Momjian
2006-08-03Cause ALTER TABLE to perform ALTER COLUMN DROP DEFAULT operations duringTom Lane
2006-08-03Fix AfterTriggerExecute() to pass tg_trigtuple and tg_newtuple as NULLsTom Lane
2006-08-02Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway
2006-07-31Change the relation_open protocol so that we obtain lock on a relationTom Lane
2006-07-31Change the bootstrap sequence so that toast tables for system catalogs areTom Lane
2006-07-30Modify snapshot definition so that lazy vacuums are ignored by otherAlvaro Herrera
2006-07-27Aggregate functions now support multiple input arguments. I also tookTom Lane
2006-07-18Mark a few functions as static or NOT_USED.Bruce Momjian
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-07-11Alphabetically order reference to include files, "S"-"Z".Bruce Momjian
2006-07-11Alphabetically order reference to include files, "N" - "S".Bruce Momjian
2006-07-11Alphabetically order reference to include files, "G" - "M".Bruce Momjian
2006-07-11Sort reference of include files, "A" - "F".Bruce Momjian
2006-07-10Fix ALTER TABLE to check pre-existing NOT NULL constraints when rewritingTom Lane
2006-07-10Improve vacuum code to track minimum Xids per table instead of per database.Alvaro Herrera
2006-07-03Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane
2006-07-02Do a pass of code review for the ALTER TABLE ADD INHERITS patch. KeepNeil Conway