HBASE-1942 Update hadoop jars in trunk

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@831145 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-10-29 23:05:29 +00:00
parent b58a646039
commit ecd4cecd19
8 changed files with 1 additions and 2 deletions

Binary file not shown.

View File

@ -320,13 +320,12 @@ abstract class BaseScanner extends Chore implements HConstants {
for (HColumnDescriptor family: split.getTableDesc().getFamilies()) {
Path p = Store.getStoreHomedir(tabledir, split.getEncodedName(),
family.getName());
if (!this.master.getFileSystem().exists(p)) continue;
// Look for reference files. Call listStatus with an anonymous
// instance of PathFilter.
LOG.debug("Looking for reference files in: " + p);
FileStatus [] ps =
this.master.getFileSystem().listStatus(p, new PathFilter () {
public boolean accept(Path path) {
LOG.debug("isReference: " + path);
return StoreFile.isReference(path);
}
}