Re: [pgAdmin4][Patch]: RM 3362 - Fix the functions for PG v11, andadd support procedure for PG v11
От | Dave Page |
---|---|
Тема | Re: [pgAdmin4][Patch]: RM 3362 - Fix the functions for PG v11, andadd support procedure for PG v11 |
Дата | |
Msg-id | CA+OCxowsKUWjia7HZmrv5PUxn7AFjM5FvhfRjLxu+3=uwn=Cdg@mail.gmail.com обсуждение исходный текст |
Ответ на | Re: [pgAdmin4][Patch]: RM 3362 - Fix the functions for PG v11, andadd support procedure for PG v11 (Khushboo Vashi <khushboo.vashi@enterprisedb.com>) |
Ответы |
Re: [pgAdmin4][Patch]: RM 3362 - Fix the functions for PG v11, andadd support procedure for PG v11
|
Список | pgadmin-hackers |
Thanks, patch applied.
On Wed, Jun 13, 2018 at 12:43 PM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote:
Please ignore my previous patch. Find the attached updated patch.On Wed, Jun 13, 2018 at 9:32 AM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote: Hi Victoria,The updated patch is attached.On Tue, Jun 12, 2018 at 9:36 PM, Victoria Henry <vhenry@pivotal.io> wrote:Hi Khushboo,
The following change is allowing the creation of procedures in postgresql versions less then 11 and also GreenPlum
--- a/web/pgadmin/browser/server_g
roups/servers/databases/schema s/functions/static/js/procedur e.js +++ b/web/pgadmin/browser/server_g roups/servers/databases/schema s/functions/static/js/procedur e.js @@ -71,11 +71,7 @@ define('pgadmin.node.procedure ', [ if ('catalog' in node_hierarchy) return false; - // Procedures supported only in PPAS - return ( - 'server' in node_hierarchy && - node_hierarchy['server'].serve r_type == 'ppas' - ); + return true; Fixed.Now that the Procedures are a thing in Postgresql maybe they should live in their own module.
The main functionalities of the functions and procedures are almost same and we have inherited most of the things from function itself.So, as per me they should live in one module.In the tests for trigger functions we are not consistent on the naming of the utils , in some places we call it
funcs_utils
in otherstrigger_funcs_utils
.Fixed.Thanks
Victoria & JoaoThanks,KhushbooOn Tue, Jun 12, 2018 at 3:10 AM Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote: Hi,Please find the attached updated patch.On Fri, Jun 8, 2018 at 2:21 PM, Dave Page <dpage@pgadmin.org> wrote:HiOn Thu, Jun 7, 2018 at 11:27 AM, Khushboo Vashi <khushboo.vashi@enterprisedb.com> wrote: Hi,Please ignore my previous patch, find the attached updated one.I found a couple of issues with this:- Clicking the + button on the Parameters tab does nothing in either Create or Edit modesFixed- The debugger fails to start (though, perhaps that's because the plugin doesn't have Ashesh's latest patches in it).FYI, I was trying to test the debugger with:-- PROCEDURE: public.dummy_proc(integer)-- DROP PROCEDURE public.dummy_proc(integer);CREATE OR REPLACE PROCEDURE public.dummy_proc(id integer)LANGUAGE 'plpgsql'AS $BODY$BEGINraise notice 'id is %', id;END;$BODY$;Fixed. Tested with the latest code of the plugin.Thanks!Thanks,Khushboo--Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake
EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company
В списке pgadmin-hackers по дате отправления: