mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
to plan nodes, not vice-versa. All executor state nodes now inherit from struct PlanState. Copying of plan trees has been simplified by not storing a list of SubPlans in Plan nodes (eliminating duplicate links). The executor still needs such a list, but it can build it during ExecutorStart since it has to scan the plan tree anyway. No initdb forced since no stored-on-disk structures changed, but you will need a full recompile because of node-numbering changes.
145 lines
4.1 KiB
C
145 lines
4.1 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* execScan.c
|
|
* This code provides support for generalized relation scans. ExecScan
|
|
* is passed a node and a pointer to a function to "do the right thing"
|
|
* and return a tuple from the relation. ExecScan then does the tedious
|
|
* stuff - checking the qualification and projecting the tuple
|
|
* appropriately.
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
*
|
|
* IDENTIFICATION
|
|
* $Header: /cvsroot/pgsql/src/backend/executor/execScan.c,v 1.22 2002/12/05 15:50:32 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#include "postgres.h"
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include "executor/executor.h"
|
|
#include "miscadmin.h"
|
|
#include "utils/memutils.h"
|
|
|
|
|
|
/* ----------------------------------------------------------------
|
|
* ExecScan
|
|
*
|
|
* Scans the relation using the 'access method' indicated and
|
|
* returns the next qualifying tuple in the direction specified
|
|
* in the global variable ExecDirection.
|
|
* The access method returns the next tuple and execScan() is
|
|
* responsible for checking the tuple returned against the qual-clause.
|
|
*
|
|
* Conditions:
|
|
* -- the "cursor" maintained by the AMI is positioned at the tuple
|
|
* returned previously.
|
|
*
|
|
* Initial States:
|
|
* -- the relation indicated is opened for scanning so that the
|
|
* "cursor" is positioned before the first qualifying tuple.
|
|
* ----------------------------------------------------------------
|
|
*/
|
|
TupleTableSlot *
|
|
ExecScan(ScanState *node,
|
|
ExecScanAccessMtd accessMtd) /* function returning a tuple */
|
|
{
|
|
EState *estate;
|
|
ExprContext *econtext;
|
|
List *qual;
|
|
ExprDoneCond isDone;
|
|
TupleTableSlot *resultSlot;
|
|
|
|
/*
|
|
* Fetch data from node
|
|
*/
|
|
estate = node->ps.state;
|
|
econtext = node->ps.ps_ExprContext;
|
|
qual = node->ps.qual;
|
|
|
|
/*
|
|
* Check to see if we're still projecting out tuples from a previous
|
|
* scan tuple (because there is a function-returning-set in the
|
|
* projection expressions). If so, try to project another one.
|
|
*/
|
|
if (node->ps.ps_TupFromTlist)
|
|
{
|
|
resultSlot = ExecProject(node->ps.ps_ProjInfo, &isDone);
|
|
if (isDone == ExprMultipleResult)
|
|
return resultSlot;
|
|
/* Done with that source tuple... */
|
|
node->ps.ps_TupFromTlist = false;
|
|
}
|
|
|
|
/*
|
|
* Reset per-tuple memory context to free any expression evaluation
|
|
* storage allocated in the previous tuple cycle. Note this can't
|
|
* happen until we're done projecting out tuples from a scan tuple.
|
|
*/
|
|
ResetExprContext(econtext);
|
|
|
|
/*
|
|
* get a tuple from the access method loop until we obtain a tuple
|
|
* which passes the qualification.
|
|
*/
|
|
for (;;)
|
|
{
|
|
TupleTableSlot *slot;
|
|
|
|
CHECK_FOR_INTERRUPTS();
|
|
|
|
slot = (*accessMtd) (node);
|
|
|
|
/*
|
|
* if the slot returned by the accessMtd contains NULL, then it
|
|
* means there is nothing more to scan so we just return an empty
|
|
* slot, being careful to use the projection result slot so it has
|
|
* correct tupleDesc.
|
|
*/
|
|
if (TupIsNull(slot))
|
|
{
|
|
return ExecStoreTuple(NULL,
|
|
node->ps.ps_ProjInfo->pi_slot,
|
|
InvalidBuffer,
|
|
true);
|
|
}
|
|
|
|
/*
|
|
* place the current tuple into the expr context
|
|
*/
|
|
econtext->ecxt_scantuple = slot;
|
|
|
|
/*
|
|
* check that the current tuple satisfies the qual-clause
|
|
*
|
|
* check for non-nil qual here to avoid a function call to ExecQual()
|
|
* when the qual is nil ... saves only a few cycles, but they add
|
|
* up ...
|
|
*/
|
|
if (!qual || ExecQual(qual, econtext, false))
|
|
{
|
|
/*
|
|
* Found a satisfactory scan tuple.
|
|
*
|
|
* Form a projection tuple, store it in the result tuple slot and
|
|
* return it --- unless we find we can project no tuples from
|
|
* this scan tuple, in which case continue scan.
|
|
*/
|
|
resultSlot = ExecProject(node->ps.ps_ProjInfo, &isDone);
|
|
if (isDone != ExprEndResult)
|
|
{
|
|
node->ps.ps_TupFromTlist = (isDone == ExprMultipleResult);
|
|
return resultSlot;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Tuple fails qual, so free per-tuple memory and try again.
|
|
*/
|
|
ResetExprContext(econtext);
|
|
}
|
|
}
|