Skip to content

Commit

Permalink
[CONJ-747] JDBC Conversion Function fast-path skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Dec 2, 2019
1 parent 1eab311 commit e2e6c24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/mariadb/jdbc/internal/util/Utils.java
Expand Up @@ -274,7 +274,7 @@ private static String replaceFunctionParameter(String functionString, Protocol p
}

for (;
((input[index] >= 'a' && index <= 'z') || (input[index] >= 'A' && input[index] <= 'Z'))
((input[index] >= 'a' && input[index] <= 'z') || (input[index] >= 'A' && input[index] <= 'Z'))
&& index < input.length;
index++) {
sb.append(input[index]);
Expand Down

0 comments on commit e2e6c24

Please sign in to comment.