diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/commands/tablecmds.h | 4 | ||||
| -rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h index 6b533cab2fc..a87dbdf5f29 100644 --- a/src/include/commands/tablecmds.h +++ b/src/include/commands/tablecmds.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: tablecmds.h,v 1.11 2003/02/13 05:20:03 momjian Exp $ + * $Id: tablecmds.h,v 1.12 2003/03/20 18:52:48 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -43,6 +43,8 @@ extern void AlterTableDropConstraint(Oid myrelid, bool recurse, const char *constrName, DropBehavior behavior); +extern void AlterTableClusterOn(Oid relOid, const char *indexName); + extern void AlterTableCreateToastTable(Oid relOid, bool silent); extern void AlterTableOwner(Oid relationOid, int32 newOwnerSysId); diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index b215f8a98f5..49887f450cb 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.234 2003/03/20 07:02:11 momjian Exp $ + * $Id: parsenodes.h,v 1.235 2003/03/20 18:52:48 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -704,6 +704,7 @@ typedef struct AlterTableStmt * X = drop constraint * E = create toast table * U = change owner + * L = CLUSTER ON * o = DROP OIDS *------------ */ |
