summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Expand)Author
2009-10-06Change CREATE TABLE so that column default expressions coming from differentHEADmasterTom Lane
2009-10-05Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane
2009-10-02Ensure that a cursor has an immutable snapshot throughout its lifespan.Alvaro Herrera
2009-09-26Extend the BKI infrastructure to allow system catalogs to be givenTom Lane
2009-09-22Implement the DO statement to support execution of PL code without havingTom Lane
2009-09-21Define a new, more extensible syntax for COPY options.Tom Lane
2009-09-12Install a hopefully-temporary workaround for Snow Leopard readdir() bug.Tom Lane
2009-09-03Disallow RESET ROLE and RESET SESSION AUTHORIZATION inside security-definerTom Lane
2009-09-01Force VACUUM to recalculate oldestXmin even when we haven't changed ourTom Lane
2009-09-01Remove flatfiles.c, which is now obsolete.Alvaro Herrera
2009-08-31Track the current XID wrap limit (or more accurately, the oldest unfrozenTom Lane
2009-08-24Fix a violation of WAL coding rules in the recent patch to include anTom Lane
2009-08-23Make TRUNCATE do truncate-in-place when processing a relation that was createdTom Lane
2009-08-22Include resjunk columns in EXPLAIN VERBOSE output lists. Per discussion.Tom Lane
2009-08-12Improve error message for the case where a requested foreign key constraintTom Lane
2009-08-12Fix old bug in log_autovacuum_min_duration code: it was relying on being ableTom Lane
2009-08-10Extend EXPLAIN to support output in XML or JSON format.Tom Lane
2009-08-07Fix some omissions in the dependency-object-class support for SQL/MED objects.Tom Lane
2009-08-04Support hex-string input and output for type BYTEA.Tom Lane
2009-08-02Add ALTER TABLE ... ALTER COLUMN ... SET STATISTICS DISTINCTTom Lane
2009-07-31Create a multiplexing structure for signals to Postgres child processes.Tom Lane
2009-07-30Merge the Constraint and FkConstraint node types into a single type.Tom Lane
2009-07-29Support deferrable uniqueness constraints.Tom Lane
2009-07-28Add system catalog columns pg_constraint.conindid and pg_trigger.tgconstrindid.Tom Lane
2009-07-26Extend EXPLAIN to allow generic options to be specified.Tom Lane
2009-07-25Code review for FORCE QUOTE * patch: fix error checking to consider FORCETom Lane
2009-07-25Small stylistic improvement in recent FORCE QUOTE * code - use a bool instead...Andrew Dunstan
2009-07-25Allow * as parameter for FORCE QUOTE for COPY CSV. Itagaki Takahiro.Andrew Dunstan
2009-07-24Assorted minor refactoring in EXPLAIN.Tom Lane
2009-07-21Change pg_listener attribute number constants to match the usual patternPeter Eisentraut
2009-07-20DROP IF EXISTS for columns and constraints. Andres Freund.Andrew Dunstan
2009-07-16Make backend header files C++ safePeter Eisentraut
2009-07-12Move some declarations in the raw-parser header files to create a clearerTom Lane
2009-06-18Fix the just-reported problem that you can't specify all four trigger eventTom Lane
2009-06-11Revisit AlterTableCreateToastTable's API once again, hoping to make it whatTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-06-06Improve the IndexVacuumInfo/IndexBulkDeleteResult API to allow somewhat saneTom Lane
2009-06-03Improve comment about 'if (1)' hack in copy.c macros.Tom Lane
2009-06-03Add comment about why "((void) 0)" is used in copy macros.Bruce Momjian
2009-05-29Change macros to make gcc quiet when parsing.Michael Meskes
2009-05-20Silence a gcc compiler warning about non-literal format string with no argsHeikki Linnakangas
2009-05-19Update relpages and reltuples estimates in stand-alone ANALYZE, even ifHeikki Linnakangas
2009-05-12Fix LOCK TABLE to eliminate the race condition that could make it give weirdTom Lane
2009-05-12Modify find_inheritance_children() and find_all_inheritors() to add theTom Lane
2009-05-12Do some minor code refactoring in preparation for changing the APIs ofTom Lane
2009-05-07Add an option to AlterTableCreateToastTable() to allow its caller to forceTom Lane
2009-05-06Modify CREATE DATABASE to enforce that the source database's encoding settingTom Lane
2009-05-05Tweak a comment to agree a bit better with the new dispensation thatTom Lane
2009-05-05Avoid integer overflow in the loop that extracts histogram entries fromTom Lane
2009-04-23Don't use the result of strcmp as if it were a boolean.Tom Lane