瀏覽代碼

to qiuqiu

miemie 5 年之前
父節點
當前提交
58a42c9630

+ 2 - 2
mybatis-plus-extension/src/main/java/com/baomidou/mybatisplus/extension/parser/JsqlParserSupport.java

@@ -32,7 +32,7 @@ public abstract class JsqlParserSupport {
             Statement statement = CCJSqlParserUtil.parse(sql);
             return processParser(statement, 0, obj);
         } catch (JSQLParserException e) {
-            throw ExceptionUtils.mpe("Failed to process, please exclude the tableName or statementId.\n Error SQL: %s", e, sql);
+            throw ExceptionUtils.mpe("Failed to process, Error SQL: %s", e, sql);
         }
     }
 
@@ -54,7 +54,7 @@ public abstract class JsqlParserSupport {
             }
             return sb.toString();
         } catch (JSQLParserException e) {
-            throw ExceptionUtils.mpe("Failed to process, please exclude the tableName or statementId.\n Error SQL: %s", e, sql);
+            throw ExceptionUtils.mpe("Failed to process, Error SQL: %s", e, sql);
         }
     }