diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-08 15:43:12 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-08 15:43:12 +0000 |
commit | 62e29fe2e748933bfd8ab1429518ee7b5a8974a7 (patch) | |
tree | d9ca32ad908a811854e890c059b46b8ff13fa038 /src/backend/nodes/readfuncs.c | |
parent | 8fc32374beb542380857e2fc0d67df91ad123b1d (diff) | |
download | postgresql-62e29fe2e748933bfd8ab1429518ee7b5a8974a7.tar.gz postgresql-62e29fe2e748933bfd8ab1429518ee7b5a8974a7.zip |
Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'
from Param nodes, per discussion a few days ago on pghackers. Add new
expression node type FieldSelect that implements the functionality where
it's actually needed. Clean up some other unused fields in Func nodes
as well.
NOTE: initdb forced due to change in stored expression trees for rules.
Diffstat (limited to 'src/backend/nodes/readfuncs.c')
-rw-r--r-- | src/backend/nodes/readfuncs.c | 70 |
1 files changed, 38 insertions, 32 deletions
diff --git a/src/backend/nodes/readfuncs.c b/src/backend/nodes/readfuncs.c index c663ba304fc..17e0396e5fe 100644 --- a/src/backend/nodes/readfuncs.c +++ b/src/backend/nodes/readfuncs.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.94 2000/07/22 04:22:46 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.95 2000/08/08 15:41:27 tgl Exp $ * * NOTES * Most of the read functions for plan nodes are tested. (In fact, they @@ -942,29 +942,7 @@ _readFunc() token = lsptok(NULL, &length); /* now read it */ local_node->functype = (Oid) atol(token); - token = lsptok(NULL, &length); /* get :funcisindex */ - token = lsptok(NULL, &length); /* now read it */ - - if (!strncmp(token, "true", 4)) - local_node->funcisindex = true; - else - local_node->funcisindex = false; - - token = lsptok(NULL, &length); /* get :funcsize */ - token = lsptok(NULL, &length); /* now read it */ - local_node->funcsize = atol(token); - - token = lsptok(NULL, &length); /* get :func_fcache */ - token = lsptok(NULL, &length); /* get @ */ - token = lsptok(NULL, &length); /* now read it */ - - local_node->func_fcache = (FunctionCache *) NULL; - - token = lsptok(NULL, &length); /* get :func_tlist */ - local_node->func_tlist = nodeRead(true); /* now read it */ - - token = lsptok(NULL, &length); /* get :func_planlist */ - local_node->func_planlist = nodeRead(true); /* now read it */ + local_node->func_fcache = NULL; return local_node; } @@ -996,11 +974,7 @@ _readOper() token = lsptok(NULL, &length); /* now read it */ local_node->opresulttype = (Oid) atol(token); - /* - * NOTE: Alternatively we can call 'replace_opid' which initializes - * both 'opid' and 'op_fcache'. - */ - local_node->op_fcache = (FunctionCache *) NULL; + local_node->op_fcache = NULL; return local_node; } @@ -1039,9 +1013,6 @@ _readParam() token = lsptok(NULL, &length); /* now read it */ local_node->paramtype = (Oid) atol(token); - token = lsptok(NULL, &length); /* get :param_tlist */ - local_node->param_tlist = nodeRead(true); /* now read it */ - return local_node; } @@ -1122,6 +1093,39 @@ _readSubLink() } /* ---------------- + * _readFieldSelect + * + * FieldSelect is a subclass of Node + * ---------------- + */ +static FieldSelect * +_readFieldSelect() +{ + FieldSelect *local_node; + char *token; + int length; + + local_node = makeNode(FieldSelect); + + token = lsptok(NULL, &length); /* eat :arg */ + local_node->arg = nodeRead(true); /* now read it */ + + token = lsptok(NULL, &length); /* eat :fieldnum */ + token = lsptok(NULL, &length); /* get fieldnum */ + local_node->fieldnum = (AttrNumber) atoi(token); + + token = lsptok(NULL, &length); /* eat :resulttype */ + token = lsptok(NULL, &length); /* get resulttype */ + local_node->resulttype = (Oid) atol(token); + + token = lsptok(NULL, &length); /* eat :resulttypmod */ + token = lsptok(NULL, &length); /* get resulttypmod */ + local_node->resulttypmod = atoi(token); + + return local_node; +} + +/* ---------------- * _readRelabelType * * RelabelType is a subclass of Node @@ -1781,6 +1785,8 @@ parsePlanString(void) return_value = _readAggref(); else if (length == 7 && strncmp(token, "SUBLINK", length) == 0) return_value = _readSubLink(); + else if (length == 11 && strncmp(token, "FIELDSELECT", length) == 0) + return_value = _readFieldSelect(); else if (length == 11 && strncmp(token, "RELABELTYPE", length) == 0) return_value = _readRelabelType(); else if (length == 3 && strncmp(token, "AGG", length) == 0) |