*** pgsql/src/backend/nodes/copyfuncs.c 2009/03/10 22:09:25 1.426 --- pgsql/src/backend/nodes/copyfuncs.c 2009/03/21 00:04:39 1.427 *************** *** 15,21 **** * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.425 2009/02/25 03:30:37 tgl Exp $ * *------------------------------------------------------------------------- */ --- 15,21 ---- * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.426 2009/03/10 22:09:25 tgl Exp $ * *------------------------------------------------------------------------- */ *************** _copyHash(Hash *from) *** 735,740 **** --- 735,744 ---- /* * copy remainder of node */ + COPY_SCALAR_FIELD(skewTable); + COPY_SCALAR_FIELD(skewColumn); + COPY_SCALAR_FIELD(skewColType); + COPY_SCALAR_FIELD(skewColTypmod); return newnode; }