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
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