We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f5d217e + f442a17 commit 05bcce6Copy full SHA for 05bcce6
src/main/java/org/apache/ibatis/jdbc/ScriptRunner.java
@@ -234,7 +234,7 @@ private void executeStatement(String command) throws SQLException {
234
statement.setEscapeProcessing(escapeProcessing);
235
String sql = command;
236
if (removeCRs) {
237
- sql = sql.replaceAll("\r\n", "\n");
+ sql = sql.replace("\r\n", "\n");
238
}
239
try {
240
boolean hasResults = statement.execute(sql);
0 commit comments