Re: Postgresql python in upgraded version 16.2

2024-06-25 Thread Adrian Klaver
On 6/21/24 00:33, Šika Michal wrote: Hello, I get the install packages from this repository: https://download.postgresql.org/pub/repos/yum/16/redhat/rhel-8.9-ppc64le/ I would go here: https://yum.postgresql.org/contac

Re: Postgresql python in upgraded version 16.2

2024-06-21 Thread Šika Michal
: Postgresql python in upgraded version 16.2 On 6/19/24 22:05, Šika Michal wrote: > TLP:AMBER > > > Hello all, > I upgraded version of Postgres from 13.5 to newest 16.2. But Python was > not upgraded. > > I create procedure pyver(): > CREATE OR REPLACE FUNCTION pyver

Re: Postgresql python in upgraded version 16.2

2024-06-20 Thread Adrian Klaver
On 6/19/24 22:05, Šika Michal wrote: TLP:AMBER Hello all, I upgraded version of Postgres from 13.5 to newest 16.2. But Python was not upgraded. I create procedure pyver(): CREATE OR REPLACE FUNCTION pyver ()  RETURNS TEXT  AS $$      import sys      pyversion = sys.version      return p

Postgresql python in upgraded version 16.2

2024-06-20 Thread Šika Michal
TLP:AMBER Hello all, I upgraded version of Postgres from 13.5 to newest 16.2. But Python was not upgraded. I create procedure pyver(): CREATE OR REPLACE FUNCTION pyver () RETURNS TEXT AS $$ import sys pyversion = sys.version return pyversion $$ LANGUAGE 'plpython3u'; On the Po