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.
1 parent 6bd16e1 commit f442a17Copy full SHA for f442a17
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