HBASE-1671 HBASE-1609 broke scanners riding across splits

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@798687 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2009-07-28 19:53:06 +00:00
parent a68b5ee409
commit 3c8db4d968
1 changed files with 2 additions and 2 deletions

View File

@ -23,10 +23,10 @@ import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hbase.HRegionInfo;
import org.apache.hadoop.hbase.HBaseConfiguration;
import org.apache.hadoop.hbase.KeyValue;
import org.apache.hadoop.hbase.client.Delete;
import org.apache.hadoop.hbase.client.Put;
@ -42,7 +42,7 @@ import org.apache.hadoop.io.SequenceFile;
*/
class THLog extends HLog {
public THLog(FileSystem fs, Path dir, Configuration conf,
public THLog(FileSystem fs, Path dir, HBaseConfiguration conf,
LogRollListener listener) throws IOException {
super(fs, dir, conf, listener);
}