*** pgsql/src/backend/nodes/readfuncs.c 2008/10/06 17:39:26 1.216 --- pgsql/src/backend/nodes/readfuncs.c 2008/11/15 19:43:46 1.217 *************** *** 8,14 **** * * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/nodes/readfuncs.c,v 1.215 2008/10/04 21:56:53 tgl Exp $ * * NOTES * Path and Plan nodes do not have any readfuncs support, because we --- 8,14 ---- * * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/nodes/readfuncs.c,v 1.216 2008/10/06 17:39:26 tgl Exp $ * * NOTES * Path and Plan nodes do not have any readfuncs support, because we *************** _readRowMarkClause(void) *** 226,233 **** --- 226,235 ---- READ_LOCALS(RowMarkClause); READ_UINT_FIELD(rti); + READ_UINT_FIELD(prti); READ_BOOL_FIELD(forUpdate); READ_BOOL_FIELD(noWait); + READ_BOOL_FIELD(isParent); READ_DONE(); }