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

Added external table engines support.

上级 b0cab2a4
...@@ -4789,7 +4789,7 @@ public class Parser { ...@@ -4789,7 +4789,7 @@ public class Parser {
} }
} }
if (readIf("ENGINE")) { if (readIf("ENGINE")) {
command.setTableEngine(readString()); command.setTableEngine(readUniqueIdentifier());
} }
if (temp) { if (temp) {
if (readIf("ON")) { if (readIf("ON")) {
......
...@@ -64,9 +64,9 @@ public abstract class TableBase extends Table { ...@@ -64,9 +64,9 @@ public abstract class TableBase extends Table {
} }
buff.append("\n)"); buff.append("\n)");
if (tableEngine != null) { if (tableEngine != null) {
buff.append("\nENGINE '"); buff.append("\nENGINE \"");
buff.append(tableEngine); buff.append(tableEngine);
buff.append("'"); buff.append("\"");
} }
if (!isPersistIndexes() && !isPersistData()) { if (!isPersistIndexes() && !isPersistData()) {
buff.append("\nNOT PERSISTENT"); buff.append("\nNOT PERSISTENT");
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论