Unverified Commit 2a471036 authored by aiwenmo's avatar aiwenmo Committed by GitHub

Merge pull request #204 from chengyuan1029/dev

修复血缘只能;后问题
parents 13c6222f 6f470748
......@@ -41,6 +41,7 @@ public class Explainer {
public Explainer(Executor executor) {
this.executor = executor;
init();
}
public Explainer(Executor executor, boolean useStatementSet, String sqlSeparator) {
......@@ -49,6 +50,10 @@ public class Explainer {
this.sqlSeparator = sqlSeparator;
}
public void init(){
sqlSeparator = SystemConfiguration.getInstances().getSqlSeparator();
}
public static Explainer build(Executor executor) {
return new Explainer(executor, false, ";");
}
......
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