| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove unnecessary #include references, per pgrminclude script. | Bruce Momjian | 2011-09-01 | 1 | -3/+0 |
| * | Allow per-column foreign data wrapper options. | Robert Haas | 2011-08-05 | 1 | -0/+25 |
| * | Message style tweaks | Peter Eisentraut | 2011-07-05 | 1 | -1/+1 |
| * | Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.h | Alvaro Herrera | 2011-07-04 | 1 | -1/+1 |
| * | Fix bugs in relpersistence handling during table creation. | Robert Haas | 2011-07-03 | 1 | -0/+4 |
| * | Fix outdated comment | Alvaro Herrera | 2011-06-29 | 1 | -2/+2 |
| * | Add smallserial pseudotype. | Robert Haas | 2011-06-21 | 1 | -1/+8 |
| * | Message style and spelling improvements | Peter Eisentraut | 2011-06-22 | 1 | -4/+4 |
| * | Rework parsing of ConstraintAttributeSpec to improve NOT VALID handling. | Tom Lane | 2011-06-15 | 1 | -1/+2 |
| * | Remove unused variable | Peter Eisentraut | 2011-06-14 | 1 | -2/+0 |
| * | Pgindent run before 9.1 beta2. | Bruce Momjian | 2011-06-09 | 1 | -5/+5 |
| * | Refactor broken CREATE TABLE IF NOT EXISTS support. | Robert Haas | 2011-04-25 | 1 | -4/+28 |
| * | Allow ALTER TABLE name {OF type | NOT OF}. | Robert Haas | 2011-04-20 | 1 | -21/+1 |
| * | Only allow typed tables to hang off composite types, not e.g. tables. | Robert Haas | 2011-04-18 | 1 | -1/+16 |
| * | Clean up most -Wunused-but-set-variable warnings from gcc 4.6 | Peter Eisentraut | 2011-04-11 | 1 | -2/+1 |
| * | pgindent run before PG 9.1 beta 1. | Bruce Momjian | 2011-04-10 | 1 | -35/+36 |
| * | Fix collations when we call transformWhereClause from outside the parser. | Tom Lane | 2011-04-07 | 1 | -0/+6 |
| * | More collations cleanup, from trawling for missed collation assignments. | Tom Lane | 2011-03-26 | 1 | -2/+49 |
| * | Make FKs valid at creation when added as column constraints. | Simon Riggs | 2011-03-22 | 1 | -0/+1 |
| * | Revise collation derivation method and expression-tree representation. | Tom Lane | 2011-03-19 | 1 | -0/+4 |
| * | Split CollateClause into separate raw and analyzed node types. | Tom Lane | 2011-03-11 | 1 | -1/+1 |
| * | Remove collation information from TypeName, where it does not belong. | Tom Lane | 2011-03-09 | 1 | -8/+38 |
| * | Per-column collation support | Peter Eisentraut | 2011-02-08 | 1 | -4/+5 |
| * | Replace pg_class.relhasexclusion with pg_index.indisexclusion. | Tom Lane | 2011-01-25 | 1 | -2/+2 |
| * | Implement ALTER TABLE ADD UNIQUE/PRIMARY KEY USING INDEX. | Tom Lane | 2011-01-25 | 1 | -69/+242 |
| * | Basic foreign table support. | Robert Haas | 2011-01-01 | 1 | -2/+5 |
| * | Stamp copyrights for year 2011. | Bruce Momjian | 2011-01-01 | 1 | -1/+1 |
| * | Generalize concept of temporary relations to "relation persistence". | Robert Haas | 2010-12-13 | 1 | -3/+4 |
| * | Allow WITH clauses to be attached to INSERT, UPDATE, DELETE statements. | Tom Lane | 2010-10-15 | 1 | -0/+29 |
| * | Add ALTER TYPE ... ADD/DROP/ALTER/RENAME ATTRIBUTE | Peter Eisentraut | 2010-09-26 | 1 | -0/+3 |
| * | Remove cvs keywords from all files. | Magnus Hagander | 2010-09-20 | 1 | -1/+1 |
| * | Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner. | Tom Lane | 2010-08-18 | 1 | -1/+13 |
| * | Standardize get_whatever_oid functions for other object types. | Robert Haas | 2010-08-05 | 1 | -3/+3 |
| * | Reduce lock levels of CREATE TRIGGER and some ALTER TABLE, CREATE RULE actions. | Simon Riggs | 2010-07-28 | 1 | -7/+16 |
| * | pgindent run for 9.0 | Bruce Momjian | 2010-02-26 | 1 | -18/+19 |
| * | Wrap calls to SearchSysCache and related functions using macros. | Robert Haas | 2010-02-14 | 1 | -13/+7 |
| * | Fix unwarranted assumption that a cached rowtype would stick around | Tom Lane | 2010-02-03 | 1 | -3/+3 |
| * | Type table feature | Peter Eisentraut | 2010-01-28 | 1 | -4/+54 |
| * | Update copyright for the year 2010. | Bruce Momjian | 2010-01-02 | 1 | -2/+2 |
| * | Adjust naming of indexes and their columns per recent discussion. | Tom Lane | 2009-12-23 | 1 | -23/+24 |
| * | Disallow comments on columns of relation types other than tables, views, | Tom Lane | 2009-12-22 | 1 | -43/+6 |
| * | There is no good reason for the CREATE TABLE LIKE INCLUDING COMMENTS code to | Tom Lane | 2009-12-20 | 1 | -26/+30 |
| * | Support ORDER BY within aggregate function calls, at long last providing a | Tom Lane | 2009-12-15 | 1 | -1/+2 |
| * | Add exclusion constraints, which generalize the concept of uniqueness to | Tom Lane | 2009-12-07 | 1 | -22/+116 |
| * | Clean up a couple of bizarre code formatting choices in recent CREATE LIKE pa... | Tom Lane | 2009-11-13 | 1 | -6/+10 |
| * | Don't treat NEW and OLD as reserved words anymore. For the purposes of rules | Tom Lane | 2009-11-05 | 1 | -5/+5 |
| * | Code review for LIKE INCLUDING patch --- clean up some cosmetic and not | Tom Lane | 2009-10-13 | 1 | -1/+3 |
| * | CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga... | Andrew Dunstan | 2009-10-12 | 1 | -38/+135 |
| * | Change CREATE TABLE so that column default expressions coming from different | Tom Lane | 2009-10-06 | 1 | -4/+4 |
| * | Merge the Constraint and FkConstraint node types into a single type. | Tom Lane | 2009-07-30 | 1 | -165/+132 |