286287288289290291292293294295296
if (this.scan == null) { throw new IOException("No Scan instance provided"); } this.tableRecordReader = new TableRecordReader(); this.tableRecordReader.setHTable(this.table); Scan sc = new Scan(this.scan); sc.setStartRow(split.getStartRow());
279280281282283284285286287288289