/* We can create input splits only if there does exist a valid column group for split.
* Otherwise, we do not create input splits. */
if (splitCGIndex >= 0) {
Path path = new Path (reader.getPath().toString() + "/" + reader.getName(splitCGIndex));
DummyFileInputFormat.setInputPaths(conf, path);
PathFilter filter = reader.getPathFilter(conf);
DummyFileInputFormat.setInputPathFilter(conf, filter.getClass());
InputSplit[] inputSplits = helper.getSplits(conf, (numSplits < 1 ? 1 : numSplits));
long starts[] = new long[inputSplits.length];
long lengths[] = new long[inputSplits.length];
Path paths[] = new Path [inputSplits.length];