up code and documentation associated with Param nodes.
index b0dd47f945aeea2e99629855f046a765eb06fe5f..39f13e5a3e5cf107775fa8cecd123ef1f995736a 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.181 2002年11月23日 03:59:07 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.182 2002年11月25日 21:29:34 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -860,9 +860,7 @@ CopyFrom(Relation rel, List *attnumlist, bool binary, bool oids,
attr[i]->attlen,
(Datum) 0,
true, /* is null */
- attr[i]->attbyval,
- false, /* not a set */
- false); /* not coerced */
+ attr[i]->attbyval);
node = coerce_type_constraints((Node *) con, attr[i]->atttypid,
COERCE_IMPLICIT_CAST);
index 1612a2d9ea2b3dd474a4ea5cd391e0a36e1926cd..d41ae779e4704cb1cae09381e76b88171218b058 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.109 2002年11月15日 02:50:06 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/executor/execQual.c,v 1.110 2002年11月25日 21:29:35 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -392,40 +392,32 @@ ExecEvalVar(Var *variable, ExprContext *econtext, bool *isNull)
* Returns the value of a parameter. A param node contains
* something like ($.name) and the expression context contains
* the current parameter bindings (name = "sam") (age = 34)...
- * so our job is to replace the param node with the datum
- * containing the appropriate information ("sam").
+ * so our job is to find and return the appropriate datum ("sam").
*
* Q: if we have a parameter ($.foo) without a binding, i.e.
* there is no (foo = xxx) in the parameter list info,
* is this a fatal error or should this be a "not available"
- * (in which case we shoud return a Const node with the
- * isnull flag) ? -cim 10/13/89
- *
- * Minor modification: Param nodes now have an extra field,
- * `paramkind' which specifies the type of parameter
- * (see params.h). So while searching the paramList for
- * a paramname/value pair, we have also to check for `kind'.
- *
- * NOTE: The last entry in `paramList' is always an
- * entry with kind == PARAM_INVALID.
+ * (in which case we could return NULL)? -cim 10/13/89
* ----------------------------------------------------------------
*/
Datum
ExecEvalParam(Param *expression, ExprContext *econtext, bool *isNull)
{
- char *thisParameterName;
- int thisParameterKind = expression->paramkind;
- AttrNumber thisParameterId = expression->paramid;
- int matchFound;
- ParamListInfo paramList;
+ int thisParamKind = expression->paramkind;
+ AttrNumber thisParamId = expression->paramid;
- if (thisParameterKind == PARAM_EXEC)
+ if (thisParamKind == PARAM_EXEC)
{
+ /*
+ * PARAM_EXEC params (internal executor parameters) are stored in
+ * the ecxt_param_exec_vals array, and can be accessed by array index.
+ */
ParamExecData *prm;
- prm = &(econtext->ecxt_param_exec_vals[thisParameterId]);
+ prm = &(econtext->ecxt_param_exec_vals[thisParamId]);
if (prm->execPlan != NULL)
{
+ /* Parameter not evaluated yet, so go do it */
ExecSetParamPlan(prm->execPlan, econtext);
/* ExecSetParamPlan should have processed this param... */
Assert(prm->execPlan == NULL);
@@ -433,82 +425,56 @@ ExecEvalParam(Param *expression, ExprContext *econtext, bool *isNull)
*isNull = prm->isnull;
return prm->value;
}
-
- thisParameterName = expression->paramname;
- paramList = econtext->ecxt_param_list_info;
-
- *isNull = false;
-
- /*
- * search the list with the parameter info to find a matching name. An
- * entry with an InvalidName denotes the last element in the array.
- */
- matchFound = 0;
- if (paramList != NULL)
+ else
{
/*
- * search for an entry in 'paramList' that matches the
- * `expression'.
+ * All other parameter types must be sought in ecxt_param_list_info.
+ * NOTE: The last entry in the param array is always an
+ * entry with kind == PARAM_INVALID.
*/
- while (paramList->kind != PARAM_INVALID && !matchFound)
+ ParamListInfo paramList = econtext->ecxt_param_list_info;
+ char *thisParamName = expression->paramname;
+ bool matchFound = false;
+
+ if (paramList != NULL)
{
- switch (thisParameterKind)
+ while (paramList->kind != PARAM_INVALID && !matchFound)
{
- case PARAM_NAMED:
- if (thisParameterKind == paramList->kind &&
- strcmp(paramList->name, thisParameterName) == 0)
- matchFound = 1;
- break;
- case PARAM_NUM:
- if (thisParameterKind == paramList->kind &&
- paramList->id == thisParameterId)
- matchFound = 1;
- break;
- case PARAM_OLD:
- case PARAM_NEW:
- if (thisParameterKind == paramList->kind &&
- paramList->id == thisParameterId)
+ if (thisParamKind == paramList->kind)
+ {
+ switch (thisParamKind)
{
- matchFound = 1;
-
- /*
- * sanity check
- */
- if (strcmp(paramList->name, thisParameterName) != 0)
- {
- elog(ERROR,
- "ExecEvalParam: new/old params with same id & diff names");
- }
+ case PARAM_NAMED:
+ if (strcmp(paramList->name, thisParamName) == 0)
+ matchFound = true;
+ break;
+ case PARAM_NUM:
+ if (paramList->id == thisParamId)
+ matchFound = true;
+ break;
+ default:
+ elog(ERROR, "ExecEvalParam: invalid paramkind %d",
+ thisParamKind);
}
- break;
- default:
+ }
+ if (!matchFound)
+ paramList++;
+ } /* while */
+ } /* if */
- /*
- * oops! this is not supposed to happen!
- */
- elog(ERROR, "ExecEvalParam: invalid paramkind %d",
- thisParameterKind);
- }
- if (!matchFound)
- paramList++;
- } /* while */
- } /* if */
+ if (!matchFound)
+ {
+ if (thisParamKind == PARAM_NAMED)
+ elog(ERROR, "ExecEvalParam: Unknown value for parameter %s",
+ thisParamName);
+ else
+ elog(ERROR, "ExecEvalParam: Unknown value for parameter %d",
+ thisParamId);
+ }
- if (!matchFound)
- {
- /*
- * ooops! we couldn't find this parameter in the parameter list.
- * Signal an error
- */
- elog(ERROR, "ExecEvalParam: Unknown value for parameter %s",
- thisParameterName);
+ *isNull = paramList->isnull;
+ return paramList->value;
}
-
- /*
- * return the value.
- */
- *isNull = paramList->isnull;
- return paramList->value;
}
index 0f02b5d119bb4fcd17701396f515a6bec2b9c3bc..a678d6326b1942da3ceb3c3117301152a505ed66 100644 (file)
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.222 2002年11月25日 03:33:27 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/copyfuncs.c,v 1.223 2002年11月25日 21:29:36 tgl Exp $
*
*-------------------------------------------------------------------------
*/
COPY_SCALAR_FIELD(constisnull);
COPY_SCALAR_FIELD(constbyval);
- COPY_SCALAR_FIELD(constisset);
- COPY_SCALAR_FIELD(constiscast);
return newnode;
}
index f417dec4886ce546320034639c90892e8f6214b2..83c2cb4245cc8d9a33475dc624888c23438b62ca 100644 (file)
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.168 2002年11月25日 03:33:27 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/equalfuncs.c,v 1.169 2002年11月25日 21:29:36 tgl Exp $
*
*-------------------------------------------------------------------------
*/
COMPARE_SCALAR_FIELD(constlen);
COMPARE_SCALAR_FIELD(constisnull);
COMPARE_SCALAR_FIELD(constbyval);
- /* XXX What about constisset and constiscast? */
/*
* We treat all NULL constants of the same type as equal. Someday this
switch (a->paramkind)
{
case PARAM_NAMED:
- case PARAM_NEW:
- case PARAM_OLD:
COMPARE_STRING_FIELD(paramname);
break;
case PARAM_NUM:
case PARAM_EXEC:
COMPARE_SCALAR_FIELD(paramid);
break;
- case PARAM_INVALID:
- /*
- * XXX: Hmmm... What are we supposed to return in this case ??
- */
- break;
default:
elog(ERROR, "_equalParam: Invalid paramkind value: %d",
a->paramkind);
index b92011445e3467f40a56c3d2ad74f98ed9bde8ae..a97a6df2fda3d0ae366b352bc33d80f02fca31f6 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/makefuncs.c,v 1.35 2002年09月18日 21:35:21 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/makefuncs.c,v 1.36 2002年11月25日 21:29:36 tgl Exp $
*/
#include "postgres.h"
int constlen,
Datum constvalue,
bool constisnull,
- bool constbyval,
- bool constisset,
- bool constiscast)
+ bool constbyval)
{
Const *cnst = makeNode(Const);
cnst->constvalue = constvalue;
cnst->constisnull = constisnull;
cnst->constbyval = constbyval;
- cnst->constisset = constisset;
- cnst->constiscast = constiscast;
+
return cnst;
}
(int) typLen,
(Datum) 0,
true,
- typByVal,
- false,
- false);
+ typByVal);
}
/*
index 3302e5f942c3f4b2c7f631a3be3e9aae476f338a..11572a4ebad0afe0527e5fd509d5d81174bdcd68 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.182 2002年11月25日 18:12:09 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.183 2002年11月25日 21:29:36 tgl Exp $
*
* NOTES
* Every node type that can appear in stored rules' parsetrees *must*
WRITE_INT_FIELD(constlen);
WRITE_BOOL_FIELD(constbyval);
WRITE_BOOL_FIELD(constisnull);
- /* XXX what about constisset, constiscast? */
appendStringInfo(str, " :constvalue ");
if (node->constisnull)
index ab5d1821ce5a13936ae65d02200a92bb79cc9f72..eca2e3017b07b5e43d35baa5cbf8168f0ab9211a 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.139 2002年11月25日 18:12:10 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.140 2002年11月25日 21:29:38 tgl Exp $
*
* NOTES
* Path and Plan nodes do not have any readfuncs support, because we
READ_INT_FIELD(constlen);
READ_BOOL_FIELD(constbyval);
READ_BOOL_FIELD(constisnull);
- /* XXX what about constisset, constiscast? */
token = pg_strtok(&length); /* skip :constvalue */
if (local_node->constisnull)
index 8a1ab28ac1e9737ec084ba24ded99b1fec5e4a3f..d0976ca4219b866e37eaa68b88d760c904294659 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/optimizer/path/clausesel.c,v 1.52 2002年10月19日 02:56:16 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/path/clausesel.c,v 1.53 2002年11月25日 21:29:39 tgl Exp $
*
*-------------------------------------------------------------------------
*/
/* note that pg_type.h hardwires size of bool as 1 ... duplicate it */
#define MAKEBOOLCONST(val,isnull) \
- ((Node *) makeConst(BOOLOID, 1, (Datum) (val), \
- (isnull), true, false, false))
+ ((Node *) makeConst(BOOLOID, 1, (Datum) (val), (isnull), true))
/*
index ae5db3634ff978a9217c24d2ba1c606f09fdd4ac..c0241bb9ef3665976fd20b4d4b3d0ed892955f71 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.125 2002年11月24日 21:52:14 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/path/indxpath.c,v 1.126 2002年11月25日 21:29:39 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -2167,7 +2167,7 @@ network_prefix_quals(Var *leftop, Oid expr_op, Datum rightop)
op = makeOper(opr1oid, InvalidOid, BOOLOID, false);
expr = make_opclause(op, leftop,
(Var *) makeConst(datatype, -1, opr1right,
- false, false, false, false));
+ false, false));
result = makeList1(expr);
/* create clause "key <= network_scan_last( rightop )" */
@@ -2182,7 +2182,7 @@ network_prefix_quals(Var *leftop, Oid expr_op, Datum rightop)
op = makeOper(opr2oid, InvalidOid, BOOLOID, false);
expr = make_opclause(op, leftop,
(Var *) makeConst(datatype, -1, opr2right,
- false, false, false, false));
+ false, false));
result = lappend(result, expr);
return result;
Datum conval = string_to_datum(str, datatype);
return makeConst(datatype, ((datatype == NAMEOID) ? NAMEDATALEN : -1),
- conval, false, false, false, false);
+ conval, false, false);
}
index 95687cb0d0d0d09eed4ce197f0223888e4d2926c..68895143061b5e4ffeced0db43882fbbf7c7543e 100644 (file)
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.57 2002年09月18日 21:35:21 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/preptlist.c,v 1.58 2002年11月25日 21:29:40 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -183,9 +183,7 @@ expand_targetlist(List *tlist, int command_type,
att_tup->attlen,
(Datum) 0,
true, /* isnull */
- att_tup->attbyval,
- false, /* not a set */
- false);
+ att_tup->attbyval);
if (!att_tup->attisdropped)
new_expr = coerce_type_constraints(new_expr,
atttype,
@@ -198,9 +196,7 @@ expand_targetlist(List *tlist, int command_type,
att_tup->attlen,
(Datum) 0,
true, /* isnull */
- att_tup->attbyval,
- false, /* not a set */
- false);
+ att_tup->attbyval);
else
new_expr = (Node *) makeVar(result_relation,
attrno,
index 914b0eee618cd1d4bbde35d194f8912c80d08e92..79063c02806945194f3ba96b0fce2c973cd04654 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepunion.c,v 1.80 2002年09月18日 21:35:21 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/prep/prepunion.c,v 1.81 2002年11月25日 21:29:40 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -448,9 +448,7 @@ generate_setop_tlist(List *colTypes, int flag,
sizeof(int4),
Int32GetDatum(flag),
false,
- true,
- false,
- false);
+ true);
tlist = lappend(tlist, makeTargetEntry(resdom, expr));
}
index e7b4e3b5dbc6476dad2a87a833e1eb3310eec49a..2bc1c2afbec244d0c1c975bfb6c2d9661ddd4ab7 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/optimizer/util/clauses.c,v 1.111 2002年11月15日 02:50:07 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/optimizer/util/clauses.c,v 1.112 2002年11月25日 21:29:40 tgl Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
/* note that pg_type.h hardwires size of bool as 1 ... duplicate it */
#define MAKEBOOLCONST(val,isnull) \
- ((Node *) makeConst(BOOLOID, 1, (Datum) (val), \
- (isnull), true, false, false))
+ ((Node *) makeConst(BOOLOID, 1, (Datum) (val), (isnull), true))
typedef struct
{
@@ -666,7 +665,8 @@ check_subplans_for_ungrouped_vars_walker(Node *node,
if (node == NULL)
return false;
- if (IsA(node, Const) ||IsA(node, Param))
+ if (IsA(node, Const) ||
+ IsA(node, Param))
return false; /* constants are always acceptable */
/*
@@ -1286,8 +1286,8 @@ eval_const_expressions_mutator(Node *node, void *context)
* Make the constant result node.
*/
return (Node *) makeConst(result_typeid, resultTypLen,
- const_val, const_is_null,
- resultTypByVal, false, false);
+ const_val, const_is_null,
+ resultTypByVal);
}
break;
}
*/
return (Expr *) makeConst(result_typeid, resultTypLen,
const_val, const_is_null,
- resultTypByVal, false, false);
+ resultTypByVal);
}
index df09e0177cc3d3933374e28b102c7a827de83374..d4c879f77027dc054aa50b11b5a9c66764cef7da 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.382 2002年11月25日 03:36:50 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.383 2002年11月25日 21:29:40 tgl Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
n->constvalue = Int32GetDatum(1ドル);
n->constisnull = FALSE;
n->constbyval = TRUE;
- n->constisset = FALSE;
- n->constiscast = FALSE;
$$ = (Node *)n;
}
| ALL
n->constvalue = (Datum) 0;
n->constisnull = TRUE;
n->constbyval = TRUE;
- n->constisset = FALSE;
- n->constiscast = FALSE;
$$ = (Node *)n;
}
| PARAM
n->constvalue = Int32GetDatum(1ドル);
n->constisnull = FALSE;
n->constbyval = TRUE;
- n->constisset = FALSE;
- n->constiscast = FALSE;
$$ = (Node *)n;
}
| PARAM
index a24af2de3e1a1c4767f5c12017f51ddb08df33ca..e65590862862964f36590103a0e2716e6af9bb38 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.86 2002年11月15日 02:50:09 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/parse_coerce.c,v 2.87 2002年11月25日 21:29:41 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -161,7 +161,6 @@ coerce_type(Node *node, Oid inputTypeId, Oid targetTypeId,
newcon->constlen = typeLen(targetType);
newcon->constbyval = typeByVal(targetType);
newcon->constisnull = con->constisnull;
- newcon->constisset = false;
if (!con->constisnull)
{
@@ -553,9 +552,7 @@ coerce_type_typmod(Node *node, Oid targetTypeId, int32 targetTypMod,
sizeof(int32),
Int32GetDatum(targetTypMod),
false,
- true,
- false,
- false);
+ true);
args = makeList2(node, cons);
@@ -566,9 +563,7 @@ coerce_type_typmod(Node *node, Oid targetTypeId, int32 targetTypMod,
sizeof(bool),
BoolGetDatum(cformat != COERCE_IMPLICIT_CAST),
false,
- true,
- false,
- false);
+ true);
args = lappend(args, cons);
}
index 608a67921c128863a8f4a1784745468f52fb5e56..088aaafb0b32c8cee87716977ec3ecab76d979eb 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/parse_node.c,v 1.73 2002年11月15日 02:50:09 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/parse_node.c,v 1.74 2002年11月25日 21:29:41 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -293,9 +293,7 @@ transformArraySubscripts(ParseState *pstate,
sizeof(int32),
Int32GetDatum(1),
false,
- true, /* pass by value */
- false,
- false);
+ true); /* pass by value */
}
lowerIndexpr = lappend(lowerIndexpr, subexpr);
}
-1,
(Datum) NULL,
true,
- false,
- false,
false);
return con;
}
typelen,
val,
false,
- typebyval,
- false, /* not a set */
- false); /* not coerced */
+ typebyval);
return con;
}
index 9250faff27a7ab274d0f18293212f32bd0207445..01aac333b5e49fb3b07516834ec3431a740bca30 100644 (file)
* back to source text
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/ruleutils.c,v 1.125 2002年11月15日 02:50:09 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/ruleutils.c,v 1.126 2002年11月25日 21:29:41 tgl Exp $
*
* This software is copyrighted by Jan Wieck - Hamburg.
*
@@ -2243,8 +2243,6 @@ get_rule_expr(Node *node, deparse_context *context,
switch (param->paramkind)
{
case PARAM_NAMED:
- case PARAM_NEW:
- case PARAM_OLD:
appendStringInfo(buf, "$%s", param->paramname);
break;
case PARAM_NUM:
index 23e012c64e9deac9474246b1b78a245b3fc5202f..827b000d229bf92097af0a2ff97793264bc20005 100644 (file)
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.121 2002年11月19日 23:21:59 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/selfuncs.c,v 1.122 2002年11月25日 21:29:42 tgl Exp $
*
*-------------------------------------------------------------------------
*/
Datum conval = string_to_datum(str, datatype);
return makeConst(datatype, ((datatype == NAMEOID) ? NAMEDATALEN : -1),
- conval, false, false, false, false);
+ conval, false, false);
}
/*-------------------------------------------------------------------------
index ae77dacd13a8b25e9cbf2d0e38a8a3d21b315f21..cd7dc8d549f99082b1a05106651521ce13c8800c 100644 (file)
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.85 2002年09月19日 23:40:56 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.86 2002年11月25日 21:29:42 tgl Exp $
*
* NOTES
* Eventually, the index information should go through here, too.
type->typlen,
datum,
false,
- type->typbyval,
- false, /* not a set */
- false);
+ type->typbyval);
pfree(strDefaultVal);
}
else
index c9781b7255f7c0674ce734ba57b01bc88c8f9a29..6ee39b98182174ed2773c0cd1e52732699f5a7d6 100644 (file)
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: execnodes.h,v 1.79 2002年11月22日 22:10:01 tgl Exp $
+ * $Id: execnodes.h,v 1.80 2002年11月25日 21:29:42 tgl Exp $
*
*-------------------------------------------------------------------------
*/
*
* direction direction of the scan
*
+ * snapshot time qual to use
+ *
* range_table array of scan relation information
*
* result_relation information for insert/update/delete queries
*
* into_relation_descriptor relation being retrieved "into"
*
- * param_list_info information needed to transform
- * Param nodes into Const nodes
+ * param_list_info information about Param values
*
* tupleTable this is a pointer to an array
* of pointers to tuples used by
* elt */
JunkFilter *es_junkFilter; /* currently active junk filter */
Relation es_into_relation_descriptor;
- ParamListInfo es_param_list_info;
- ParamExecData *es_param_exec_vals; /* this is for subselects */
+ ParamListInfo es_param_list_info; /* values of external params */
+ ParamExecData *es_param_exec_vals; /* values of internal params */
TupleTable es_tupleTable;
uint32 es_processed; /* # of tuples processed */
Oid es_lastoid; /* last oid processed (by INSERT) */
* needed.
*/
ExprContext *es_per_tuple_exprcontext;
+
/* Below is to re-evaluate plan qual in READ COMMITTED mode */
struct Plan *es_origPlan;
Pointer es_evalPlanQual;
index e7c9c29413cbd78b19bafa82fb5c4ccfa5cb4984..68f0dcda49a215e41fcdc08309ca66ba0f651663 100644 (file)
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: makefuncs.h,v 1.41 2002年09月18日 21:35:24 tgl Exp $
+ * $Id: makefuncs.h,v 1.42 2002年11月25日 21:29:42 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -45,9 +45,7 @@ extern Const *makeConst(Oid consttype,
int constlen,
Datum constvalue,
bool constisnull,
- bool constbyval,
- bool constisset,
- bool constiscast);
+ bool constbyval);
extern Const *makeNullConst(Oid consttype);
index 1aa17964d658bf63df05dc3864f751db132ffbaa..ef0e0682be685d9907a2a353a72be367bc765f17 100644 (file)
/*-------------------------------------------------------------------------
*
* params.h
- * Declarations/definitions of stuff needed to handle parameterized plans.
+ * Declarations of stuff needed to handle parameterized plans.
*
*
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: params.h,v 1.17 2002年06月20日 20:29:51 momjian Exp $
+ * $Id: params.h,v 1.18 2002年11月25日 21:29:42 tgl Exp $
*
*-------------------------------------------------------------------------
*/
#include "access/attnum.h"
-/* ----------------------------------------------------------------
- *
+
+/* ----------------
* The following are the possible values for the 'paramkind'
* field of a Param node.
*
* PARAM_NAMED: The parameter has a name, i.e. something
* like `$.salary' or `$.foobar'.
- * In this case field `paramname' must be a valid Name.
- * and field `paramid' must be == 0.
+ * In this case field `paramname' must be a valid name.
*
* PARAM_NUM: The parameter has only a numeric identifier,
* i.e. something like `1ドル', `2ドル' etc.
- * The number is contained in the `parmid' field.
+ * The number is contained in the `paramid' field.
*
- * PARAM_NEW: Used in PRS2 rule, similar to PARAM_NAMED.
- * The `paramname' & `paramid' refer to the "NEW" tuple
- * `paramname' is the attribute name and `paramid' its
- * attribute number.
+ * PARAM_EXEC: The parameter is an internal executor parameter.
+ * It has a number contained in the `paramid' field.
*
- * PARAM_OLD: Same as PARAM_NEW, but in this case we refer to
- * the "OLD" tuple.
- *
- * PARAM_EXEC: Evaluated by executor. Used for subselect...
+ * PARAM_INVALID should never appear in a Param node; it's used to mark
+ * the end of a ParamListInfo array.
*
+ * NOTE: As of PostgreSQL 7.3, named parameters aren't actually used and
+ * so the code that handles PARAM_NAMED cases is dead code. We leave it
+ * in place since it might be resurrected someday.
+ * ----------------
*/
#define PARAM_NAMED 11
#define PARAM_NUM 12
-#define PARAM_NEW 13
-#define PARAM_OLD 14
#define PARAM_EXEC 15
#define PARAM_INVALID 100
-/* ----------------------------------------------------------------
+/* ----------------
* ParamListInfo
*
- * Information needed in order for the executor to handle
- * parameterized plans (you know, $.salary, $.name etc. stuff...).
- *
- * ParamListInfoData contains information needed when substituting a
- * Param node with a Const node.
+ * ParamListInfo entries are used to pass parameters into the executor
+ * for parameterized plans. Each entry in the array defines the value
+ * to be substituted for a PARAM_NAMED or PARAM_NUM parameter.
*
- * kind : the kind of parameter.
- * name : the parameter name (valid if kind == PARAM_NAMED,
- * PARAM_NEW or PARAM_OLD)
+ * kind : the kind of parameter (PARAM_NAMED or PARAM_NUM)
+ * name : the parameter name (valid if kind == PARAM_NAMED)
* id : the parameter id (valid if kind == PARAM_NUM)
- * or the attrno (if kind == PARAM_NEW or PARAM_OLD)
- * type : PG_TYPE OID of the value
- * length : length in bytes of the value
- * isnull : true if & only if the value is null (if true then
- * the fields 'length' and 'value' are undefined).
+ * isnull : true if the value is null (if so 'value' is undefined)
* value : the value that has to be substituted in the place
* of the parameter.
*
* ParamListInfo is to be used as an array of ParamListInfoData
- * records. An 'InvalidName' in the name field of such a record
- * indicates that this is the last record in the array.
- *
- * ----------------------------------------------------------------
+ * records. A dummy record with kind == PARAM_INVALID marks the end
+ * of the array.
+ * ----------------
*/
typedef struct ParamListInfoData
int kind;
char *name;
AttrNumber id;
- Oid type;
- Size length;
bool isnull;
- bool byval;
Datum value;
} ParamListInfoData;
typedef ParamListInfoData *ParamListInfo;
+
+/* ----------------
+ * ParamExecData
+ *
+ * ParamExecData entries are used for executor internal parameters
+ * (that is, values being passed into or out of a sub-query). The
+ * paramid of a PARAM_EXEC Param is a (zero-based) index into an
+ * array of ParamExecData records, which is referenced through
+ * es_param_exec_vals or ecxt_param_exec_vals.
+ *
+ * If execPlan is not NULL, it points to a SubPlan node that needs to
+ * be executed to produce the value. (This is done so that we can have
+ * lazy evaluation of InitPlans: they aren't executed until/unless a
+ * result value is needed.) Otherwise the value is assumed to be valid
+ * when needed.
+ * ----------------
+ */
+
typedef struct ParamExecData
{
- void *execPlan; /* plan must be executed to get param
- * value */
+ void *execPlan; /* should be "SubPlan *" */
Datum value;
bool isnull;
} ParamExecData;
index 1d7c5115b64a44fa2057144335cdd2aed09f9e70..f0f37c3d9d33dd5dda9d8d7169641027dbf3db8f 100644 (file)
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: primnodes.h,v 1.68 2002年09月18日 21:35:24 tgl Exp $
+ * $Id: primnodes.h,v 1.69 2002年11月25日 21:29:42 tgl Exp $
*
*-------------------------------------------------------------------------
*/
typedef struct Const
{
NodeTag type;
- Oid consttype; /* PG_TYPE OID of the constant's value */
- int constlen; /* length in bytes of the constant's value */
+ Oid consttype; /* PG_TYPE OID of the constant's datatype */
+ int constlen; /* typlen of the constant's datatype */
Datum constvalue; /* the constant's value */
bool constisnull; /* whether the constant is null (if true,
- * the other fields are undefined) */
- bool constbyval; /* whether the information in constvalue
- * if passed by value. If true, then all
- * the information is stored in the datum.
- * If false, then the datum contains a
+ * constvalue is undefined) */
+ bool constbyval; /* whether this datatype is passed by value.
+ * If true, then all the information is
+ * stored in the Datum.
+ * If false, then the Datum contains a
* pointer to the information. */
- bool constisset; /* whether the const represents a set. The
- * const value corresponding will be the
- * query that defines the set. */
- bool constiscast;
} Const;
/* ----------------
*
* PARAM_NAMED: The parameter has a name, i.e. something
* like `$.salary' or `$.foobar'.
- * In this case field `paramname' must be a valid Name.
+ * In this case field `paramname' must be a valid name.
*
* PARAM_NUM: The parameter has only a numeric identifier,
* i.e. something like `1ドル', `2ドル' etc.
* The number is contained in the `paramid' field.
*
- * PARAM_NEW: Used in PRS2 rule, similar to PARAM_NAMED.
- * The `paramname' and `paramid' refer to the "NEW" tuple
- * The `pramname' is the attribute name and `paramid'
- * is the attribute number.
+ * PARAM_EXEC: The parameter is an internal executor parameter.
+ * It has a number contained in the `paramid' field.
*
- * PARAM_OLD: Same as PARAM_NEW, but in this case we refer to
- * the "OLD" tuple.
* ----------------
*/
typedef struct Param
{
NodeTag type;
- int paramkind; /* specifies the kind of parameter. See
- * above */
- AttrNumber paramid; /* numeric identifier for literal-constant
- * parameters ("1ドル") */
- char *paramname; /* attribute name for tuple-substitution
- * parameters ("$.foo") */
- Oid paramtype; /* PG_TYPE OID of the parameter's value */
+ int paramkind; /* kind of parameter. See above */
+ AttrNumber paramid; /* numeric ID for parameter ("1ドル") */
+ char *paramname; /* name for parameter ("$.foo") */
+ Oid paramtype; /* PG_TYPE OID of parameter's datatype */
} Param;
/*