Re: BUG #17405: Minor upgrade from 12.9 to 12.10 works fine, but PSQL version shows "12.9" - Mailing list pgsql-bugs

From hubert depesz lubaczewski
Subject Re: BUG #17405: Minor upgrade from 12.9 to 12.10 works fine, but PSQL version shows "12.9"
Date
Msg-id 20220215120705.GB23055@depesz.com
Whole thread Raw
In response to BUG #17405: Minor upgrade from 12.9 to 12.10 works fine, but PSQL version shows "12.9"  (PG Bug reporting form <noreply@postgresql.org>)
Responses Re: BUG #17405: Minor upgrade from 12.9 to 12.10 works fine, but PSQL version shows "12.9"  (julian.garcia@inrop.es)
List pgsql-bugs
On Tue, Feb 15, 2022 at 11:07:14AM +0000, PG Bug reporting form wrote:
> I've upgraded my Postgres version from 12.9 to 12.10 following the
> documentation steps:
> 
> service postgresql-12 stop
> yum update postgresql12-server
> service postgresql-12 start
> 
> And the binaries do in fact show the upgraded version, the DB starts good,
> everything went well:
> 
> postgres@dgojmysql01pre ~ $ rpm -qa | grep postgres
> postgresql12-libs-12.10-1PGDG.rhel6.x86_64
> postgresql12-server-12.10-1PGDG.rhel6.x86_64
> postgresql12-12.10-1PGDG.rhel6.x86_64
> 
> But, when using the psql it would still show the 12.9 version:
> 
> root@myserver ~ # sudo su - postgres
> postgres@myserver ~ $ psql
> psql (12.9)
> Type "help" for help.

Please do:

sudo su - postgres
which psql
ls -l "$( which psql )" "$( readlink -f "$( which psql )" )"
rpm -qf "$( which psql )"
rpm -qf "$( readlink -f "$( which psql )" )"

and please share results of the which, ls, and rpm calls.

Best regards,

depesz




pgsql-bugs by date:

Previous
From: PG Bug reporting form
Date:
Subject: BUG #17405: Minor upgrade from 12.9 to 12.10 works fine, but PSQL version shows "12.9"
Next
From: Daniel Gustafsson
Date:
Subject: Re: Report a potential memory leak in setup_config()