summaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAgeFilesLines
* Add an EXPLAIN (BUFFERS) option to show buffer-usage statistics.Robert Haas2009-12-151-2/+2
* Add large object access control.Itagaki Takahiro2009-12-111-1/+2
* Prevent indirect security attacks via changing session-local state withinTom Lane2009-12-091-1/+11
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-071-1/+3
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-201-5/+8
* Allow rewriting ALTER TABLE to skip WAL logging.Heikki Linnakangas2009-11-041-2/+36
* Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane2009-10-141-1/+4
* Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane2009-10-131-29/+20
* CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan2009-10-121-1/+62
* Change CREATE TABLE so that column default expressions coming from differentTom Lane2009-10-061-9/+9
* Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane2009-10-051-1/+3
* Extend the BKI infrastructure to allow system catalogs to be givenTom Lane2009-09-261-1/+2
* Make TRUNCATE do truncate-in-place when processing a relation that was createdTom Lane2009-08-231-22/+45
* Improve error message for the case where a requested foreign key constraintTom Lane2009-08-121-9/+32
* Fix some omissions in the dependency-object-class support for SQL/MED objects.Tom Lane2009-08-071-1/+9
* Add ALTER TABLE ... ALTER COLUMN ... SET STATISTICS DISTINCTTom Lane2009-08-021-7/+109
* Merge the Constraint and FkConstraint node types into a single type.Tom Lane2009-07-301-80/+68
* Support deferrable uniqueness constraints.Tom Lane2009-07-291-7/+24
* Add system catalog columns pg_constraint.conindid and pg_trigger.tgconstrindid.Tom Lane2009-07-281-12/+18
* DROP IF EXISTS for columns and constraints. Andres Freund.Andrew Dunstan2009-07-201-23/+53
* Make backend header files C++ safePeter Eisentraut2009-07-161-25/+25
* Move some declarations in the raw-parser header files to create a clearerTom Lane2009-07-121-2/+1
* Fix the just-reported problem that you can't specify all four trigger eventTom Lane2009-06-181-9/+5
* Revisit AlterTableCreateToastTable's API once again, hoping to make it whatTom Lane2009-06-111-2/+3
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-136/+142
* Silence a gcc compiler warning about non-literal format string with no argsHeikki Linnakangas2009-05-201-2/+2
* Modify find_inheritance_children() and find_all_inheritors() to add theTom Lane2009-05-121-18/+31
* Do some minor code refactoring in preparation for changing the APIs ofTom Lane2009-05-121-6/+1
* Add an option to AlterTableCreateToastTable() to allow its caller to forceTom Lane2009-05-071-2/+2
* Modify the relcache to record the temp status of both local and nonlocalTom Lane2009-03-311-10/+9
* Change ALTER TABLE SET WITHOUT OIDS to rewrite the whole table to physicallyTom Lane2009-02-111-29/+101
* Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera2009-02-021-4/+54
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-221-23/+39
* Add ONLY support to LOCK and TRUNCATE. By default, these commands are nowPeter Eisentraut2009-01-121-3/+27
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Support window functions a la SQL:2008.Tom Lane2008-12-281-1/+5
* Code review for CREATE OR REPLACE VIEW patch. Do things in a saner order toTom Lane2008-12-151-14/+15
* Increase the default value of default_statistics_target from 10 to 100,Tom Lane2008-12-131-3/+3
* Allow CREATE OR REPLACE VIEW to add columns to the _end_ of the view.Bruce Momjian2008-12-061-33/+46
* Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas2008-11-191-8/+13
* Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera2008-11-141-36/+24
* Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane2008-11-021-20/+20
* Use format_type_be() instead of TypeNameToString() for some more user-facingPeter Eisentraut2008-10-211-5/+5
* When a relation is moved to another tablespace, we can't assume that we canHeikki Linnakangas2008-10-071-1/+12
* Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane2008-09-081-3/+7
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-2/+3
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-281-4/+7
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-251-1/+2
* Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas2008-08-111-32/+40
* Fix previous patch so that it actually works --- consider TRUNCATE foo, publi...Tom Lane2008-07-161-4/+7