提交 5305a2d1 authored 作者: Niklas Mehner's avatar Niklas Mehner

Remove TableType.SYNONYM

上级 e2059d66
...@@ -1819,7 +1819,7 @@ public class Database implements DataHandler { ...@@ -1819,7 +1819,7 @@ public class Database implements DataHandler {
for (Table t : getAllTablesAndViews(false)) { for (Table t : getAllTablesAndViews(false)) {
if (except == t) { if (except == t) {
continue; continue;
} else if (TableType.VIEW == t.getTableType() || TableType.SYNONYM == t.getTableType()) { } else if (TableType.VIEW == t.getTableType()) {
continue; continue;
} }
set.clear(); set.clear();
......
...@@ -33,12 +33,7 @@ public enum TableType { ...@@ -33,12 +33,7 @@ public enum TableType {
/** /**
* The table type name for external table engines. * The table type name for external table engines.
*/ */
EXTERNAL_TABLE_ENGINE, EXTERNAL_TABLE_ENGINE;
/**
* The table type name for synonyms.
*/
SYNONYM;
@Override @Override
public String toString() { public String toString() {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论