[COMMITTERS] pgsql: Allow ALTER TABLE ONLY on partitioned tables

2017-04-25 Thread Stephen Frost
Allow ALTER TABLE ONLY on partitioned tables There is no need to forbid ALTER TABLE ONLY on partitioned tables, when no partitions exist yet. This can be handy for users who are building up their partitioned table independently and will create actual partitions later. In addition, this is how pg

Re: [COMMITTERS] pgsql: Allow ALTER TABLE name {OF type | NOT OF}.

2011-05-27 Thread Cédric Villemain
2011/4/21 Robert Haas : > Allow ALTER TABLE name {OF type | NOT OF}. > > This syntax allows a standalone table to be made into a typed table, > or a typed table to be made standalone.  This is possibly a mildly > useful feature in its own right, but the real motivation for this > change is that we

[COMMITTERS] pgsql: Allow ALTER TABLE name {OF type | NOT OF}.

2011-04-20 Thread Robert Haas
Allow ALTER TABLE name {OF type | NOT OF}. This syntax allows a standalone table to be made into a typed table, or a typed table to be made standalone. This is possibly a mildly useful feature in its own right, but the real motivation for this change is that we need it to make pg_upgrade work wit

[COMMITTERS] pgsql: Allow ALTER TABLE ..

2010-07-01 Thread Robert Haas
Log Message: --- Allow ALTER TABLE .. SET TABLESPACE to be interrupted. Backpatch to 8.0, where tablespaces were introduced. Guillaume Lelarge Tags: REL8_4_STABLE Modified Files: -- pgsql/src/backend/commands: tablecmds.c (r1.288.2.3 -> r1.288.2.4)

[COMMITTERS] pgsql: Allow ALTER TABLE ..

2010-07-01 Thread Robert Haas
Log Message: --- Allow ALTER TABLE .. SET TABLESPACE to be interrupted. Backpatch to 8.0, where tablespaces were introduced. Guillaume Lelarge Tags: REL8_3_STABLE Modified Files: -- pgsql/src/backend/commands: tablecmds.c (r1.242.2.5 -> r1.242.2.6)

[COMMITTERS] pgsql: Allow ALTER TABLE ..

2010-07-01 Thread Robert Haas
Log Message: --- Allow ALTER TABLE .. SET TABLESPACE to be interrupted. Backpatch to 8.0, where tablespaces were introduced. Guillaume Lelarge Tags: REL8_2_STABLE Modified Files: -- pgsql/src/backend/commands: tablecmds.c (r1.206.2.8 -> r1.206.2.9)

[COMMITTERS] pgsql: Allow ALTER TABLE ..

2010-07-01 Thread Robert Haas
Log Message: --- Allow ALTER TABLE .. SET TABLESPACE to be interrupted. Backpatch to 8.0, where tablespaces were introduced. Guillaume Lelarge Tags: REL8_1_STABLE Modified Files: -- pgsql/src/backend/commands: tablecmds.c (r1.174.2.9 -> r1.174.2.10)

[COMMITTERS] pgsql: Allow ALTER TABLE ..

2010-07-01 Thread Robert Haas
Log Message: --- Allow ALTER TABLE .. SET TABLESPACE to be interrupted. Backpatch to 8.0, where tablespaces were introduced. Guillaume Lelarge Tags: REL8_0_STABLE Modified Files: -- pgsql/src/backend/commands: tablecmds.c (r1.142.4.11 -> r1.142.4.12)

[COMMITTERS] pgsql: Allow ALTER TABLE ..

2010-07-01 Thread Robert Haas
Log Message: --- Allow ALTER TABLE .. SET TABLESPACE to be interrupted. Backpatch to 8.0, where tablespaces were introduced. Guillaume Lelarge Modified Files: -- pgsql/src/backend/commands: tablecmds.c (r1.330 -> r1.331) (http://anoncvs.postgresql.org/cvs

Re: [COMMITTERS] pgsql: Allow ALTER TABLE ...

2006-02-11 Thread Tom Lane
[EMAIL PROTECTED] (Bruce Momjian) writes: > Log Message: > --- > Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAME This patch appears seriously broken, in particular every routine I looked at contained incorrect locking assumptions. Nor do I care for using pg_depend for the purposes it's

[COMMITTERS] pgsql: Allow ALTER TABLE ...

2006-02-11 Thread Bruce Momjian
Log Message: --- Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAME Joachim Wieland Modified Files: -- pgsql/doc/src/sgml: ddl.sgml (r1.52 -> r1.53) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ddl.sgml.diff?r1=1.52&r2=1.53) pgsql/doc/