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 1rFXFu-00AP8c-5V for pgadmin-hackers@arkaria.postgresql.org; Tue, 19 Dec 2023 10:23:18 +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 1rFXFs-00HEim-N3 for pgadmin-hackers@arkaria.postgresql.org; Tue, 19 Dec 2023 10:23:16 +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 1rFXFs-00HEia-Dl for pgadmin-hackers@lists.postgresql.org; Tue, 19 Dec 2023 10:23:16 +0000 Received: from out-28.smtp.github.com ([192.30.252.211]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rFXFp-00CmG9-C8 for pgadmin-hackers@lists.postgresql.org; Tue, 19 Dec 2023 10:23:15 +0000 Received: from github.com (hubbernetes-node-deaa780.ash1-iad.github.net [10.56.209.99]) by smtp.github.com (Postfix) with ESMTPA id 475AB10038D for ; Tue, 19 Dec 2023 02:23:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1702981391; bh=USrg2VQEPjDbz8pU5roqxtp54DZtp8IKC9F73OUKZZI=; h=Date:From:To:Subject:From; b=cKzBn71a2HUS484EOQsk+XTCM/Qh0vrhNIhoNTo6wTUyUFD3kPTRGBFRRzaWOJlJ3 q/v+qJNzglEvmy+UbKqiDSl7E7a/dOYsjEz9N6Bp4/LCwjD5m1XyY7xvqVb5D15c1X Q0tU03Pf2b0xt5rZQmlqOLiNybrdYsaya8YTkLYI= Date: Tue, 19 Dec 2023 02:23:11 -0800 From: Nikhil Mohite To: pgadmin-hackers@lists.postgresql.org Message-ID: Subject: [pgadmin-org/pgadmin4] 045806: Allow users to convert View/Edit table into a Quer... 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: 04580652ab60d10aeccbf604c3c6c5eda98f812e https://github.com/pgadmin-org/pgadmin4/commit/04580652ab60d10aeccbf604c3c6c5eda98f812e Author: Nikhil Mohite Date: 2023-12-19 (Tue, 19 Dec 2023) Changed paths: M docs/en_US/editgrid.rst A docs/en_US/images/promote_view_edit_data_warning.png M web/pgadmin/preferences/__init__.py M web/pgadmin/preferences/static/js/store.js M web/pgadmin/preferences/tests/preferences_test_data.json M web/pgadmin/preferences/tests/test_preferences_update.py M web/pgadmin/static/js/helpers/ModalProvider.jsx M web/pgadmin/tools/sqleditor/__init__.py M web/pgadmin/tools/sqleditor/static/js/components/QueryToolComponent.jsx M web/pgadmin/tools/sqleditor/static/js/components/QueryToolConstants.js A web/pgadmin/tools/sqleditor/static/js/components/dialogs/ConfirmPromotionContent.jsx M web/pgadmin/tools/sqleditor/static/js/components/sections/MainToolBar.jsx M web/pgadmin/tools/sqleditor/static/js/components/sections/Query.jsx M web/pgadmin/tools/sqleditor/static/js/components/sections/ResultSet.jsx M web/pgadmin/tools/sqleditor/static/js/show_query_tool.js M web/pgadmin/tools/sqleditor/utils/query_tool_preferences.py M web/pgadmin/tools/sqleditor/utils/start_running_query.py M web/regression/javascript/__mocks__/bundled_codemirror.js Log Message: ----------- Allow users to convert View/Edit table into a Query tool to enable editing the SQL generated. #5908