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:
parent
2323f53d81
commit
e7c1acfecc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue