// check if anything was changed
final boolean dirty = fds.readBoolean();
if (dirty)
m_dirty = true;
// get a copy of the buffer
final ByteBuffer fullBacking = fds.readBuffer(totalSize);
final VoltTable[] results = new VoltTable[batchSize];
for (int i = 0; i < batchSize; ++i) {
final int numdeps = fullBacking.getInt(); // number of dependencies for this frag
assert(numdeps == 1);
@SuppressWarnings("unused")