diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-02-09 00:30:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-02-09 00:30:41 +0000 |
commit | 145014f81151a12ac6a0f8e299899c4f60e0f8c1 (patch) | |
tree | 669a8cecd8e2f67fae0966134b91a28df1e2a6e7 /src/backend/nodes/outfuncs.c | |
parent | c15a4c2aef3ca78a530778b735d43aa04d103ea6 (diff) |
Make further use of new bitmapset code: executor's chgParam, extParam,
locParam lists can be converted to bitmapsets to speed updating. Also,
replace 'locParam' with 'allParam', which contains all the paramIDs
relevant to the node (i.e., the union of extParam and locParam); this
saves a step during SetChangedParamList() without costing anything
elsewhere.
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r-- | src/backend/nodes/outfuncs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index b4aefc78002..9d4f977f22d 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.196 2003/02/08 20:20:54 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.197 2003/02/09 00:30:39 tgl Exp $ * * NOTES * Every node type that can appear in stored rules' parsetrees *must* @@ -255,8 +255,8 @@ _outPlanInfo(StringInfo str, Plan *node) WRITE_NODE_FIELD(lefttree); WRITE_NODE_FIELD(righttree); WRITE_NODE_FIELD(initPlan); - WRITE_INTLIST_FIELD(extParam); - WRITE_INTLIST_FIELD(locParam); + WRITE_BITMAPSET_FIELD(extParam); + WRITE_BITMAPSET_FIELD(allParam); WRITE_INT_FIELD(nParamExec); } |