RE: CREATE EXTENSION to load the language into the database

2019-05-03 Thread Daulat Ram
Hi Adrian, Please find the requested details. What OS(and version) are you using? Ans: bash-4.4$ cat /etc/os-release NAME="Alpine Linux" ID=alpine VERSION_ID=3.9.2 PRETTY_NAME="Alpine Linux v3.9" HOME_URL="https://alpinelinux.org/; BUG_REPORT_URL="https://bugs.alpinelinux.org/; bash-4.4$

Re: CREATE EXTENSION to load the language into the database

2019-05-03 Thread Adrian Klaver
On 5/3/19 10:24 AM, Daulat Ram wrote: Hi Adrian, Please find the requested details. What OS(and version) are you using? Ans: bash-4.4$ cat /etc/os-release NAME="Alpine Linux" ID=alpine VERSION_ID=3.9.2 PRETTY_NAME="Alpine Linux v3.9" HOME_URL="https://alpinelinux.org/;

Re: CREATE EXTENSION to load the language into the database

2019-05-03 Thread Adrian Klaver
On 5/3/19 8:56 AM, Daulat Ram wrote: Hello team, We are getting below issue while creating a function in Potsgres 11.2 nagios=# create or replace function diskf (filesystem text, warn int, err int) returns text as $BODY$ nagios$# use warnings; nagios$# use strict; nagios$# my $fs = $_[0];

CREATE EXTENSION to load the language into the database

2019-05-03 Thread Daulat Ram
Hello team, We are getting below issue while creating a function in Potsgres 11.2 nagios=# create or replace function diskf (filesystem text, warn int, err int) returns text as $BODY$ nagios$# use warnings; nagios$# use strict; nagios$# my $fs = $_[0]; nagios$# my $w = $_[1]; nagios$# my $e =