clauses.c 16.9 KB
Newer Older
1 2 3
/*-------------------------------------------------------------------------
 *
 * clauses.c--
4
 *	  routines to manipulate qualification clauses
5 6 7 8 9
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
10
 *	  $Header: /cvsroot/pgsql/src/backend/optimizer/util/clauses.c,v 1.16 1998/02/26 04:33:11 momjian Exp $
11 12
 *
 * HISTORY
13 14
 *	  AUTHOR			DATE			MAJOR EVENT
 *	  Andrew Yu			Nov 3, 1994		clause.c and clauses.c combined
15 16 17 18 19 20
 *
 *-------------------------------------------------------------------------
 */

#include "postgres.h"

M
Marc G. Fournier 已提交
21
#include <catalog/pg_operator.h>
22 23 24
#include "nodes/primnodes.h"
#include "nodes/relation.h"
#include "nodes/parsenodes.h"
V
Vadim B. Mikheev 已提交
25
#include "nodes/plannodes.h"
26 27 28 29 30 31 32 33 34 35 36 37
#include "nodes/makefuncs.h"
#include "nodes/nodeFuncs.h"

#include "catalog/pg_aggregate.h"

#include "utils/syscache.h"
#include "utils/lsyscache.h"

#include "optimizer/clauses.h"
#include "optimizer/internal.h"
#include "optimizer/var.h"

38
static bool agg_clause(Node *clause);
39

40

41
Expr *
42
make_clause(int type, Node *oper, List *args)
43
{
44 45 46
	if (type == AND_EXPR || type == OR_EXPR || type == NOT_EXPR ||
		type == OP_EXPR || type == FUNC_EXPR)
	{
47
		Expr	   *expr = makeNode(Expr);
48 49 50 51 52 53 54 55 56 57 58 59 60

		/*
		 * assume type checking already done and we don't need the type of
		 * the expr any more.
		 */
		expr->typeOid = InvalidOid;
		expr->opType = type;
		expr->oper = oper;		/* ignored for AND, OR, NOT */
		expr->args = args;
		return expr;
	}
	else
	{
61
		elog(ERROR, "make_clause: unsupported type %d", type);
62 63 64
		/* will this ever happen? translated from lispy C code - ay 10/94 */
		return ((Expr *) args);
	}
65 66 67 68
}


/*****************************************************************************
69
 *		OPERATOR clause functions
70 71 72
 *****************************************************************************/


73
/*
74
 * is_opclause--
75
 *
76
 * Returns t iff the clause is an operator clause:
77
 *				(op expr expr) or (op expr).
78 79
 *
 * [historical note: is_clause has the exact functionality and is used
80 81
 *		throughout the code. They're renamed to is_opclause for clarity.
 *												- ay 10/94.]
82 83
 */
bool
84
is_opclause(Node *clause)
85
{
86
	return
87 88
	(clause != NULL &&
	 nodeTag(clause) == T_Expr && ((Expr *) clause)->opType == OP_EXPR);
89 90
}

91
/*
92
 * make_opclause--
93 94 95
 *	  Creates a clause given its operator left operand and right
 *	  operand (if it is non-null).
 *
96
 */
97
Expr *
98
make_opclause(Oper *op, Var *leftop, Var *rightop)
99
{
100
	Expr	   *expr = makeNode(Expr);
101

102 103 104 105 106
	expr->typeOid = InvalidOid; /* assume type checking done */
	expr->opType = OP_EXPR;
	expr->oper = (Node *) op;
	expr->args = makeList(leftop, rightop, -1);
	return expr;
107 108
}

109
/*
110
 * get_leftop--
111
 *
112
 * Returns the left operand of a clause of the form (op expr expr)
113 114
 *		or (op expr)
 * NB: it is assumed (for now) that all expr must be Var nodes
115
 */
116
Var *
117
get_leftop(Expr *clause)
118
{
119 120 121 122
	if (clause->args != NULL)
		return (lfirst(clause->args));
	else
		return NULL;
123 124
}

125
/*
126
 * get_rightop
127
 *
128
 * Returns the right operand in a clause of the form (op expr expr).
129
 *
130
 */
131
Var *
132
get_rightop(Expr *clause)
133
{
134 135 136 137
	if (clause->args != NULL && lnext(clause->args) != NULL)
		return (lfirst(lnext(clause->args)));
	else
		return NULL;
138 139 140
}

/*****************************************************************************
141
 *		AGG clause functions
142 143
 *****************************************************************************/

144
static bool
145
agg_clause(Node *clause)
146
{
147 148
	return
	(clause != NULL && nodeTag(clause) == T_Aggreg);
149 150 151
}

/*****************************************************************************
152
 *		FUNC clause functions
153 154
 *****************************************************************************/

155
/*
156
 * is_funcclause--
157
 *
158
 * Returns t iff the clause is a function clause: (func { expr }).
159
 *
160 161
 */
bool
162
is_funcclause(Node *clause)
163
{
164
	return
165 166
	(clause != NULL &&
	 nodeTag(clause) == T_Expr && ((Expr *) clause)->opType == FUNC_EXPR);
167 168
}

169
/*
170
 * make_funcclause--
171
 *
172 173
 * Creates a function clause given the FUNC node and the functional
 * arguments.
174
 *
175
 */
176
Expr *
177
make_funcclause(Func *func, List *funcargs)
178
{
179
	Expr	   *expr = makeNode(Expr);
180

181 182 183 184 185
	expr->typeOid = InvalidOid; /* assume type checking done */
	expr->opType = FUNC_EXPR;
	expr->oper = (Node *) func;
	expr->args = funcargs;
	return expr;
186 187 188
}

/*****************************************************************************
189
 *		OR clause functions
190 191
 *****************************************************************************/

192
/*
193
 * or_clause--
194
 *
195
 * Returns t iff the clause is an 'or' clause: (OR { expr }).
196
 *
197 198
 */
bool
199
or_clause(Node *clause)
200
{
201
	return
202 203
	(clause != NULL &&
	 nodeTag(clause) == T_Expr && ((Expr *) clause)->opType == OR_EXPR);
204 205
}

206
/*
207
 * make_orclause--
208
 *
209
 * Creates an 'or' clause given a list of its subclauses.
210
 *
211
 */
212
Expr *
213
make_orclause(List *orclauses)
214
{
215
	Expr	   *expr = makeNode(Expr);
216

217 218 219 220 221
	expr->typeOid = InvalidOid; /* assume type checking done */
	expr->opType = OR_EXPR;
	expr->oper = NULL;
	expr->args = orclauses;
	return expr;
222 223 224
}

/*****************************************************************************
225
 *		NOT clause functions
226 227
 *****************************************************************************/

228
/*
229
 * not_clause--
230
 *
231
 * Returns t iff this is a 'not' clause: (NOT expr).
232
 *
233 234
 */
bool
235
not_clause(Node *clause)
236
{
237
	return
238
	(clause != NULL &&
239
	 nodeTag(clause) == T_Expr && ((Expr *) clause)->opType == NOT_EXPR);
240 241
}

242
/*
243
 * make_notclause--
244
 *
245
 * Create a 'not' clause given the expression to be negated.
246
 *
247
 */
248
Expr *
249
make_notclause(Expr *notclause)
250
{
251
	Expr	   *expr = makeNode(Expr);
252

253 254 255 256 257
	expr->typeOid = InvalidOid; /* assume type checking done */
	expr->opType = NOT_EXPR;
	expr->oper = NULL;
	expr->args = lcons(notclause, NIL);
	return expr;
258 259
}

260
/*
261
 * get_notclausearg--
262
 *
263
 * Retrieve the clause within a 'not' clause
264
 *
265
 */
266
Expr *
267
get_notclausearg(Expr *notclause)
268
{
269
	return (lfirst(notclause->args));
270 271 272
}

/*****************************************************************************
273
 *		AND clause functions
274 275 276
 *****************************************************************************/


277
/*
278
 * and_clause--
279
 *
280
 * Returns t iff its argument is an 'and' clause: (AND { expr }).
281
 *
282 283
 */
bool
284
and_clause(Node *clause)
285
{
286
	return
287
	(clause != NULL &&
288
	 nodeTag(clause) == T_Expr && ((Expr *) clause)->opType == AND_EXPR);
289
}
290 291

/*
292
 * make_andclause--
293
 *
294
 * Create an 'and' clause given its arguments in a list.
295
 *
296
 */
297
Expr *
298
make_andclause(List *andclauses)
299
{
300
	Expr	   *expr = makeNode(Expr);
301

302 303 304 305 306
	expr->typeOid = InvalidOid; /* assume type checking done */
	expr->opType = AND_EXPR;
	expr->oper = NULL;
	expr->args = andclauses;
	return expr;
307 308 309
}

/*****************************************************************************
310 311 312
 *																			 *
 *																			 *
 *																			 *
313 314 315
 *****************************************************************************/


316
/*
317
 * pull-constant-clauses--
318 319 320
 *	  Scans through a list of qualifications and find those that
 *	  contain no variables.
 *
321 322
 * Returns a list of the constant clauses in constantQual and the remaining
 * quals as the return value.
323
 *
324
 */
325
List *
326
pull_constant_clauses(List *quals, List **constantQual)
327
{
328 329 330
	List	   *q;
	List	   *constqual = NIL;
	List	   *restqual = NIL;
331 332 333 334 335 336 337 338 339 340 341

	foreach(q, quals)
	{
		if (!contain_var_clause(lfirst(q)))
		{
			constqual = lcons(lfirst(q), constqual);
		}
		else
		{
			restqual = lcons(lfirst(q), restqual);
		}
342
	}
343 344 345
	freeList(quals);
	*constantQual = constqual;
	return restqual;
346 347
}

348
/*
349
 * clause-relids-vars--
350 351 352 353 354
 *	  Retrieves relids and vars appearing within a clause.
 *	  Returns ((relid1 relid2 ... relidn) (var1 var2 ... varm)) where
 *	  vars appear in the clause  this is done by recursively searching
 *	  through the left and right operands of a clause.
 *
355
 * Returns the list of relids and vars.
356
 *
357
 * XXX take the nreverse's out later
358
 *
359 360
 */
void
361
clause_relids_vars(Node *clause, List **relids, List **vars)
362
{
363 364 365 366
	List	   *clvars = pull_var_clause(clause);
	List	   *var_list = NIL;
	List	   *varno_list = NIL;
	List	   *i = NIL;
367

368
	foreach(i, clvars)
M
Marc G. Fournier 已提交
369
	{
370 371
		Var		   *var = (Var *) lfirst(i);
		List	   *vi;
372 373 374 375 376 377 378

		if (!intMember(var->varno, varno_list))
		{
			varno_list = lappendi(varno_list, var->varno);
		}
		foreach(vi, var_list)
		{
379
			Var		   *in_list = (Var *) lfirst(vi);
380 381

			Assert(var->varlevelsup == 0);
382
			if (in_list->varno == var->varno &&
V
Vadim B. Mikheev 已提交
383
				in_list->varattno == var->varattno)
384 385 386 387
				break;
		}
		if (vi == NIL)
			var_list = lappend(var_list, var);
M
Marc G. Fournier 已提交
388
	}
389

390 391 392
	*relids = varno_list;
	*vars = var_list;
	return;
393 394
}

395
/*
396
 * NumRelids--
397 398
 *		(formerly clause-relids)
 *
399 400 401
 * Returns the number of different relations referenced in 'clause'.
 */
int
402
NumRelids(Node *clause)
403
{
404 405 406
	List	   *vars = pull_var_clause(clause);
	List	   *i = NIL;
	List	   *var_list = NIL;
407

408 409
	foreach(i, vars)
	{
410
		Var		   *var = (Var *) lfirst(i);
411

412 413 414 415
		if (!intMember(var->varno, var_list))
		{
			var_list = lconsi(var->varno, var_list);
		}
416 417
	}

418
	return (length(var_list));
419 420
}

421
/*
422 423 424 425
 * contains-not--
 *
 * Returns t iff the clause is a 'not' clause or if any of the
 * subclauses within an 'or' clause contain 'not's.
426
 *
427 428
 */
bool
429
contains_not(Node *clause)
430
{
431 432
	if (single_node(clause))
		return (false);
433

434
	if (not_clause(clause))
435
		return (true);
436

437
	if (or_clause(clause) || and_clause(clause))
438
	{
439
		List	   *a;
440 441 442 443 444 445

		foreach(a, ((Expr *) clause)->args)
		{
			if (contains_not(lfirst(a)))
				return (true);
		}
446
	}
447 448

	return (false);
449 450
}

451
/*
452
 * join-clause-p--
453
 *
454
 * Returns t iff 'clause' is a valid join clause.
455
 *
456 457
 */
bool
458
join_clause_p(Node *clause)
459
{
460 461
	Node	   *leftop,
			   *rightop;
462

463 464
	if (!is_opclause(clause))
		return false;
465

466 467
	leftop = (Node *) get_leftop((Expr *) clause);
	rightop = (Node *) get_rightop((Expr *) clause);
468

469 470 471 472
	/*
	 * One side of the clause (i.e. left or right operands) must either be
	 * a var node ...
	 */
473
	if (IsA(leftop, Var) ||IsA(rightop, Var))
474
		return true;
475

476 477 478 479 480
	/*
	 * ... or a func node.
	 */
	if (is_funcclause(leftop) || is_funcclause(rightop))
		return (true);
481

482
	return (false);
483 484
}

485
/*
486
 * qual-clause-p--
487
 *
488
 * Returns t iff 'clause' is a valid qualification clause.
489
 *
490 491
 */
bool
492
qual_clause_p(Node *clause)
493
{
494 495
	if (!is_opclause(clause))
		return false;
496

V
Vadim B. Mikheev 已提交
497
	/* How about Param-s ?	- vadim 02/03/98 */
498 499
	if (IsA(get_leftop((Expr *) clause), Var) &&
		IsA(get_rightop((Expr *) clause), Const))
500
	{
501
		return (true);
502
	}
503 504
	else if (IsA(get_rightop((Expr *) clause), Var) &&
			 IsA(get_leftop((Expr *) clause), Const))
505
	{
506
		return (true);
507
	}
508
	return (false);
509 510
}

511
/*
512
 * fix-opid--
513 514
 *	  Calculate the opfid from the opno...
 *
515
 * Returns nothing.
516
 *
517 518
 */
void
519
fix_opid(Node *clause)
520
{
521 522 523 524
	if (clause == NULL || single_node(clause))
	{
		;
	}
525
	else if (or_clause(clause) || and_clause(clause))
526 527 528 529 530 531 532 533 534
	{
		fix_opids(((Expr *) clause)->args);
	}
	else if (is_funcclause(clause))
	{
		fix_opids(((Expr *) clause)->args);
	}
	else if (IsA(clause, ArrayRef))
	{
535
		ArrayRef   *aref = (ArrayRef *) clause;
536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555

		fix_opids(aref->refupperindexpr);
		fix_opids(aref->reflowerindexpr);
		fix_opid(aref->refexpr);
		fix_opid(aref->refassgnexpr);
	}
	else if (not_clause(clause))
	{
		fix_opid((Node *) get_notclausearg((Expr *) clause));
	}
	else if (is_opclause(clause))
	{
		replace_opid((Oper *) ((Expr *) clause)->oper);
		fix_opid((Node *) get_leftop((Expr *) clause));
		fix_opid((Node *) get_rightop((Expr *) clause));
	}
	else if (agg_clause(clause))
	{
		fix_opid(((Aggreg *) clause)->target);
	}
556 557
	else if (is_subplan(clause) &&
			 ((SubPlan *) ((Expr *) clause)->oper)->sublink->subLinkType != EXISTS_SUBLINK)
V
Vadim B. Mikheev 已提交
558
	{
559 560 561
		List	   *lst;

		foreach(lst, ((SubPlan *) ((Expr *) clause)->oper)->sublink->oper)
V
Vadim B. Mikheev 已提交
562
		{
563 564
			replace_opid((Oper *) ((Expr *) lfirst(lst))->oper);
			fix_opid((Node *) get_leftop((Expr *) lfirst(lst)));
V
Vadim B. Mikheev 已提交
565 566
		}
	}
567 568 569

}

570
/*
571
 * fix-opids--
572 573
 *	  Calculate the opfid from the opno for all the clauses...
 *
574
 * Returns its argument.
575
 *
576
 */
577
List *
578
fix_opids(List *clauses)
579
{
580
	List	   *clause;
581

582 583
	foreach(clause, clauses)
		fix_opid(lfirst(clause));
584

585
	return (clauses);
586 587
}

588
/*
589
 * get_relattval--
590 591 592 593 594 595
 *		For a non-join clause, returns a list consisting of the
 *				relid,
 *				attno,
 *				value of the CONST node (if any), and a
 *				flag indicating whether the value appears on the left or right
 *						of the operator and whether the value varied.
596 597
 *
 * OLD OBSOLETE COMMENT FOLLOWS:
598 599 600 601
 *		If 'clause' is not of the format (op var node) or (op node var),
 *		or if the var refers to a nested attribute, then -1's are returned for
 *		everything but the value  a blank string "" (pointer to \0) is
 *		returned for the value if it is unknown or null.
602 603 604 605 606 607 608 609
 * END OF OLD OBSOLETE COMMENT.
 * NEW COMMENT:
 * when defining rules one of the attibutes of the operator can
 * be a Param node (which is supposed to be treated as a constant).
 * However as there is no value specified for a parameter until run time
 * this routine used to return "" as value, which made 'compute_selec'
 * to bomb (because it was expecting a lisp integer and got back a lisp
 * string). Now the code returns a plain old good "lispInteger(0)".
610
 *
611 612
 */
void
613
get_relattval(Node *clause,
614
			  int *relid,
B
Bruce Momjian 已提交
615
			  AttrNumber *attno,
616
			  Datum *constval,
617
			  int *flag)
618
{
619 620
	Var		   *left = get_leftop((Expr *) clause);
	Var		   *right = get_rightop((Expr *) clause);
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644

	if (is_opclause(clause) && IsA(left, Var) &&
		IsA(right, Const))
	{

		if (right != NULL)
		{

			*relid = left->varno;
			*attno = left->varattno;
			*constval = ((Const *) right)->constvalue;
			*flag = (_SELEC_CONSTANT_RIGHT_ | _SELEC_IS_CONSTANT_);

		}
		else
		{

			*relid = left->varno;
			*attno = left->varattno;
			*constval = 0;
			*flag = (_SELEC_CONSTANT_RIGHT_ | _SELEC_NOT_CONSTANT_);

		}
	}
645
	else if (is_opclause(clause) && IsA(left, Var) &&IsA(right, Param))
646 647 648 649 650 651 652 653 654 655
	{
		*relid = left->varno;
		*attno = left->varattno;
		*constval = 0;
		*flag = (_SELEC_NOT_CONSTANT_);
	}
	else if (is_opclause(clause) &&
			 is_funcclause((Node *) left) &&
			 IsA(right, Const))
	{
656 657
		List	   *vars = pull_var_clause((Node *) left);

658
		*relid = ((Var *) lfirst(vars))->varno;
659 660 661 662 663 664 665 666
		*attno = InvalidAttrNumber;
		*constval = ((Const *) right)->constvalue;
		*flag = (_SELEC_CONSTANT_RIGHT_ | _SELEC_IS_CONSTANT_);
	}
	else if (is_opclause(clause) &&
			 is_funcclause((Node *) right) &&
			 IsA(left, Const))
	{
667 668
		List	   *vars = pull_var_clause((Node *) right);

669
		*relid = ((Var *) lfirst(vars))->varno;
670 671 672
		*attno = InvalidAttrNumber;
		*constval = ((Const *) left)->constvalue;
		*flag = (_SELEC_IS_CONSTANT_);
673

674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
	}
	else if (is_opclause(clause) && IsA(right, Var) &&
			 IsA(left, Const))
	{
		if (left != NULL)
		{

			*relid = right->varno;
			*attno = right->varattno;
			*constval = ((Const *) left)->constvalue;
			*flag = (_SELEC_IS_CONSTANT_);
		}
		else
		{

			*relid = right->varno;
			*attno = right->varattno;
			*constval = 0;
			*flag = (_SELEC_NOT_CONSTANT_);
		}
	}
695
	else if (is_opclause(clause) && IsA(right, Var) &&IsA(left, Param))
696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
	{
		*relid = right->varno;
		*attno = right->varattno;
		*constval = 0;
		*flag = (_SELEC_NOT_CONSTANT_);
	}
	else
	{

		/*
		 * One or more of the operands are expressions (e.g., oper
		 * clauses)
		 */
		*relid = _SELEC_VALUE_UNKNOWN_;
		*attno = _SELEC_VALUE_UNKNOWN_;
		*constval = 0;
		*flag = (_SELEC_NOT_CONSTANT_);
	}
714 715
}

716
/*
717
 * get_relsatts--
718 719 720 721 722
 *
 * Returns a list
 *				( relid1 attno1 relid2 attno2 )
 *		for a joinclause.
 *
723 724
 * If the clause is not of the form (op var var) or if any of the vars
 * refer to nested attributes, then -1's are returned.
725
 *
726 727
 */
void
728
get_rels_atts(Node *clause,
729
			  int *relid1,
B
Bruce Momjian 已提交
730
			  AttrNumber *attno1,
731
			  int *relid2,
B
Bruce Momjian 已提交
732
			  AttrNumber *attno2)
733
{
734 735 736 737
	Var		   *left = get_leftop((Expr *) clause);
	Var		   *right = get_rightop((Expr *) clause);
	bool		var_left = (IsA(left, Var));
	bool		var_right = (IsA(right, Var));
738
	bool		varexpr_left = (bool) ((IsA(left, Func) ||IsA(left, Oper)) &&
739
									   contain_var_clause((Node *) left));
740
	bool		varexpr_right = (bool) ((IsA(right, Func) ||IsA(right, Oper)) &&
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
									 contain_var_clause((Node *) right));

	if (is_opclause(clause))
	{
		if (var_left && var_right)
		{

			*relid1 = left->varno;
			*attno1 = left->varoattno;
			*relid2 = right->varno;
			*attno2 = right->varoattno;
			return;
		}
		else if (var_left && varexpr_right)
		{

			*relid1 = left->varno;
			*attno1 = left->varoattno;
			*relid2 = _SELEC_VALUE_UNKNOWN_;
			*attno2 = _SELEC_VALUE_UNKNOWN_;
			return;
		}
		else if (varexpr_left && var_right)
		{

			*relid1 = _SELEC_VALUE_UNKNOWN_;
			*attno1 = _SELEC_VALUE_UNKNOWN_;
			*relid2 = right->varno;
			*attno2 = right->varoattno;
			return;
		}
772 773
	}

774 775 776 777 778
	*relid1 = _SELEC_VALUE_UNKNOWN_;
	*attno1 = _SELEC_VALUE_UNKNOWN_;
	*relid2 = _SELEC_VALUE_UNKNOWN_;
	*attno2 = _SELEC_VALUE_UNKNOWN_;
	return;
779 780 781
}

void
782
CommuteClause(Node *clause)
783
{
784 785
	Node	   *temp;
	Oper	   *commu;
786
	OperatorTupleForm commuTup;
787
	HeapTuple	heapTup;
788

789 790
	if (!is_opclause(clause))
		return;
791

792 793
	heapTup = (HeapTuple)
		get_operator_tuple(get_commutator(((Oper *) ((Expr *) clause)->oper)->opno));
794

795 796
	if (heapTup == (HeapTuple) NULL)
		return;
797

798
	commuTup = (OperatorTupleForm) GETSTRUCT(heapTup);
799

800 801 802 803 804
	commu = makeOper(heapTup->t_oid,
					 InvalidOid,
					 commuTup->oprresult,
					 ((Oper *) ((Expr *) clause)->oper)->opsize,
					 NULL);
805

806 807 808 809 810 811 812 813
	/*
	 * reform the clause -> (operator func/var constant)
	 */
	((Expr *) clause)->oper = (Node *) commu;
	temp = lfirst(((Expr *) clause)->args);
	lfirst(((Expr *) clause)->args) = lsecond(((Expr *) clause)->args);
	lsecond(((Expr *) clause)->args) = temp;
}