diff --git a/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/PostgreDataSource.java b/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/PostgreDataSource.java index 2ca900a270797ab817f62682381f86baf6ded744..f3e7ccf76bdb6fae98a67205fe54c28d598c7d9b 100644 --- a/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/PostgreDataSource.java +++ b/plugins/org.jkiss.dbeaver.ext.postgresql/src/org/jkiss/dbeaver/ext/postgresql/model/PostgreDataSource.java @@ -98,7 +98,7 @@ public class PostgreDataSource extends JDBCDataSource implements DBSObjectSelect databaseCache = new DatabaseCache(); DBPConnectionConfiguration configuration = getContainer().getActualConnectionConfiguration(); - final boolean showNDD = CommonUtils.getBoolean(configuration.getProviderProperty(PostgreConstants.PROP_SHOW_NON_DEFAULT_DB), true); + final boolean showNDD = CommonUtils.getBoolean(configuration.getProviderProperty(PostgreConstants.PROP_SHOW_NON_DEFAULT_DB), false); List dbList = new ArrayList<>(); if (!showNDD) { PostgreDatabase defDatabase = new PostgreDatabase(monitor, this, activeDatabaseName);