mirror of
https://github.com/postgres/postgres.git
synced 2025-09-11 00:12:06 +03:00
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.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeTidscan.c,v 1.32 2003/02/03 15:07:07 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeTidscan.c,v 1.33 2003/02/09 00:30:39 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -349,7 +349,7 @@ ExecInitTidScan(TidScan *node, EState *estate)
|
||||
Oid relid;
|
||||
Oid reloid;
|
||||
Relation currentRelation;
|
||||
List *execParam = NIL;
|
||||
Bitmapset *execParam = NULL;
|
||||
|
||||
/*
|
||||
* create state structure
|
||||
|
Reference in New Issue
Block a user