mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Statistical system views (yet without the config stuff, but
it's hard to keep such massive changes in sync with the tree so I need to get it in and work from there now). Jan
This commit is contained in:
@ -27,7 +27,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.143 2001/06/01 02:41:35 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/execMain.c,v 1.144 2001/06/22 19:16:22 wieck Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -1671,7 +1671,7 @@ EvalPlanQual(EState *estate, Index rti, ItemPointer tid)
|
||||
{
|
||||
Buffer buffer;
|
||||
|
||||
heap_fetch(relation, SnapshotDirty, &tuple, &buffer);
|
||||
heap_fetch(relation, SnapshotDirty, &tuple, &buffer, NULL);
|
||||
if (tuple.t_data != NULL)
|
||||
{
|
||||
TransactionId xwait = SnapshotDirty->xmax;
|
||||
|
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.60 2001/05/27 20:42:18 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeIndexscan.c,v 1.61 2001/06/22 19:16:22 wieck Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -173,7 +173,7 @@ IndexNext(IndexScan *node)
|
||||
while ((result = index_getnext(scandesc, direction)) != NULL)
|
||||
{
|
||||
tuple->t_self = result->heap_iptr;
|
||||
heap_fetch(heapRelation, snapshot, tuple, &buffer);
|
||||
heap_fetch(heapRelation, snapshot, tuple, &buffer, scandesc);
|
||||
pfree(result);
|
||||
|
||||
if (tuple->t_data != NULL)
|
||||
|
@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeTidscan.c,v 1.17 2001/05/27 20:42:20 tgl Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/executor/nodeTidscan.c,v 1.18 2001/06/22 19:16:22 wieck Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -152,7 +152,7 @@ TidNext(TidScan *node)
|
||||
if (itemptr)
|
||||
{
|
||||
tuple->t_self = *(itemptr);
|
||||
heap_fetch(heapRelation, snapshot, tuple, &buffer);
|
||||
heap_fetch(heapRelation, snapshot, tuple, &buffer, NULL);
|
||||
}
|
||||
if (tuple->t_data != NULL)
|
||||
{
|
||||
|
Reference in New Issue
Block a user