primnodes.h 10.0 KB
Newer Older
1 2 3
/*-------------------------------------------------------------------------
 *
 * primnodes.h--
4
 *	  Definitions for parse tree/query tree ("primitive") nodes.
5 6 7 8
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
9
 * $Id: primnodes.h,v 1.16 1998/01/20 22:12:14 momjian Exp $
10 11 12 13
 *
 *-------------------------------------------------------------------------
 */
#ifndef PRIMNODES_H
14
#define PRIMNODES_H
15

16 17 18
#include <utils/fcache.h>
#include <access/attnum.h>
#include <nodes/pg_list.h>
19 20

/* ----------------------------------------------------------------
21
 *						node definitions
22 23 24 25 26
 * ----------------------------------------------------------------
 */

/* ----------------
 * Resdom (Result Domain)
27 28 29 30 31 32 33 34 35
 *		resno			- attribute number
 *		restype			- type of the resdom
 *		reslen			- length (in bytes) of the result
 *		resname			- name of the resdom (could be NULL)
 *		reskey			- order of key in a sort (for those > 0)
 *		reskeyop		- sort operator Oid
 *		resjunk			- set to nonzero to eliminate the attribute
 *						  from final target list  e.g., ctid for replace
 *						  and delete
36 37 38
 *
 * ----------------
 */
39 40
typedef struct Resdom
{
41 42 43 44 45 46 47 48
	NodeTag		type;
	AttrNumber	resno;
	Oid			restype;
	int			reslen;
	char	   *resname;
	Index		reskey;
	Oid			reskeyop;
	int			resjunk;
49
} Resdom;
50 51 52

/* -------------
 * Fjoin
53 54 55 56 57 58 59 60 61 62 63 64 65 66
 *		initialized		- true if the Fjoin has already been initialized for
 *						  the current target list evaluation
 *		nNodes			- The number of Iter nodes returning sets that the
 *						  node will flatten
 *		outerList		- 1 or more Iter nodes
 *		inner			- exactly one Iter node.  We eval every node in the
 *						  outerList once then eval the inner node to completion
 *						  pair the outerList result vector with each inner
 *						  result to form the full result.  When the inner has
 *						  been exhausted, we get the next outer result vector
 *						  and reset the inner.
 *		results			- The complete (flattened) result vector
 *		alwaysNull		- a null vector to indicate sets with a cardinality of
 *						  0, we treat them as the set {NULL}.
67
 */
68 69
typedef struct Fjoin
{
70 71 72 73 74 75
	NodeTag		type;
	bool		fj_initialized;
	int			fj_nNodes;
	List	   *fj_innerNode;
	DatumPtr	fj_results;
	BoolPtr		fj_alwaysDone;
76
} Fjoin;
77 78 79

/* ----------------
 * Expr
80 81 82 83 84
 *		typeOid			- oid of the type of this expression
 *		opType			- type of this expression
 *		oper			- the Oper node if it is an OPER_EXPR or the
 *						  Func node if it is a FUNC_EXPR
 *		args			- arguments to this expression
85 86
 * ----------------
 */
87 88 89
typedef enum OpType
{
	OP_EXPR, FUNC_EXPR, OR_EXPR, AND_EXPR, NOT_EXPR
90
} OpType;
91

92 93
typedef struct Expr
{
94 95 96 97 98
	NodeTag		type;
	Oid			typeOid;		/* oid of the type of this expr */
	OpType		opType;			/* type of the op */
	Node	   *oper;			/* could be Oper or Func */
	List	   *args;			/* list of argument nodes */
99
} Expr;
100 101 102

/* ----------------
 * Var
103 104 105 106
 *		varno			- index of this var's relation in the range table
 *						  (could be INNER or OUTER)
 *		varattno		- attribute number of this var, or zero for all
 *		vartype			- pg_type tuple oid for the type of this var
107
 *		varlevelsup		- for subquery variables referencing outer relations
108 109 110 111
 *		varnoold		- keep varno around in case it got changed to INNER/
 *						  OUTER (see match_varid)
 *		varoattno		- attribute number of this var
 *						  [ '(varnoold varoattno) was varid   -ay 2/95]
112 113
 * ----------------
 */
114 115
#define    INNER		65000
#define    OUTER		65001
116

117 118
#define    PRS2_CURRENT_VARNO			1
#define    PRS2_NEW_VARNO				2
119

120 121
typedef struct Var
{
122 123 124 125
	NodeTag		type;
	Index		varno;
	AttrNumber	varattno;
	Oid			vartype;
126
	Index		varlevelsup;	/* erased by upper optimizer */
127 128
	Index		varnoold;		/* only used by optimizer */
	AttrNumber	varoattno;		/* only used by optimizer */
129
} Var;
130 131 132

/* ----------------
 * Oper
133 134 135 136 137
 *		opno			- PG_OPERATOR OID of the operator
 *		opid			- PG_PROC OID for the operator
 *		opresulttype	- PG_TYPE OID of the operator's return value
 *		opsize			- size of return result (cached by executor)
 *		op_fcache		- XXX comment me.
138 139 140
 *
 * ----
 * NOTE: in the good old days 'opno' used to be both (or either, or
141
 * neither) the pg_operator oid, and/or the pg_proc oid depending
142 143 144 145 146 147
 * on the postgres module in question (parser->pg_operator,
 * executor->pg_proc, planner->both), the mood of the programmer,
 * and the phase of the moon (rumors that it was also depending on the day
 * of the week are probably false). To make things even more postgres-like
 * (i.e. a mess) some comments were referring to 'opno' using the name
 * 'opid'. Anyway, now we have two separate fields, and of course that
148
 * immediately removes all bugs from the code...		[ sp :-) ].
149 150
 * ----------------
 */
151 152
typedef struct Oper
{
153 154 155 156 157
	NodeTag		type;
	Oid			opno;
	Oid			opid;
	Oid			opresulttype;
	int			opsize;
158
	FunctionCachePtr op_fcache;
159
} Oper;
160 161 162 163


/* ----------------
 * Const
164 165 166 167 168 169 170 171 172 173 174 175
 *		consttype - PG_TYPE OID of the constant's value
 *		constlen - length in bytes of the constant's value
 *		constvalue - the constant's value
 *		constisnull - whether the constant is null
 *				(if true, the other fields are undefined)
 *		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 pointer to the information.
 *		constisset - whether the const represents a set.  The const
 *				value corresponding will be the query that defines
 *				the set.
176 177
 * ----------------
 */
178 179
typedef struct Const
{
180 181 182 183 184 185 186 187
	NodeTag		type;
	Oid			consttype;
	Size		constlen;
	Datum		constvalue;
	bool		constisnull;
	bool		constbyval;
	bool		constisset;
	bool		constiscast;
188
} Const;
189 190 191

/* ----------------
 * Param
192 193
 *		paramkind - specifies the kind of parameter. The possible values
 *		for this field are specified in "params.h", and they are:
194
 *
195 196 197
 *		PARAM_NAMED: The parameter has a name, i.e. something
 *				like `$.salary' or `$.foobar'.
 *				In this case field `paramname' must be a valid Name.
198
 *
199 200 201
 *		PARAM_NUM:	 The parameter has only a numeric identifier,
 *				i.e. something like `$1', `$2' etc.
 *				The number is contained in the `paramid' field.
202
 *
203 204 205 206
 *		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.
207
 *
208 209
 *		PARAM_OLD:	 Same as PARAM_NEW, but in this case we refer to
 *				the "OLD" tuple.
210
 *
211 212 213 214
 *		paramid - numeric identifier for literal-constant parameters ("$1")
 *		paramname - attribute name for tuple-substitution parameters ("$.foo")
 *		paramtype - PG_TYPE OID of the parameter's value
 *		param_tlist - allows for projection in a param node.
215 216
 * ----------------
 */
217 218
typedef struct Param
{
219 220 221 222 223 224
	NodeTag		type;
	int			paramkind;
	AttrNumber	paramid;
	char	   *paramname;
	Oid			paramtype;
	List	   *param_tlist;
225
} Param;
226 227 228 229


/* ----------------
 * Func
230 231 232 233 234 235 236 237 238 239 240
 *		funcid			- PG_FUNCTION OID of the function
 *		functype		- PG_TYPE OID of the function's return value
 *		funcisindex		- the function can be evaluated by scanning an index
 *						  (set during query optimization)
 *		funcsize		- size of return result (cached by executor)
 *		func_fcache		- runtime state while running this function.  Where
 *						  we are in the execution of the function if it
 *						  returns more than one value, etc.
 *						  See utils/fcache.h
 *		func_tlist		- projection of functions returning tuples
 *		func_planlist	- result of planning this func, if it's a PQ func
241 242
 * ----------------
 */
243 244
typedef struct Func
{
245 246 247 248 249
	NodeTag		type;
	Oid			funcid;
	Oid			functype;
	bool		funcisindex;
	int			funcsize;
250
	FunctionCachePtr func_fcache;
251 252
	List	   *func_tlist;
	List	   *func_planlist;
253
} Func;
254 255 256

/* ----------------
 * Aggreg
257 258 259
 *		aggname			- name of the aggregate
 *		basetype		- base type Oid of the aggregate
 *		aggtype			- type Oid of final result of the aggregate
260 261
 *		target			- attribute or expression we are aggregating on
 *		aggno			- index to ecxt_values
262 263
 * ----------------
 */
264 265
typedef struct Aggreg
{
266 267
	NodeTag		type;
	char	   *aggname;
268 269 270 271 272
	Oid			basetype;
	Oid			aggtype;
	Node	   *target;	
	int			aggno;
	bool		usenulls;
B
Bruce Momjian 已提交
273
} Aggreg;
274

275 276 277 278 279 280 281 282 283 284 285
/* ----------------
 * SubLink
 *		subLinkType		- EXISTS, ALL, ANY, EXPR
 *		useor			- TRUE for <>
 *		lefthand		- list of Var/Const nodes on the left
 *		oper			- list of Oper nodes
 *		subselect		- subselect as Query* or parsetree
 * ----------------
 */
typedef enum SubLinkType
{
286
	EXISTS_SUBLINK, ALL_SUBLINK, ANY_SUBLINK, EXPR_SUBLINK
287 288 289 290 291 292 293 294 295 296 297 298 299
} SubLinkType;


typedef struct SubLink
{
	NodeTag		type;
	SubLinkType	subLinkType;
	bool		useor;
	List		*lefthand;
	List		*oper;
	Node		*subselect;
} SubLink;

300 301
/* ----------------
 * Array
302 303 304 305 306 307 308
 *		arrayelemtype	- base type of the array's elements (homogenous!)
 *		arrayelemlength - length of that type
 *		arrayelembyval	- can you pass this element by value?
 *		arrayndim		- number of dimensions of the array
 *		arraylow		- base for array indexing
 *		arrayhigh		- limit for array indexing
 *		arraylen		-
309 310
 * ----------------
 *
311 312 313
 *	memo from mao:	the array support we inherited from 3.1 is just
 *	wrong.	when time exists, we should redesign this stuff to get
 *	around a bunch of unfortunate implementation decisions made there.
314
 */
315 316
typedef struct Array
{
317 318 319 320 321 322 323 324
	NodeTag		type;
	Oid			arrayelemtype;
	int			arrayelemlength;
	bool		arrayelembyval;
	int			arrayndim;
	IntArray	arraylow;
	IntArray	arrayhigh;
	int			arraylen;
B
Bruce Momjian 已提交
325
} Array;
326 327

/* ----------------
328 329 330 331 332 333 334 335 336
 *	ArrayRef:
 *		refelemtype		- type of the element referenced here
 *		refelemlength	- length of that type
 *		refelembyval	- can you pass this element type by value?
 *		refupperindexpr - expressions that evaluate to upper array index
 *		reflowerexpr- the expressions that evaluate to a lower array index
 *		refexpr			- the expression that evaluates to an array
 *		refassignexpr- the expression that evaluates to the new value
 *	to be assigned to the array in case of replace.
337 338
 * ----------------
 */
339 340
typedef struct ArrayRef
{
341 342 343 344 345 346 347 348 349
	NodeTag		type;
	int			refattrlength;
	int			refelemlength;
	Oid			refelemtype;
	bool		refelembyval;
	List	   *refupperindexpr;
	List	   *reflowerindexpr;
	Node	   *refexpr;
	Node	   *refassgnexpr;
B
Bruce Momjian 已提交
350
} ArrayRef;
351

352
#endif							/* PRIMNODES_H */