*** pgsql/src/include/nodes/parsenodes.h 2009/01/22 20:16:09 1.389 --- pgsql/src/include/nodes/parsenodes.h 2009/02/02 19:31:40 1.390 *************** *** 13,19 **** * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * ! * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.388 2009/01/16 13:27:24 heikki Exp $ * *------------------------------------------------------------------------- */ --- 13,19 ---- * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * ! * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.389 2009/01/22 20:16:09 tgl Exp $ * *------------------------------------------------------------------------- */ *************** typedef struct OptionDefElem *** 533,538 **** --- 533,549 ---- } OptionDefElem; /* + * Reloption definition. As DefElem, with optional option namespace. + */ + typedef struct ReloptElem + { + NodeTag type; + char *nmspc; + char *optname; + Node *arg; + } ReloptElem; + + /* * LockingClause - raw representation of FOR UPDATE/SHARE options * * Note: lockedRels == NIL means "all relations in query". Otherwise it