Re: [HACKERS] Parallel SAFE information missing in CREATE OR REPLACE FUNCTION definition

2016-04-26 Thread Robert Haas
On Tue, Apr 26, 2016 at 1:24 AM, Ashutosh Sharma wrote: > In PGSQL-9.6, if we create a function with PARALLEL clause and try > displaying it's definition using "pg_get_functiondef" we see that the > PARALLEL keyword used during function creation is missing. > > Below are the steps to reproduce: >

[HACKERS] Parallel SAFE information missing in CREATE OR REPLACE FUNCTION definition

2016-04-25 Thread Ashutosh Sharma
Hi, In PGSQL-9.6, if we create a function with PARALLEL clause and try displaying it's definition using "*pg_get_functiondef*" we see that the PARALLEL keyword used during function creation is missing. Below are the steps to reproduce: postgres=# CREATE FUNCTION add(integer, integer) RETURNS int