*** pgsql/src/backend/nodes/makefuncs.c 2009/04/04 21:12:31 1.64 --- pgsql/src/backend/nodes/makefuncs.c 2009/07/16 06:33:42 1.65 *************** *** 9,15 **** * * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/nodes/makefuncs.c,v 1.63 2009/02/02 19:31:39 alvherre Exp $ * *------------------------------------------------------------------------- */ --- 9,15 ---- * * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/nodes/makefuncs.c,v 1.64 2009/04/04 21:12:31 tgl Exp $ * *------------------------------------------------------------------------- */ *************** makeTypeNameFromNameList(List *names) *** 316,326 **** * build a TypeName node to represent a type already known by OID/typmod. */ TypeName * ! makeTypeNameFromOid(Oid typeid, int32 typmod) { TypeName *n = makeNode(TypeName); ! n->typeid = typeid; n->typemod = typmod; n->location = -1; return n; --- 316,326 ---- * build a TypeName node to represent a type already known by OID/typmod. */ TypeName * ! makeTypeNameFromOid(Oid typeOid, int32 typmod) { TypeName *n = makeNode(TypeName); ! n->typeOid = typeOid; n->typemod = typmod; n->location = -1; return n; *************** makeDefElem(char *name, Node *arg) *** 373,384 **** * build a DefElem node with all fields available to be specified */ DefElem * ! makeDefElemExtended(char *namespace, char *name, Node *arg, DefElemAction defaction) { DefElem *res = makeNode(DefElem); ! res->defnamespace = namespace; res->defname = name; res->arg = arg; res->defaction = defaction; --- 373,384 ---- * build a DefElem node with all fields available to be specified */ DefElem * ! makeDefElemExtended(char *nameSpace, char *name, Node *arg, DefElemAction defaction) { DefElem *res = makeNode(DefElem); ! res->defnamespace = nameSpace; res->defname = name; res->arg = arg; res->defaction = defaction;