Re: [bug] Table not have typarray when created by single user mode

From: wenjing zeng <wjzeng2012(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, shawn wang <shawn(dot)wang(dot)pg(at)gmail(dot)com>
Cc: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, pgsql-bugs(at)lists(dot)postgresql(dot)org, tushar <tushar(dot)ahuja(at)enterprisedb(dot)com>
Subject: Re: [bug] Table not have typarray when created by single user mode
Date: 2020-05-21 07:28:28
Message-ID: ABF24C4F-5F44-423A-9EFC-1029CFCA16EC@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-hackers

> 2020年5月20日 上午12:09,Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> 写道:
>
> Alvaro Herrera <alvherre(at)2ndquadrant(dot)com> writes:
>> I think the argument to have that error check there, is that it's a
>> cross-check to avoid pg_upgrade bugs for cases where
>> binary_upgrade_next_array_type_oid is not set when it should have been
>> set. But I think we've hammered the pg_upgrade code sufficiently now,
>> that we don't need that check anymore. Any bugs that result in that
>> behavior will be very evident by lack of consistency on some upgrade
>> anyway.
>
> I don't buy that argument at all; that's a pretty critical cross-check
> IMO, because it's quite important that pg_upgrade control all type OIDs
> assigned in the new cluster. And I think it's probably easier to
> break than you're hoping :-(
>
> I think a safer fix is to replace the IsUnderPostmaster check in
> heap_create_with_catalog with !IsBootstrapProcessingMode() or the
> like. That would have the result that we'd create array types for
> the information_schema views, as well as the system views made in
> system_views.sql, which is slightly annoying but probably no real
> harm in the big scheme of things. (I wonder if we ought to reverse
> the sense of the adjacent relkind check, turning it into a blacklist,
> while at it.)
Thanks for your help, This method passed all regression tests and pg_upgrade checks.
It looks perfect.

Wenjing

Attachment Content-Type Size
incomplete_array_type_in_single_user_mode_v2.patch application/octet-stream 759 bytes

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Shawn Wang 2020-05-21 08:10:12 Re: [bug] Table not have typarray when created by single user mode
Previous Message Tom Lane 2020-05-21 05:53:01 Re: time values past 24:00:00 (or rather 23:59:60)

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2020-05-21 07:29:18 Re: explicit_bzero for sslpassword
Previous Message Michael Paquier 2020-05-21 07:17:16 Re: Planning counters in pg_stat_statements (using pgss_store)