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 1qRPhU-001c8J-PF for pgadmin-hackers@arkaria.postgresql.org; Thu, 03 Aug 2023 04:12:37 +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 1qRPhS-009jg2-Ac for pgadmin-hackers@arkaria.postgresql.org; Thu, 03 Aug 2023 04:12:34 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qRPhS-009jft-1r for pgadmin-hackers@lists.postgresql.org; Thu, 03 Aug 2023 04:12:34 +0000 Received: from out-19.smtp.github.com ([192.30.252.202]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1qRPhP-000GJv-Ky for pgadmin-hackers@lists.postgresql.org; Thu, 03 Aug 2023 04:12:33 +0000 Received: from github.com (hubbernetes-node-9471114.va3-iad.github.net [10.48.124.36]) by smtp.github.com (Postfix) with ESMTPA id CD7229400E0 for ; Wed, 2 Aug 2023 21:12:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1691035949; bh=VDg2sjNL9TGJmHP+sXT/4UAjWSamZSoktyNVgQLRnAg=; h=Date:From:To:Subject:From; b=mmTe4+4xeUqUN6ZpaS94Hg2p1dUn7gqQBwzxNWN5577iEFX+D+q7x9iHmwU0QfRhn CR17PkKo/KMsNj8RWjQRh7VvRFqcETaX5lhqk8C+b4YmWUWHntSEK3KwpBiy5G8IZy 205lQKtddq1RyoASMAq11mvklyE19tc33+b0MIQo= Date: Wed, 02 Aug 2023 21:12:29 -0700 From: Yogesh Mahajan To: pgadmin-hackers@lists.postgresql.org Message-ID: Subject: [pgadmin-org/pgadmin4] ce146b: Add support for TRUNCATE trigger in foreign table.... 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: ce146b679c053f2ecc6bec0bfc562d94df8191c9 https://github.com/pgadmin-org/pgadmin4/commit/ce146b679c053f2ecc6bec0bfc562d94df8191c9 Author: Yogesh Mahajan Date: 2023-08-03 (Thu, 03 Aug 2023) Changed paths: M web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/__init__.py A web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/children/__init__.py M web/pgadmin/browser/server_groups/servers/databases/schemas/foreign_tables/static/js/foreign_table.js M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/columns/static/js/column.js M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/__init__.py M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/check_constraint/static/js/check_constraint.js M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/exclusion_constraint/static/js/exclusion_constraint.js M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/foreign_key/static/js/foreign_key.js M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/index_constraint/static/js/primary_key.js M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/index_constraint/static/js/unique_constraint.js M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/constraints/static/js/constraints.js M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/triggers/__init__.py M web/pgadmin/browser/server_groups/servers/databases/schemas/tables/triggers/static/js/trigger.js Log Message: ----------- Add support for TRUNCATE trigger in foreign table. #6448