From 4fd13c8d402b0cfcf6211fef330ef8900e77cdb9 Mon Sep 17 00:00:00 2001 From: levinsv <44033647+levinsv@users.noreply.github.com> Date: Wed, 5 Dec 2018 22:19:27 +0500 Subject: [PATCH] Update pgDatabase.cpp --- schema/pgDatabase.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/schema/pgDatabase.cpp b/schema/pgDatabase.cpp index 5b3569e..89502ee 100644 --- a/schema/pgDatabase.cpp +++ b/schema/pgDatabase.cpp @@ -630,6 +630,7 @@ void pgDatabase::ShowTreeDetail(ctlTree *browser, frmMain *form, ctlListView *pr browser->AppendCollection(this, extensionFactory); if (settings->GetDisplayOption(_("Publications")) && GetConnection()->BackendMinimumVersion(10, 0)) browser->AppendCollection(this, publicationFactory); + if (settings->GetDisplayOption(_("Subscriptions")) && GetConnection()->BackendMinimumVersion(10, 0)) browser->AppendCollection(this, subscriptionFactory); if (settings->GetDisplayOption(_("Foreign Data Wrappers")) && GetConnection()->BackendMinimumVersion(8, 4)) browser->AppendCollection(this, foreignDataWrapperFactory);