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

Don't try to load procedures for PostgreSQL

上级 f47004ee
......@@ -175,7 +175,9 @@ public class DbContents {
String[] tableTypes = { "TABLE", "SYSTEM TABLE", "VIEW", "SYSTEM VIEW",
"TABLE LINK", "SYNONYM", "EXTERNAL" };
schema.readTables(meta, tableTypes);
schema.readProcedures(meta);
if (!isPostgreSQL) {
schema.readProcedures(meta);
}
}
if (defaultSchema == null) {
String best = null;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论