From: <kn...@gr...> - 2000-03-11 22:50:21
|
Hmmmm, the data does appear on the wrong page. I have no idea why. Also, the code in data.c reads: for (pg_num=1;pg_num<=table->num_pgs;pg_num++) { mdb_read_pg(mdb,table->first_data_pg + pg_num); This should read (methinks): for (pg_num = 0; pg_num < table->num_pgs; pg_num++) { mdb_read_pg (mdb, table->first_data_pg + pg_num); -- Karl -- |