diff options
| author | Bruce Momjian | 2004-08-20 04:29:33 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2004-08-20 04:29:33 +0000 |
| commit | 09d4e96d7e957ae34263650498b279452fe95265 (patch) | |
| tree | e4a06683989e5feef20c2848305799a18d1b4de5 /src/include/nodes | |
| parent | daa076c4fdd32aff597eda4c34347d488c5b1e3a (diff) | |
Add ALTER INDEX, particularly for moving tablespaces.
Gavin Sherry
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index aff28bea08f..862b2572d91 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.266 2004/08/19 20:57:41 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.267 2004/08/20 04:29:33 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -797,6 +797,7 @@ typedef struct AlterTableStmt NodeTag type; RangeVar *relation; /* table to work on */ List *cmds; /* list of subcommands */ + ObjectType relkind; /* type of object */ } AlterTableStmt; typedef enum AlterTableType |
