position = in.getPos();
storageSize = in.getSize();
int indexcount = t.getIndexCount();
nPrimaryNode = new NodeAVLDiskLarge(this, in, 0);
NodeAVL n = nPrimaryNode;
for (int i = 1; i < indexcount; i++) {
n.nNext = new NodeAVLDiskLarge(this, in, i);
n = n.nNext;
}
rowData = in.readData(table.getColumnTypes());
}