Skip to content

Commit

Permalink
Merge pull request #16 from xaecbd/master
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
TrumanDu authored Apr 2, 2019
2 parents aa18441 + 85bd436 commit 7c0d271
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void execute(RDBAnalyzeInfo<?> rdbAnalyzeInfo) {
} else {
for (int i = 0; i < keyPrefixSeparatorArray.length; i++) {
if (key.indexOf(keyPrefixSeparatorArray[i]) != -1) {
prefix = key.substring(0, key.indexOf(keyPrefixSeparatorArray[i]+1)) + "*";
prefix = key.substring(0, key.indexOf(keyPrefixSeparatorArray[i])+1) + "*";
flag = false;
break;
}
Expand Down

0 comments on commit 7c0d271

Please sign in to comment.