pgsql: Pull up isReset flag from AllocSetContext to MemoryContext struc - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: Pull up isReset flag from AllocSetContext to MemoryContext struc
Date
Msg-id E1QNrK8-0006jH-E7@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Pull up isReset flag from AllocSetContext to MemoryContext struc
List pgsql-committers
Pull up isReset flag from AllocSetContext to MemoryContext struct. This
avoids the overhead of one function call when calling MemoryContextReset(),
and it seems like the isReset optimization would be applicable to any new
memory context we might invent in the future anyway.

This buys back the overhead I just added in previous patch to always call
MemoryContextReset() in ExecScan, even when there's no quals or projections.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/30e98a7e6e4869a7d6b3748ac9770bb8d69a8b26

Modified Files
--------------
src/backend/utils/mmgr/aset.c |   25 ++-----------------------
src/backend/utils/mmgr/mcxt.c |   18 ++++++++++++++++--
src/include/nodes/memnodes.h  |    1 +
3 files changed, 19 insertions(+), 25 deletions(-)


pgsql-committers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: pgsql: In binary-upgrade mode, dump dropped attributes of composite typ
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: Reset per-tuple memory context between every row in a scan node,