Re: BUG #17832: ERROR: failed to apply nullingrels to a non-Var in HEAD - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #17832: ERROR: failed to apply nullingrels to a non-Var in HEAD
Date
Msg-id 1425491.1678640561@sss.pgh.pa.us
Whole thread Raw
In response to BUG #17832: ERROR: failed to apply nullingrels to a non-Var in HEAD  (PG Bug reporting form <noreply@postgresql.org>)
List pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> Running the following query in HEAD fails with the error in $SUBJECT:
> SELECT 1
> FROM
> (
>     SELECT NULL::text AS AccountName
> ) Actual FULL JOIN (
>     SELECT text 'foo'
>     UNION ALL
>     SELECT text 'bar'
> ) Expected (AccountName)
> ON TRUE
> WHERE Expected.AccountName IS NULL;

Thanks for the report!  This example is breaking an assumption I made
in adjust_appendrel_attrs:

         * If var->varnullingrels isn't empty, and the translation wouldn't be
         * a Var, we have to fail.  One could imagine wrapping the translated
         * expression in a PlaceHolderVar, but that won't work because this is
         * typically used after freezing placeholders.  Fortunately, the case
         * appears unreachable at the moment.

Not so much :-(.  That comment goes on to speculate about
pre-emptively wrapping translations in PlaceHolderVars, which is
doable but seems inefficient (mainly because we'd have to do it
well in advance of knowing whether it's needed).

The reason we have a problem is that the planner is (in effect) trying
to push down the "Expected.AccountName IS NULL" clause to the UNION
ALL children.  I'm pretty sure that when I wrote this code, I expected
that that would not happen, because it's useless: we will not be able
to apply that clause at the scan level, because it can't be applied
until after the outer join is formed.  So maybe the right thing to do
is not push down the clause, which I think could be implemented by
having set_append_rel_size not forcibly translate the parent's entire
joininfo list, but only those clauses not mentioning any of the rel's
nulling_relids.

I'm slightly worried that after we do this, we might find that some
other example still forces us to remove the implementation restriction
in adjust_appendrel_attrs.  However, it seems like trimming child
joininfo lists like this might be a net win anyway, just by reducing
the amount of effort we spend examining those lists later.

            regards, tom lane



pgsql-bugs by date:

Previous
From: Alexander Lakhin
Date:
Subject: Re: BUG #17830: Incorrect memory access in trgm_regexp
Next
From: David Rowley
Date:
Subject: Re: BUG #17826: An assert failed in /src/backend/optimizer/util/var.c