RawStoreFactory.STREAM_FILE_BUFFER_SIZE_DEFAULT);
decryptIn =
new DecryptInputStream(fileIn, byteHolder, dataFactory);
limitIn = new LimitInputStream(decryptIn);
}
else
{
bufferedIn =
new BufferedInputStream(
fileIn,
RawStoreFactory.STREAM_FILE_BUFFER_SIZE_DEFAULT);
limitIn = new LimitInputStream(bufferedIn);
}
// the logicalDataIn input stream is on top of a limit Input
// stream, use a limit stream to make sure we don't read off
// more then what each column says it contains