Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[CONJ-283] MariaDbClientPreparedStatement : correction for semicolon …
…with additional characters
  • Loading branch information
rusher committed Apr 22, 2016
1 parent 4cacd1d commit f54d1a9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -612,7 +612,7 @@ private List<String> createRewritableParts(String queryString, boolean noBacksla
isFirstChar = false;
}
//multiple queries
if (state == LexState.Normal && semicolon && ((byte) lastChar >= 40)) reWritablePrepare = false;
if (state == LexState.Normal && semicolon && ((byte) car >= 40)) reWritablePrepare = false;
break;
}

Expand Down

0 comments on commit f54d1a9

Please sign in to comment.