Re: BUG #17158: Distinct ROW fails with Postgres 14

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #17158: Distinct ROW fails with Postgres 14
Дата
Msg-id 343747.1629817538@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: BUG #17158: Distinct ROW fails with Postgres 14  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
I wrote:
> David Rowley <dgrowleyml@gmail.com> writes:
>> Tom did have a look at this and raise the question about the
>> possibility of not being able to hash in [1].

> Huh.  According to the thread, we discussed this exact possibility and
> there's a test case verifying it ... so apparently something got
> fat-fingered there.

I think this is on me, because I must not have looked closely enough
at Peter's test case to realize that he was proposing to consider it
okay to fail.  We can't have that, for exactly the reason seen here,
which is that people will consider it a regression if their queries
used to work and now hit this error.

The proximate cause of the problem is this over-optimistic bit in
cache_record_field_properties():

    /*
     * For type RECORD, we can't really tell what will work, since we don't
     * have access here to the specific anonymous type.  Just assume that
     * everything will (we may get a failure at runtime ...)
     */
    if (typentry->type_id == RECORDOID)
    {
        typentry->flags |= (TCFLAGS_HAVE_FIELD_EQUALITY |
                            TCFLAGS_HAVE_FIELD_COMPARE |
                            TCFLAGS_HAVE_FIELD_HASHING |
                            TCFLAGS_HAVE_FIELD_EXTENDED_HASHING);
    }

where 01e658fa74 just blindly added hashing to the set of things we
assume an unknown record type can do.  While we seem to have mostly
gotten away with assuming that comparison ops are available, it's
clearly a step too far to assume that hashing is.

The correct long-term fix is to remove this assumption altogether
in favor of adding code to check more carefully in the planner.
But it's probably a bit late in the game to try to fix that for v14.
I propose that we just revert this code to the way it was before
(and improve the comment to explain what's going on).

            regards, tom lane



В списке pgsql-bugs по дате отправления:

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: Postgres 9.2.13 on AIX 7.1
Следующее
От: Peter Eisentraut
Дата:
Сообщение: Re: BUG #17158: Distinct ROW fails with Postgres 14