HADOOP-2629 Shell digests garbage without complaint
git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@612931 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
246d4b80ab
commit
74df13a369
|
@ -136,6 +136,7 @@ Trunk (unreleased changes)
|
||||||
to have
|
to have
|
||||||
HADOOP-2493 hbase will split on row when the start and end row is the
|
HADOOP-2493 hbase will split on row when the start and end row is the
|
||||||
same cause data loss (Bryan Duxbury via Stack)
|
same cause data loss (Bryan Duxbury via Stack)
|
||||||
|
HADOOP-2629 Shell digests garbage without complaint
|
||||||
|
|
||||||
IMPROVEMENTS
|
IMPROVEMENTS
|
||||||
HADOOP-2401 Add convenience put method that takes writable
|
HADOOP-2401 Add convenience put method that takes writable
|
||||||
|
|
|
@ -115,8 +115,10 @@ public class Shell {
|
||||||
|
|
||||||
long end = System.currentTimeMillis();
|
long end = System.currentTimeMillis();
|
||||||
if (rs != null && rs.getType() > -1)
|
if (rs != null && rs.getType() > -1)
|
||||||
System.out.println(rs.getMsg()
|
System.out.println(rs.getMsg() + executeTime((rs.getType() == 1), start, end));
|
||||||
+ executeTime((rs.getType() == 1), start, end));
|
else if (rs.getType() == -9)
|
||||||
|
System.out.println(rs.getMsg());
|
||||||
|
|
||||||
queryStr = new StringBuilder();
|
queryStr = new StringBuilder();
|
||||||
} else {
|
} else {
|
||||||
queryStr.append(" " + extendedLine);
|
queryStr.append(" " + extendedLine);
|
||||||
|
|
Loading…
Reference in New Issue