Commit c35d0f33 authored by wenmo's avatar wenmo

修复sql中包含\u00A0的导致无法容错执行问题

parent f1377fbb
...@@ -20,7 +20,7 @@ public class SqlUtil { ...@@ -20,7 +20,7 @@ public class SqlUtil {
public static String removeNote(String sql){ public static String removeNote(String sql){
if(Asserts.isNotNullString(sql)) { if(Asserts.isNotNullString(sql)) {
sql = sql.replaceAll("--([^'\r\n]{0,}('[^'\r\n]{0,}'){0,1}[^'\r\n]{0,}){0,}", "").trim(); sql = sql.replaceAll("\u00A0", " ").replaceAll("--([^'\r\n]{0,}('[^'\r\n]{0,}'){0,1}[^'\r\n]{0,}){0,}", "").trim();
} }
return sql; return sql;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment