HBASE-20350 NullPointerException in Scanner during close()
This commit is contained in:
parent
0773209dd3
commit
0f6ff895e9
|
@ -224,8 +224,8 @@ public class KeyValueHeap extends NonReversedNonLazyKeyValueScanner
|
|||
this.current.close();
|
||||
}
|
||||
if (this.heap != null) {
|
||||
KeyValueScanner scanner;
|
||||
while ((scanner = this.heap.poll()) != null) {
|
||||
// Order of closing the scanners shouldn't matter here, so simply iterate and close them.
|
||||
for (KeyValueScanner scanner : heap) {
|
||||
scanner.close();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue