From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | David Rowley <dgrowleyml(at)gmail(dot)com> |
Cc: | Sawyer Knoblich <scknoblich(at)gmail(dot)com>, pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Re: BUG #18399: Query plan optimization results in runtime error when hoisting cast from inside subquery |
Date: | 2024-03-20 04:39:05 |
Message-ID: | 4112887.1710909545@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
David Rowley <dgrowleyml(at)gmail(dot)com> writes:
> There are quite a lot of things which would have to be restricted,
> much more than you might think. Any conditions which could cause an
> error would have to be evaluated last in a WHERE clause and that might
> result in being unable to use indexes because some other (possibly
> unindexed) expression would need to be evaluated first.
That particular aspect might not be too awful, because there's already
a good deal of pressure for index opclass members to not fail ---
certainly I'd expect that all standard btree comparison functions
could be marked non-failing. (Let us slide quietly past the question
of exactly how strong the guarantee should be; for example any function
that takes toastable argument types is potentially at risk of OOM,
but do you really want to exclude numeric_eq and texteq from the
set of safe operations? See also past discussions on how strict
we should be about the related concept of leakproofness.)
In any case I agree with your larger point that ordering things such
that potentially-failing tests are always done last would be a
performance disaster, even if it's possible at all.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Munro | 2024-03-20 04:39:34 | Re: Regression tests fail with musl libc because libpq.so can't be loaded |
Previous Message | David Rowley | 2024-03-20 04:08:49 | Re: BUG #18399: Query plan optimization results in runtime error when hoisting cast from inside subquery |