Re: BUG #14428: decode function don't return correct value when executed from agent's job or external program

From: "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>
To: vbochkov(at)eastwind(dot)ru
Cc: "pgsql-bugs(at)postgresql(dot)org" <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: BUG #14428: decode function don't return correct value when executed from agent's job or external program
Date: 2016-11-18 14:45:38
Message-ID: CAKFQuwYbADAgYrBHGOK-u-XgaaxNShWo_oDJ=XfWGNrHNHjSWA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

On Fri, Nov 18, 2016 at 3:49 AM, <vbochkov(at)eastwind(dot)ru> wrote:

> The following bug has been logged on the website:
>
> Bug reference: 14428
> Logged by: Vadim Bochkov
> Email address: vbochkov(at)eastwind(dot)ru
> PostgreSQL version: 9.5.5
> Operating system: CentOS 7.2
> Description:
>
> We have test stored function
> CREATE FUNCTION decode_test()
> RETURNS integer AS
> BEGIN
> insert into test2(txt)
> select decode('30343134','hex')::varchar(8000);
> return 0;
>
> When we execute it from psql command prompt value "0414" is insesrted in
> table. When we execute function from agent job value "х30343134" is
> inserted in table.
> Function decode() is deterministic, but result is not the same. It's bug.
>
>
N
​ot a bug - different configurations in the two environments.

See bytea_output


https://www.postgresql.org/docs/9.5/static/runtime-config-client.html

​David J.​

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Pantelis Theodosiou 2016-11-18 22:35:18 Re: ORDER BY TABLENAME, possible bug
Previous Message vbochkov 2016-11-18 10:49:47 BUG #14428: decode function don't return correct value when executed from agent's job or external program