pgsql: Rename variable in AllocSetContextCreate to be consistent.

From: Jeff Davis <jdavis(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Rename variable in AllocSetContextCreate to be consistent.
Date: 2015-02-22 07:19:13
Message-ID: E1YPQor-0000iT-5S@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Rename variable in AllocSetContextCreate to be consistent.

Everywhere else in the file, "context" is of type MemoryContext and
"set" is of type AllocSet. AllocSetContextCreate uses a variable of
type AllocSet, so rename it from "context" to "set".

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/74811c4050921959d54d42e2c15bb79f0e2c37f3

Modified Files
--------------
src/backend/utils/mmgr/aset.c | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2015-02-22 18:59:35 pgsql: Represent BETWEEN as a special node type in raw parse trees.
Previous Message Jeff Davis 2015-02-22 01:30:34 pgsql: In array_agg(), don't create a new context for every group.