*/
static Reference readSplitInfo(final Path p, final FileSystem fs)
throws IOException {
FSDataInputStream in = fs.open(p);
Text rn = new Text();
rn.readFields(in);
HStoreKey midkey = new HStoreKey();
midkey.readFields(in);
long fid = in.readLong();
boolean tmp = in.readBoolean();
return new Reference(rn, fid, midkey, tmp? Range.top: Range.bottom);