*** pgsql/src/backend/access/gist/gistutil.c 2009/01/05 17:14:28 1.33 --- pgsql/src/backend/access/gist/gistutil.c 2009/06/11 14:48:53 1.34 *************** *** 8,14 **** * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/access/gist/gistutil.c,v 1.32 2009/01/01 17:23:35 momjian Exp $ *------------------------------------------------------------------------- */ #include "postgres.h" --- 8,14 ---- * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/access/gist/gistutil.c,v 1.33 2009/01/05 17:14:28 alvherre Exp $ *------------------------------------------------------------------------- */ #include "postgres.h" *************** gistfillbuffer(Page page, IndexTuple *it *** 43,49 **** for (i = 0; i < len; i++) { ! Size sz = IndexTupleSize(itup[i]); l = PageAddItem(page, (Item) itup[i], sz, off, false, false); if (l == InvalidOffsetNumber) elog(ERROR, "failed to add item to GiST index page, item %d out of %d, size %d bytes", --- 43,50 ---- for (i = 0; i < len; i++) { ! Size sz = IndexTupleSize(itup[i]); ! l = PageAddItem(page, (Item) itup[i], sz, off, false, false); if (l == InvalidOffsetNumber) elog(ERROR, "failed to add item to GiST index page, item %d out of %d, size %d bytes",