Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r8y0v-00Cyj5-CI for pgadmin-hackers@arkaria.postgresql.org; Fri, 01 Dec 2023 07:32:41 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1r8y0t-0064H1-Ca for pgadmin-hackers@arkaria.postgresql.org; Fri, 01 Dec 2023 07:32:39 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r8y0t-0064Gt-3P for pgadmin-hackers@lists.postgresql.org; Fri, 01 Dec 2023 07:32:39 +0000 Received: from out-25.smtp.github.com ([192.30.252.208]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r8y0q-008Efu-Jz for pgadmin-hackers@lists.postgresql.org; Fri, 01 Dec 2023 07:32:37 +0000 Received: from github.com (hubbernetes-node-43b0c3d.ash1-iad.github.net [10.56.158.31]) by smtp.github.com (Postfix) with ESMTPA id 4A23D340AF8 for ; Thu, 30 Nov 2023 23:32:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1701415955; bh=hq9CQMeZIasU7uEeFpvR+lh6eYfLSUorbemXNLvSDow=; h=Date:From:To:Subject:From; b=LmTTEGeQn/L37VJseX321IupUQ5iPv9h+wz8at95RRsq1Omufny9rCorjVOVFM2SR 4HzDgXP49cADAK46XhJqcfTrL8bT+212902JVeSBHfHkAtakpnMDHFjVQNjzbaLcHa 1ufvyGGxySgs/Ing6J6D0ANAd4KQB1U/n9BIw73o= Date: Thu, 30 Nov 2023 23:32:35 -0800 From: Akshay Joshi To: pgadmin-hackers@lists.postgresql.org Message-ID: Subject: [pgadmin-org/pgadmin4] 2b2ff0: Ensure that indexes created by constraints are vis... Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-GitHub-Recipient-Address: pgadmin-hackers@lists.postgresql.org X-Auto-Response-Suppress: All List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Branch: refs/heads/master Home: https://github.com/pgadmin-org/pgadmin4 Commit: 2b2ff0d26018a6d605d4a0fedb0d1a910de0cdc1 https://github.com/pgadmin-org/pgadmin4/commit/2b2ff0d26018a6d605d4a0fedb0d1a910de0cdc1 Author: Akshay Joshi Date: 2023-12-01 (Fri, 01 Dec 2023) Changed paths: M docs/en_US/release_notes_8_1.rst M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/indexes/__init__.py M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/indexes/utils.py M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/11_plus/properties.sql M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/13_plus/properties.sql M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/15_plus/properties.sql M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/default/count.sql M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/default/nodes.sql M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/templates/indexes/sql/default/properties.sql Log Message: ----------- Ensure that indexes created by constraints are visible in the object explorer when "Show system objects" is enabled. #6717