aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/tablecmds.c
Commit message (Expand)AuthorAge
* Support window functions a la SQL:2008.Tom Lane2008-12-28
* Code review for CREATE OR REPLACE VIEW patch. Do things in a saner order toTom Lane2008-12-15
* Increase the default value of default_statistics_target from 10 to 100,Tom Lane2008-12-13
* Allow CREATE OR REPLACE VIEW to add columns to the _end_ of the view.Bruce Momjian2008-12-06
* Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas2008-11-19
* Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera2008-11-14
* Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane2008-11-02
* Use format_type_be() instead of TypeNameToString() for some more user-facingPeter Eisentraut2008-10-21
* When a relation is moved to another tablespace, we can't assume that we canHeikki Linnakangas2008-10-07
* Create a separate grantable privilege for TRUNCATE, rather than having it beTom Lane2008-09-08
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-01
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-28
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-25
* Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas2008-08-11
* Fix previous patch so that it actually works --- consider TRUNCATE foo, publi...Tom Lane2008-07-16
* Allow TRUNCATE foo, foo to succeed, per report from Nikhils.Bruce Momjian2008-07-16
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-19
* Make DROP INDEX lock the parent table before locking the index. This behaviorTom Lane2008-06-15
* Rearrange ALTER TABLE syntax processing as per my recent proposal: theTom Lane2008-06-15
* Refactor the handling of the various DropStmt variants so that when multipleTom Lane2008-06-14
* Coercion sanity check in ri_HashCompareOp failed to allow for enums, as perTom Lane2008-05-19
* Add a RESTART (without parameter) option to ALTER SEQUENCE, allowing aTom Lane2008-05-16
* Restructure some header files a bit, in particular heapam.h, by removing someAlvaro Herrera2008-05-12
* Change the rules for inherited CHECK constraints to be essentially the sameTom Lane2008-05-09
* Fix ALTER TABLE ADD COLUMN ... PRIMARY KEY so that the new column is correctlyTom Lane2008-04-24
* Fix my brain fade in TRUNCATE triggers patch: can't release relcache refcountsTom Lane2008-03-31
* Support statement-level ON TRUNCATE triggers. Simon RiggsTom Lane2008-03-28
* Reduce the need for frontend programs to include "postgres.h" by refactoringTom Lane2008-03-27
* Move the HTSU_Result enum definition into snapshot.h, to avoid includingAlvaro Herrera2008-03-26
* Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.Alvaro Herrera2008-03-26
* Separate snapshot management code from tuple visibility code, create aAlvaro Herrera2008-03-26
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-25
* Support ALTER TYPE RENAME. Petr JelinekTom Lane2008-03-19
* Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane2008-02-07
* Add checks to TRUNCATE, CLUSTER, and REINDEX to prevent performing theseTom Lane2008-01-30
* Fix ALTER INDEX RENAME so that if the index belongs to a unique or primary keyTom Lane2008-01-17
* Forbid ALTER TABLE and CLUSTER when there are pending AFTER-trigger eventsTom Lane2008-01-02
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-01
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane2007-11-11
* Remove hack in pg_tablespace_aclmask() that disallowed permissionsTom Lane2007-10-12
* Improve consistency of the error messages generated when you try to useTom Lane2007-09-29
* Make eval_const_expressions() preserve typmod when simplifying something likeTom Lane2007-09-06
* Tsearch2 functionality migrates to core. The bulk of this work is byTom Lane2007-08-21
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-17
* Add ALTER VIEW ... RENAME TO, and a RENAME TO clause to ALTER SEQUENCE.Neil Conway2007-07-03
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-23
* Clarify some error messages about duplicate things.Peter Eisentraut2007-06-03
* Create a GUC parameter temp_tablespaces that allows selection of theTom Lane2007-06-03