pgAdmin 4 commit: Correct the SQL definition for function/procedure wit

From: Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com>
To: pgadmin-hackers(at)lists(dot)postgresql(dot)org
Subject: pgAdmin 4 commit: Correct the SQL definition for function/procedure wit
Date: 2021-12-08 07:02:24
Message-ID: E1muqy8-0006l4-4g@gothos.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Correct the SQL definition for function/procedure with the Atomic keyword in PG14. Fixes #7029

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=91a288c2bbb429da0f0db0768df04d507d1a2d04
Author: Rahul Shirsat <rahul(dot)shirsat(at)enterprisedb(dot)com>

Modified Files
--------------
docs/en_US/release_notes_6_3.rst | 1 +
.../databases/schemas/functions/__init__.py | 78 +++++++++++++
.../templates/functions/pg/sql/14_plus/create.sql | 76 ++++++++++++
.../functions/pg/sql/14_plus/properties.sql | 45 ++++++++
.../templates/functions/pg/sql/14_plus/update.sql | 127 +++++++++++++++++++++
.../functions/ppas/sql/14_plus/create.sql | 76 ++++++++++++
.../functions/ppas/sql/14_plus/properties.sql | 39 +++++++
.../functions/ppas/sql/14_plus/update.sql | 127 +++++++++++++++++++++
.../templates/procedures/pg/sql/14_plus/create.sql | 55 +++++++++
.../procedures/pg/sql/14_plus/properties.sql | 49 ++++++++
.../templates/procedures/pg/sql/14_plus/update.sql | 114 ++++++++++++++++++
.../procedures/ppas/sql/14_plus/create.sql | 63 ++++++++++
.../procedures/ppas/sql/14_plus/properties.sql | 49 ++++++++
.../procedures/ppas/sql/14_plus/update.sql | 124 ++++++++++++++++++++
.../tests/pg/14_plus/create_atomic_func.msql | 12 ++
.../tests/pg/14_plus/create_atomic_func.sql | 17 +++
.../tests/pg/14_plus/create_atomic_proc.msql | 10 ++
.../tests/pg/14_plus/create_atomic_proc.sql | 15 +++
.../functions/tests/pg/14_plus/test_function.json | 40 +++++++
.../tests/pg/14_plus/test_procedures.json | 36 ++++++
.../tests/ppas/14_plus/create_atomic_func.msql | 12 ++
.../tests/ppas/14_plus/create_atomic_func.sql | 17 +++
.../tests/ppas/14_plus/create_atomic_proc.msql | 10 ++
.../tests/ppas/14_plus/create_atomic_proc.sql | 15 +++
.../tests/ppas/14_plus/test_function.json | 40 +++++++
.../tests/ppas/14_plus/test_procedures.json | 36 ++++++
web/pgadmin/tools/sqleditor/static/js/sqleditor.js | 2 +-
27 files changed, 1284 insertions(+), 1 deletion(-)

Browse pgadmin-hackers by date

  From Date Subject
Next Message Akshay Joshi 2021-12-08 07:02:53 Re: [patch][pgAdmin] RM7029 The PGv14 SQL FUNCTION syntax of RETURN or BEGIN ATOMIC is not recognized nor displayed
Previous Message Akshay Joshi 2021-12-07 13:22:47 pgAdmin 4 commit: Replace Alertify alert and confirm with React-based m