return InterStorage.class.getName();
}
public static FileInputLoadFunc getTmpFileStorageObject(Configuration conf) throws IOException {
boolean tmpFileCompression = conf.getBoolean("pig.tmpfilecompression", false);
return tmpFileCompression ? new TFileStorage() : new InterStorage();
}