提交 27ee012c 编写于 作者: S Serge Rider

#5466 PG: multi-tenant database support

上级 7abaca71
......@@ -127,7 +127,12 @@ public class PostgreDatabase extends JDBCRemoteInstance<PostgreDataSource>
this.initCaches();
checkInstanceConnection(monitor);
readDatabaseInfo(monitor);
try {
readDatabaseInfo(monitor);
} catch (DBCException e) {
// On some multi-tenant servers pg_database is not public so error may gappen here
log.debug("Error reading database info", e);
}
}
public PostgreDatabase(DBRProgressMonitor monitor, PostgreDataSource dataSource, String name, PostgreRole owner, String templateName, PostgreTablespace tablespace, PostgreCharset encoding) throws DBException {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册