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, 4 insertions, 3 deletions
| diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h index 45d1835548a..c1774a2b379 100644 --- a/src/include/commands/tablecmds.h +++ b/src/include/commands/tablecmds.h @@ -7,7 +7,7 @@   * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group   * Portions Copyright (c) 1994, Regents of the University of California   * - * $PostgreSQL: pgsql/src/include/commands/tablecmds.h,v 1.46 2010/02/01 19:28:56 rhaas Exp $ + * $PostgreSQL: pgsql/src/include/commands/tablecmds.h,v 1.46.6.1 2010/08/18 18:35:30 tgl Exp $   *   *-------------------------------------------------------------------------   */ @@ -18,7 +18,7 @@  #include "utils/relcache.h" -extern Oid	DefineRelation(CreateStmt *stmt, char relkind); +extern Oid	DefineRelation(CreateStmt *stmt, char relkind, Oid ownerId);  extern void RemoveRelations(DropStmt *drop); diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 5325f7e924b..54eebbc4a5e 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -13,7 +13,7 @@   * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group   * Portions Copyright (c) 1994, Regents of the University of California   * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.432 2010/02/26 02:01:25 momjian Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.432.4.1 2010/08/18 18:35:30 tgl Exp $   *   *-------------------------------------------------------------------------   */ @@ -1696,6 +1696,7 @@ typedef struct CreateSeqStmt  	NodeTag		type;  	RangeVar   *sequence;		/* the sequence to create */  	List	   *options; +	Oid			ownerId;		/* ID of owner, or InvalidOid for default */  } CreateSeqStmt;  typedef struct AlterSeqStmt | 
