提交 f2fa894f authored 作者: Thomas Mueller's avatar Thomas Mueller

MVStore: table engine

上级 7348bcc8
......@@ -67,10 +67,13 @@ public abstract class TableBase extends Table {
buff.append(column.getCreateSQL());
}
buff.append("\n)");
if (tableEngine != null && !tableEngine.endsWith(getDatabase().getSettings().defaultTableEngine)) {
buff.append("\nENGINE \"");
buff.append(tableEngine);
buff.append('\"');
if (tableEngine != null) {
String d = getDatabase().getSettings().defaultTableEngine;
if (d == null || !tableEngine.endsWith(d)) {
buff.append("\nENGINE \"");
buff.append(tableEngine);
buff.append('\"');
}
}
if (!isPersistIndexes() && !isPersistData()) {
buff.append("\nNOT PERSISTENT");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论