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

Remove TableType.SYNONYM

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