Fix Memoize to work with partitionwise joining. A couple of places weren't up to speed for this. By sheer good luck, we didn't fail but just selected a non-memoized join plan, at least in the test case we have. Nonetheless, it's a bug, and I'm not quite sure that it couldn't have worse consequences in other examples. So back-patch to v14 where Memoize came in.
Richard Guo Discussion: https://postgr.es/m/cambws48gknom272sfp0-wed6_0hsr19bj4h1c9zksfbvnjs...@mail.gmail.com Branch ------ REL_14_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/dc3648f65bea3d3373b4e0026ae83bd8f436ee40 Modified Files -------------- src/backend/optimizer/path/joinpath.c | 14 ++++++++++++- src/backend/optimizer/util/pathnode.c | 1 + src/include/nodes/pathnodes.h | 4 ++-- src/test/regress/expected/memoize.out | 39 +++++++++++++++++++++++++++++++++++ src/test/regress/sql/memoize.sql | 19 +++++++++++++++++ 5 files changed, 74 insertions(+), 3 deletions(-)