|
@@ -32,7 +32,7 @@ public abstract class JsqlParserSupport {
|
|
Statement statement = CCJSqlParserUtil.parse(sql);
|
|
Statement statement = CCJSqlParserUtil.parse(sql);
|
|
return processParser(statement, 0, obj);
|
|
return processParser(statement, 0, obj);
|
|
} catch (JSQLParserException e) {
|
|
} 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();
|
|
return sb.toString();
|
|
} catch (JSQLParserException e) {
|
|
} 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);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|