mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-06 15:37:29 +08:00
during parsing. Formerly the parser's stack was allocated with malloc and so wouldn't be reclaimed; this patch makes it use palloc instead, so that flushing the current context will reclaim the memory. Per Marko Kreen.