Re: pg_upgrade operation failed if table created in --single user mode

2021-12-14 Thread Tom Lane
tushar writes: > Please refer to this scenario where pg_upgrade operation is failing if > the table is create in single-user mode. Fixed in v14: https://git.postgresql.org/gitweb/?p=postgresql.git&a=commitdiff&h=f7f70d5e2 regards, tom lane

pg_upgrade operation failed if table created in --single user mode

2021-12-14 Thread tushar
Hi, Please refer to this scenario where pg_upgrade operation is failing if the table is create in single-user mode. PG v13 --connect to PG v13 using single user mode  ( ./postgres --single -D /tmp/data13 postgres ) --create table ( backend> create table r(n int); ) --exit  ( ctrl + D) -- Pe