HBASE-16409 Addendum fixes the case where delimiter is not specified by user
Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/dd488c06 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/dd488c06 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/dd488c06 Branch: refs/heads/0.98 Commit: dd488c06f69af5383726fcc38877829de57369e6 Parents: e05e70c Author: tedyu <[email protected]> Authored: Thu Aug 25 11:54:42 2016 -0700 Committer: Andrew Purtell <[email protected]> Committed: Thu Dec 1 16:43:31 2016 -0800 ---------------------------------------------------------------------- .../hadoop/hbase/mapreduce/replication/VerifyReplication.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/dd488c06/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java index 6c1e490..5fc3dd5 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/replication/VerifyReplication.java @@ -80,7 +80,7 @@ public class VerifyReplication extends Configured implements Tool { static int versions = -1; static String tableName = null; static String families = null; - static String delimiter = null; + static String delimiter = ""; static String peerId = null; static String rowPrefixes = null;
