Closed andrewlecuyer closed 2 months ago
@keithf4 @cbandy could you take a quick look at this one?
This sounds good to me. If @cbandy has no objection, I can get this ready for a new release
@keithf4 that sounds great, much appreciated. And if anything I can do to help w/the release, just let me know.
When building
pgnodemx
with Postgres 17, the following error is seen:Further analysis shows indicates that
tuplestore_donestoring
was removed in Postgres 17:Additionally, looking back at the previous version of Postgres where
tuplestore_donestoring
was still present, we can see that it has been a no-op for some time now (well past all actively supported versions of PG):Therefore, fixing this appears to be as simple as removing the line with the cll to
tuplestore_donestoring
. This is discussed in the PG mailing list thread for the removal oftuplestore_donestoring
:This PR therefore removes a call to
tuplestore_donestoring
for proper compatibility with Postgres 17.