powa-team / pg_qualstats

A PostgreSQL extension for collecting statistics about predicates, helping find what indices are missing
Other
272 stars 26 forks source link

Fix memleak in pgqs_ExecutorEnd. #56

Closed rdunklau closed 9 months ago

rdunklau commented 9 months ago

Previous code assumed we were already in the executor MemoryContext, which is not the case.

Thanks to @ioguix for reporting the bug.