HBASE-10112 Hbase rest query params for maxVersions and maxValues are not parsed

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1549899 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2013-12-10 17:23:12 +00:00
parent 2323f53d81
commit e7c1acfecc
1 changed files with 2 additions and 2 deletions

View File

@ -237,7 +237,7 @@ public class RowSpec {
case 'm': {
StringBuilder sb = new StringBuilder();
while (j <= query.length()) {
c = query.charAt(i);
c = query.charAt(j);
if (c < '0' || c > '9') {
j--;
break;
@ -249,7 +249,7 @@ public class RowSpec {
case 'n': {
StringBuilder sb = new StringBuilder();
while (j <= query.length()) {
c = query.charAt(i);
c = query.charAt(j);
if (c < '0' || c > '9') {
j--;
break;