Le 07/07/2021 à 06:59, David Rowley a écrit :
> On Wed, 7 Jul 2021 at 10:18, Gilles Darold wrote:
>> I have noticed that postgres_fdw do not push down the CASE WHEN clauses. In
>> the following case this normal:
> This looks very similar to [1] which is in the current commitfest.
>
> Are you able
On Wed, 7 Jul 2021 at 10:18, Gilles Darold wrote:
> I have noticed that postgres_fdw do not push down the CASE WHEN clauses. In
> the following case this normal:
This looks very similar to [1] which is in the current commitfest.
Are you able to look over that patch and check to ensure you're no
Hi,
I have noticed that postgres_fdw do not push down the CASE WHEN clauses.
In the following case this normal:
contrib_regression=# EXPLAIN (ANALYZE, VERBOSE) SELECT (CASE WHEN
mod(c1, 4) = 0 THEN 1 ELSE 2 END) FROM ft1;
QUERY PLAN