Re: BUG #17405: Minor upgrade from 12.9 to 12.10 works fine, but PSQL version shows "12.9"

From: hubert depesz lubaczewski <depesz(at)depesz(dot)com>
To: julian(dot)garcia(at)inrop(dot)es, pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #17405: Minor upgrade from 12.9 to 12.10 works fine, but PSQL version shows "12.9"
Date: 2022-02-15 12:07:05
Message-ID: 20220215120705.GB23055@depesz.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(at)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(at)myserver ~ # sudo su - postgres
> postgres(at)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

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Daniel Gustafsson 2022-02-15 12:10:45 Re: Report a potential memory leak in setup_config()
Previous Message PG Bug reporting form 2022-02-15 11:07:14 BUG #17405: Minor upgrade from 12.9 to 12.10 works fine, but PSQL version shows "12.9"