plancat.c 27.0 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * plancat.c
4
 *	   routines for accessing the system catalogs
5 6
 *
 *
7
 * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
B
Add:  
Bruce Momjian 已提交
8
 * Portions Copyright (c) 1994, Regents of the University of California
9 10 11
 *
 *
 * IDENTIFICATION
12
 *	  src/backend/optimizer/util/plancat.c
13 14 15
 *
 *-------------------------------------------------------------------------
 */
16
#include "postgres.h"
17

18 19
#include <math.h>

B
Bruce Momjian 已提交
20 21
#include "access/genam.h"
#include "access/heapam.h"
22
#include "access/sysattr.h"
23
#include "access/transam.h"
24 25
#include "catalog/catalog.h"
#include "miscadmin.h"
26
#include "nodes/makefuncs.h"
27
#include "nodes/nodeFuncs.h"
28
#include "optimizer/clauses.h"
29
#include "optimizer/cost.h"
30
#include "optimizer/plancat.h"
31
#include "optimizer/predtest.h"
32
#include "optimizer/prep.h"
33
#include "parser/parse_relation.h"
34
#include "parser/parsetree.h"
35
#include "rewrite/rewriteManip.h"
36
#include "storage/bufmgr.h"
37
#include "utils/lsyscache.h"
38
#include "utils/rel.h"
39
#include "utils/snapmgr.h"
40 41


42
/* GUC parameter */
43
int			constraint_exclusion = CONSTRAINT_EXCLUSION_PARTITION;
44

45 46 47
/* Hook for plugins to get control in get_relation_info() */
get_relation_info_hook_type get_relation_info_hook = NULL;

48

49
static int32 get_rel_data_width(Relation rel, int32 *attr_widths);
50 51
static List *get_relation_constraints(PlannerInfo *root,
						 Oid relationObjectId, RelOptInfo *rel,
52
						 bool include_notnull);
53 54


55
/*
56
 * get_relation_info -
57
 *	  Retrieves catalog information for a given relation.
58 59 60 61
 *
 * Given the Oid of the relation, return the following info into fields
 * of the RelOptInfo struct:
 *
62 63
 *	min_attr	lowest valid AttrNumber
 *	max_attr	highest valid AttrNumber
64 65 66
 *	indexlist	list of IndexOptInfos for relation's indexes
 *	pages		number of pages
 *	tuples		number of tuples
67 68 69 70
 *
 * Also, initialize the attr_needed[] and attr_widths[] arrays.  In most
 * cases these are left as zeroes, but sometimes we need to compute attr
 * widths here, and we may as well cache the results for costsize.c.
71 72 73 74 75
 *
 * If inhparent is true, all we need to do is set up the attr arrays:
 * the RelOptInfo actually represents the appendrel formed by an inheritance
 * tree, and so the parent rel's physical size and index information isn't
 * important for it.
76 77
 */
void
78 79
get_relation_info(PlannerInfo *root, Oid relationObjectId, bool inhparent,
				  RelOptInfo *rel)
80
{
81
	Index		varno = rel->relid;
82
	Relation	relation;
83 84
	bool		hasindex;
	List	   *indexinfos = NIL;
85

86
	/*
B
Bruce Momjian 已提交
87 88 89
	 * We need not lock the relation since it was already locked, either by
	 * the rewriter or when expand_inherited_rtentry() added it to the query's
	 * rangetable.
90
	 */
91
	relation = heap_open(relationObjectId, NoLock);
92

93 94
	rel->min_attr = FirstLowInvalidHeapAttributeNumber + 1;
	rel->max_attr = RelationGetNumberOfAttributes(relation);
95
	rel->reltablespace = RelationGetForm(relation)->reltablespace;
96

97 98 99 100 101 102 103
	Assert(rel->max_attr >= rel->min_attr);
	rel->attr_needed = (Relids *)
		palloc0((rel->max_attr - rel->min_attr + 1) * sizeof(Relids));
	rel->attr_widths = (int32 *)
		palloc0((rel->max_attr - rel->min_attr + 1) * sizeof(int32));

	/*
104
	 * Estimate relation size --- unless it's an inheritance parent, in which
B
Bruce Momjian 已提交
105 106
	 * case the size will be computed later in set_append_rel_pathlist, and we
	 * must leave it zero for now to avoid bollixing the total_table_pages
107
	 * calculation.
108
	 */
109 110 111
	if (!inhparent)
		estimate_rel_size(relation, rel->attr_widths - rel->min_attr,
						  &rel->pages, &rel->tuples);
112

113
	/*
B
Bruce Momjian 已提交
114
	 * Make list of indexes.  Ignore indexes on system catalogs if told to.
115
	 * Don't bother with indexes for an inheritance parent, either.
116
	 */
117 118
	if (inhparent ||
		(IgnoreSystemIndexes && IsSystemClass(relation->rd_rel)))
119 120 121
		hasindex = false;
	else
		hasindex = relation->rd_rel->relhasindex;
122

123
	if (hasindex)
124
	{
125 126
		List	   *indexoidlist;
		ListCell   *l;
127
		LOCKMODE	lmode;
128

129
		indexoidlist = RelationGetIndexList(relation);
130

131 132 133 134 135 136 137 138 139 140 141 142 143
		/*
		 * For each index, we get the same type of lock that the executor will
		 * need, and do not release it.  This saves a couple of trips to the
		 * shared lock manager while not creating any real loss of
		 * concurrency, because no schema changes could be happening on the
		 * index while we hold lock on the parent rel, and neither lock type
		 * blocks any other kind of index operation.
		 */
		if (rel->relid == root->parse->resultRelation)
			lmode = RowExclusiveLock;
		else
			lmode = AccessShareLock;

144
		foreach(l, indexoidlist)
145
		{
146
			Oid			indexoid = lfirst_oid(l);
147 148 149
			Relation	indexRelation;
			Form_pg_index index;
			IndexOptInfo *info;
150
			int			ncolumns;
151 152
			int			i;

153 154 155
			/*
			 * Extract info from the relation descriptor for the index.
			 */
156
			indexRelation = index_open(indexoid, lmode);
157
			index = indexRelation->rd_index;
158

159 160
			/*
			 * Ignore invalid indexes, since they can't safely be used for
B
Bruce Momjian 已提交
161 162 163
			 * queries.  Note that this is OK because the data structure we
			 * are constructing is only used by the planner --- the executor
			 * still needs to insert into "invalid" indexes!
164 165 166 167 168 169 170
			 */
			if (!index->indisvalid)
			{
				index_close(indexRelation, NoLock);
				continue;
			}

171
			/*
B
Bruce Momjian 已提交
172 173 174
			 * If the index is valid, but cannot yet be used, ignore it; but
			 * mark the plan we are generating as transient. See
			 * src/backend/access/heap/README.HOT for discussion.
175 176 177 178 179 180 181 182 183 184
			 */
			if (index->indcheckxmin &&
				!TransactionIdPrecedes(HeapTupleHeaderGetXmin(indexRelation->rd_indextuple->t_data),
									   TransactionXmin))
			{
				root->glob->transientPlan = true;
				index_close(indexRelation, NoLock);
				continue;
			}

185 186 187
			info = makeNode(IndexOptInfo);

			info->indexoid = index->indexrelid;
188 189
			info->reltablespace =
				RelationGetForm(indexRelation)->reltablespace;
190
			info->rel = rel;
191
			info->ncolumns = ncolumns = index->indnatts;
192

193
			/*
194
			 * Allocate per-column info arrays.  To save a few palloc cycles
B
Bruce Momjian 已提交
195
			 * we allocate all the Oid-type arrays in one request.	Note that
196 197
			 * the opfamily array needs an extra, terminating zero at the end.
			 * We pre-zero the ordering info in case the index is unordered.
198 199
			 */
			info->indexkeys = (int *) palloc(sizeof(int) * ncolumns);
200 201 202 203
			info->opfamily = (Oid *) palloc0(sizeof(Oid) * (4 * ncolumns + 1));
			info->opcintype = info->opfamily + (ncolumns + 1);
			info->fwdsortop = info->opcintype + ncolumns;
			info->revsortop = info->fwdsortop + ncolumns;
204
			info->nulls_first = (bool *) palloc0(sizeof(bool) * ncolumns);
205

206
			for (i = 0; i < ncolumns; i++)
207
			{
208
				info->indexkeys[i] = index->indkey.values[i];
209 210
				info->opfamily[i] = indexRelation->rd_opfamily[i];
				info->opcintype[i] = indexRelation->rd_opcintype[i];
211 212 213
			}

			info->relam = indexRelation->rd_rel->relam;
214 215
			info->amcostestimate = indexRelation->rd_am->amcostestimate;
			info->amoptionalkey = indexRelation->rd_am->amoptionalkey;
216
			info->amsearchnulls = indexRelation->rd_am->amsearchnulls;
217 218
			info->amhasgettuple = OidIsValid(indexRelation->rd_am->amgettuple);
			info->amhasgetbitmap = OidIsValid(indexRelation->rd_am->amgetbitmap);
219 220

			/*
B
Bruce Momjian 已提交
221
			 * Fetch the ordering operators associated with the index, if any.
222 223
			 * We expect that all ordering-capable indexes use btree's
			 * strategy numbers for the ordering operators.
224
			 */
225
			if (indexRelation->rd_am->amcanorder)
226
			{
227
				int			nstrat = indexRelation->rd_am->amstrategies;
228

229
				for (i = 0; i < ncolumns; i++)
230
				{
B
Bruce Momjian 已提交
231 232 233
					int16		opt = indexRelation->rd_indoption[i];
					int			fwdstrat;
					int			revstrat;
234 235 236

					if (opt & INDOPTION_DESC)
					{
237 238
						fwdstrat = BTGreaterStrategyNumber;
						revstrat = BTLessStrategyNumber;
239 240 241
					}
					else
					{
242 243
						fwdstrat = BTLessStrategyNumber;
						revstrat = BTGreaterStrategyNumber;
244
					}
B
Bruce Momjian 已提交
245

246
					/*
B
Bruce Momjian 已提交
247 248 249
					 * Index AM must have a fixed set of strategies for it to
					 * make sense to specify amcanorder, so we need not allow
					 * the case amstrategies == 0.
250 251 252 253 254 255 256 257 258 259 260 261
					 */
					if (fwdstrat > 0)
					{
						Assert(fwdstrat <= nstrat);
						info->fwdsortop[i] = indexRelation->rd_operator[i * nstrat + fwdstrat - 1];
					}
					if (revstrat > 0)
					{
						Assert(revstrat <= nstrat);
						info->revsortop[i] = indexRelation->rd_operator[i * nstrat + revstrat - 1];
					}
					info->nulls_first[i] = (opt & INDOPTION_NULLS_FIRST) != 0;
262 263
				}
			}
264

265 266 267
			/*
			 * Fetch the index expressions and predicate, if any.  We must
			 * modify the copies we obtain from the relcache to have the
B
Bruce Momjian 已提交
268 269
			 * correct varno for the parent relation, so that they match up
			 * correctly against qual clauses.
270 271 272 273 274 275 276
			 */
			info->indexprs = RelationGetIndexExpressions(indexRelation);
			info->indpred = RelationGetIndexPredicate(indexRelation);
			if (info->indexprs && varno != 1)
				ChangeVarNodes((Node *) info->indexprs, 1, varno, 0);
			if (info->indpred && varno != 1)
				ChangeVarNodes((Node *) info->indpred, 1, varno, 0);
B
Bruce Momjian 已提交
277
			info->predOK = false;		/* set later in indxpath.c */
278 279
			info->unique = index->indisunique;

280
			/*
B
Bruce Momjian 已提交
281 282 283 284 285
			 * Estimate the index size.  If it's not a partial index, we lock
			 * the number-of-tuples estimate to equal the parent table; if it
			 * is partial then we have to use the same methods as we would for
			 * a table, except we can be sure that the index is not larger
			 * than the table.
286 287 288 289 290 291 292 293 294 295 296 297 298 299
			 */
			if (info->indpred == NIL)
			{
				info->pages = RelationGetNumberOfBlocks(indexRelation);
				info->tuples = rel->tuples;
			}
			else
			{
				estimate_rel_size(indexRelation, NULL,
								  &info->pages, &info->tuples);
				if (info->tuples > rel->tuples)
					info->tuples = rel->tuples;
			}

300
			index_close(indexRelation, NoLock);
301 302 303 304

			indexinfos = lcons(info, indexinfos);
		}

305
		list_free(indexoidlist);
306
	}
307

308 309
	rel->indexlist = indexinfos;

310
	heap_close(relation, NoLock);
311 312 313 314 315 316 317 318

	/*
	 * Allow a plugin to editorialize on the info we obtained from the
	 * catalogs.  Actions might include altering the assumed relation size,
	 * removing an index, or adding a hypothetical index to the indexlist.
	 */
	if (get_relation_info_hook)
		(*get_relation_info_hook) (root, relationObjectId, inhparent, rel);
319 320
}

321 322 323 324 325 326 327
/*
 * estimate_rel_size - estimate # pages and # tuples in a table or index
 *
 * If attr_widths isn't NULL, it points to the zero-index entry of the
 * relation's attr_width[] cache; we fill this in if we have need to compute
 * the attribute widths for estimation purposes.
 */
328
void
329 330 331
estimate_rel_size(Relation rel, int32 *attr_widths,
				  BlockNumber *pages, double *tuples)
{
B
Bruce Momjian 已提交
332 333
	BlockNumber curpages;
	BlockNumber relpages;
334 335 336 337 338 339 340 341 342
	double		reltuples;
	double		density;

	switch (rel->rd_rel->relkind)
	{
		case RELKIND_RELATION:
		case RELKIND_INDEX:
		case RELKIND_TOASTVALUE:
			/* it has storage, ok to call the smgr */
343 344 345 346
			curpages = RelationGetNumberOfBlocks(rel);

			/*
			 * HACK: if the relation has never yet been vacuumed, use a
B
Bruce Momjian 已提交
347 348 349 350 351 352 353 354 355 356
			 * minimum estimate of 10 pages.  This emulates a desirable aspect
			 * of pre-8.0 behavior, which is that we wouldn't assume a newly
			 * created relation is really small, which saves us from making
			 * really bad plans during initial data loading.  (The plans are
			 * not wrong when they are made, but if they are cached and used
			 * again after the table has grown a lot, they are bad.) It would
			 * be better to force replanning if the table size has changed a
			 * lot since the plan was made ... but we don't currently have any
			 * infrastructure for redoing cached plans at all, so we have to
			 * kluge things here instead.
357
			 *
358 359 360 361 362
			 * We approximate "never vacuumed" by "has relpages = 0", which
			 * means this will also fire on genuinely empty relations.	Not
			 * great, but fortunately that's a seldom-seen case in the real
			 * world, and it shouldn't degrade the quality of the plan too
			 * much anyway to err in this direction.
363 364 365 366 367 368
			 */
			if (curpages < 10 && rel->rd_rel->relpages == 0)
				curpages = 10;

			/* report estimated # pages */
			*pages = curpages;
369 370 371 372 373 374 375 376 377
			/* quick exit if rel is clearly empty */
			if (curpages == 0)
			{
				*tuples = 0;
				break;
			}
			/* coerce values in pg_class to more desirable types */
			relpages = (BlockNumber) rel->rd_rel->relpages;
			reltuples = (double) rel->rd_rel->reltuples;
B
Bruce Momjian 已提交
378

379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
			/*
			 * If it's an index, discount the metapage.  This is a kluge
			 * because it assumes more than it ought to about index contents;
			 * it's reasonably OK for btrees but a bit suspect otherwise.
			 */
			if (rel->rd_rel->relkind == RELKIND_INDEX &&
				relpages > 0)
			{
				curpages--;
				relpages--;
			}
			/* estimate number of tuples from previous tuple density */
			if (relpages > 0)
				density = reltuples / (double) relpages;
			else
			{
				/*
				 * When we have no data because the relation was truncated,
				 * estimate tuple width from attribute datatypes.  We assume
				 * here that the pages are completely full, which is OK for
B
Bruce Momjian 已提交
399 400
				 * tables (since they've presumably not been VACUUMed yet) but
				 * is probably an overestimate for indexes.  Fortunately
401 402
				 * get_relation_info() can clamp the overestimate to the
				 * parent table's size.
403 404
				 *
				 * Note: this code intentionally disregards alignment
B
Bruce Momjian 已提交
405 406 407 408
				 * considerations, because (a) that would be gilding the lily
				 * considering how crude the estimate is, and (b) it creates
				 * platform dependencies in the default plans which are kind
				 * of a headache for regression testing.
409
				 */
410
				int32		tuple_width;
411

412
				tuple_width = get_rel_data_width(rel, attr_widths);
413
				tuple_width += sizeof(HeapTupleHeaderData);
414 415
				tuple_width += sizeof(ItemPointerData);
				/* note: integer division is intentional here */
416
				density = (BLCKSZ - SizeOfPageHeaderData) / tuple_width;
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
			}
			*tuples = rint(density * (double) curpages);
			break;
		case RELKIND_SEQUENCE:
			/* Sequences always have a known size */
			*pages = 1;
			*tuples = 1;
			break;
		default:
			/* else it has no disk storage; probably shouldn't get here? */
			*pages = 0;
			*tuples = 0;
			break;
	}
}

433

434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
/*
 * get_rel_data_width
 *
 * Estimate the average width of (the data part of) the relation's tuples.
 * If attr_widths isn't NULL, also store per-column width estimates into
 * that array.
 *
 * Currently we ignore dropped columns.  Ideally those should be included
 * in the result, but we haven't got any way to get info about them; and
 * since they might be mostly NULLs, treating them as zero-width is not
 * necessarily the wrong thing anyway.
 */
static int32
get_rel_data_width(Relation rel, int32 *attr_widths)
{
	int32		tuple_width = 0;
	int			i;

	for (i = 1; i <= RelationGetNumberOfAttributes(rel); i++)
	{
		Form_pg_attribute att = rel->rd_att->attrs[i - 1];
		int32		item_width;

		if (att->attisdropped)
			continue;
		/* This should match set_rel_width() in costsize.c */
		item_width = get_attavgwidth(RelationGetRelid(rel), i);
		if (item_width <= 0)
		{
			item_width = get_typavgwidth(att->atttypid, att->atttypmod);
			Assert(item_width > 0);
		}
		if (attr_widths != NULL)
			attr_widths[i] = item_width;
		tuple_width += item_width;
	}

	return tuple_width;
}

/*
 * get_relation_data_width
 *
 * External API for get_rel_data_width
 */
int32
get_relation_data_width(Oid relid)
{
	int32		result;
	Relation	relation;

	/* As above, assume relation is already locked */
	relation = heap_open(relid, NoLock);

	result = get_rel_data_width(relation, NULL);

	heap_close(relation, NoLock);

	return result;
}


496 497 498 499 500 501 502 503 504 505
/*
 * get_relation_constraints
 *
 * Retrieve the CHECK constraint expressions of the given relation.
 *
 * Returns a List (possibly empty) of constraint expressions.  Each one
 * has been canonicalized, and its Vars are changed to have the varno
 * indicated by rel->relid.  This allows the expressions to be easily
 * compared to expressions taken from WHERE.
 *
506 507 508
 * If include_notnull is true, "col IS NOT NULL" expressions are generated
 * and added to the result for each column that's marked attnotnull.
 *
509 510 511 512
 * Note: at present this is invoked at most once per relation per planner
 * run, and in many cases it won't be invoked at all, so there seems no
 * point in caching the data in RelOptInfo.
 */
513
static List *
514 515
get_relation_constraints(PlannerInfo *root,
						 Oid relationObjectId, RelOptInfo *rel,
516
						 bool include_notnull)
517 518 519 520 521 522 523 524 525 526 527 528 529 530
{
	List	   *result = NIL;
	Index		varno = rel->relid;
	Relation	relation;
	TupleConstr *constr;

	/*
	 * We assume the relation has already been safely locked.
	 */
	relation = heap_open(relationObjectId, NoLock);

	constr = relation->rd_att->constr;
	if (constr != NULL)
	{
B
Bruce Momjian 已提交
531 532
		int			num_check = constr->num_check;
		int			i;
533 534 535

		for (i = 0; i < num_check; i++)
		{
B
Bruce Momjian 已提交
536
			Node	   *cexpr;
537 538 539 540 541 542 543 544 545 546 547 548 549

			cexpr = stringToNode(constr->check[i].ccbin);

			/*
			 * Run each expression through const-simplification and
			 * canonicalization.  This is not just an optimization, but is
			 * necessary, because we will be comparing it to
			 * similarly-processed qual clauses, and may fail to detect valid
			 * matches without this.  This must match the processing done to
			 * qual clauses in preprocess_expression()!  (We can skip the
			 * stuff involving subqueries, however, since we don't allow any
			 * in check constraints.)
			 */
550
			cexpr = eval_const_expressions(root, cexpr);
551 552 553 554 555 556 557 558 559 560 561 562 563 564

			cexpr = (Node *) canonicalize_qual((Expr *) cexpr);

			/*
			 * Also mark any coercion format fields as "don't care", so that
			 * we can match to both explicit and implicit coercions.
			 */
			set_coercionform_dontcare(cexpr);

			/* Fix Vars to have the desired varno */
			if (varno != 1)
				ChangeVarNodes(cexpr, 1, varno, 0);

			/*
B
Bruce Momjian 已提交
565 566
			 * Finally, convert to implicit-AND format (that is, a List) and
			 * append the resulting item(s) to our output list.
567 568 569 570
			 */
			result = list_concat(result,
								 make_ands_implicit((Expr *) cexpr));
		}
571 572 573 574

		/* Add NOT NULL constraints in expression form, if requested */
		if (include_notnull && constr->has_not_null)
		{
575
			int			natts = relation->rd_att->natts;
576 577 578 579 580 581 582

			for (i = 1; i <= natts; i++)
			{
				Form_pg_attribute att = relation->rd_att->attrs[i - 1];

				if (att->attnotnull && !att->attisdropped)
				{
583
					NullTest   *ntest = makeNode(NullTest);
584 585 586 587 588 589 590

					ntest->arg = (Expr *) makeVar(varno,
												  i,
												  att->atttypid,
												  att->atttypmod,
												  0);
					ntest->nulltesttype = IS_NOT_NULL;
591
					ntest->argisrow = type_is_rowtype(att->atttypid);
592 593 594 595
					result = lappend(result, ntest);
				}
			}
		}
596 597 598 599 600 601 602 603
	}

	heap_close(relation, NoLock);

	return result;
}


604 605 606
/*
 * relation_excluded_by_constraints
 *
607 608 609
 * Detect whether the relation need not be scanned because it has either
 * self-inconsistent restrictions, or restrictions inconsistent with the
 * relation's CHECK constraints.
610
 *
611 612 613
 * Note: this examines only rel->relid, rel->reloptkind, and
 * rel->baserestrictinfo; therefore it can be called before filling in
 * other fields of the RelOptInfo.
614 615
 */
bool
616 617
relation_excluded_by_constraints(PlannerInfo *root,
								 RelOptInfo *rel, RangeTblEntry *rte)
618
{
619
	List	   *safe_restrictions;
620
	List	   *constraint_pred;
621 622
	List	   *safe_constraints;
	ListCell   *lc;
623

624 625 626
	/* Skip the test if constraint exclusion is disabled for the rel */
	if (constraint_exclusion == CONSTRAINT_EXCLUSION_OFF ||
		(constraint_exclusion == CONSTRAINT_EXCLUSION_PARTITION &&
627 628 629 630
		 !(rel->reloptkind == RELOPT_OTHER_MEMBER_REL ||
		   (root->hasInheritedTarget &&
			rel->reloptkind == RELOPT_BASEREL &&
			rel->relid == root->parse->resultRelation))))
631 632
		return false;

633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
	/*
	 * Check for self-contradictory restriction clauses.  We dare not make
	 * deductions with non-immutable functions, but any immutable clauses that
	 * are self-contradictory allow us to conclude the scan is unnecessary.
	 *
	 * Note: strip off RestrictInfo because predicate_refuted_by() isn't
	 * expecting to see any in its predicate argument.
	 */
	safe_restrictions = NIL;
	foreach(lc, rel->baserestrictinfo)
	{
		RestrictInfo *rinfo = (RestrictInfo *) lfirst(lc);

		if (!contain_mutable_functions((Node *) rinfo->clause))
			safe_restrictions = lappend(safe_restrictions, rinfo->clause);
	}

	if (predicate_refuted_by(safe_restrictions, safe_restrictions))
		return true;

653 654 655 656
	/* Only plain relations have constraints */
	if (rte->rtekind != RTE_RELATION || rte->inh)
		return false;

657
	/*
658
	 * OK to fetch the constraint expressions.	Include "col IS NOT NULL"
659 660
	 * expressions for attnotnull columns, in case we can refute those.
	 */
661
	constraint_pred = get_relation_constraints(root, rte->relid, rel, true);
662 663 664 665

	/*
	 * We do not currently enforce that CHECK constraints contain only
	 * immutable functions, so it's necessary to check here. We daren't draw
B
Bruce Momjian 已提交
666 667 668
	 * conclusions from plan-time evaluation of non-immutable functions. Since
	 * they're ANDed, we can just ignore any mutable constraints in the list,
	 * and reason about the rest.
669
	 */
670 671 672
	safe_constraints = NIL;
	foreach(lc, constraint_pred)
	{
B
Bruce Momjian 已提交
673
		Node	   *pred = (Node *) lfirst(lc);
674 675 676 677

		if (!contain_mutable_functions(pred))
			safe_constraints = lappend(safe_constraints, pred);
	}
678 679 680 681 682

	/*
	 * The constraints are effectively ANDed together, so we can just try to
	 * refute the entire collection at once.  This may allow us to make proofs
	 * that would fail if we took them individually.
683
	 *
B
Bruce Momjian 已提交
684 685 686
	 * Note: we use rel->baserestrictinfo, not safe_restrictions as might seem
	 * an obvious optimization.  Some of the clauses might be OR clauses that
	 * have volatile and nonvolatile subclauses, and it's OK to make
687
	 * deductions with the nonvolatile parts.
688
	 */
689
	if (predicate_refuted_by(safe_constraints, rel->baserestrictinfo))
690 691 692 693 694 695
		return true;

	return false;
}


696 697 698 699 700 701 702 703 704 705
/*
 * build_physical_tlist
 *
 * Build a targetlist consisting of exactly the relation's user attributes,
 * in order.  The executor can special-case such tlists to avoid a projection
 * step at runtime, so we use such tlists preferentially for scan nodes.
 *
 * Exception: if there are any dropped columns, we punt and return NIL.
 * Ideally we would like to handle the dropped-column case too.  However this
 * creates problems for ExecTypeFromTL, which may be asked to build a tupdesc
B
Bruce Momjian 已提交
706
 * for a tlist that includes vars of no-longer-existent types.	In theory we
707 708 709 710
 * could dig out the required info from the pg_attribute entries of the
 * relation, but that data is not readily available to ExecTypeFromTL.
 * For now, we don't apply the physical-tlist optimization when there are
 * dropped cols.
711
 *
712
 * We also support building a "physical" tlist for subqueries, functions,
713 714
 * values lists, and CTEs, since the same optimization can occur in
 * SubqueryScan, FunctionScan, ValuesScan, CteScan, and WorkTableScan nodes.
715 716
 */
List *
717
build_physical_tlist(PlannerInfo *root, RelOptInfo *rel)
718
{
719
	List	   *tlist = NIL;
720
	Index		varno = rel->relid;
721
	RangeTblEntry *rte = planner_rt_fetch(varno, root);
722
	Relation	relation;
723 724 725
	Query	   *subquery;
	Var		   *var;
	ListCell   *l;
726 727
	int			attrno,
				numattrs;
728
	List	   *colvars;
729

730 731 732
	switch (rte->rtekind)
	{
		case RTE_RELATION:
733 734
			/* Assume we already have adequate lock */
			relation = heap_open(rte->relid, NoLock);
735

736 737 738 739
			numattrs = RelationGetNumberOfAttributes(relation);
			for (attrno = 1; attrno <= numattrs; attrno++)
			{
				Form_pg_attribute att_tup = relation->rd_att->attrs[attrno - 1];
740

741 742 743 744 745 746
				if (att_tup->attisdropped)
				{
					/* found a dropped col, so punt */
					tlist = NIL;
					break;
				}
747

748 749 750 751 752 753 754 755 756 757 758 759
				var = makeVar(varno,
							  attrno,
							  att_tup->atttypid,
							  att_tup->atttypmod,
							  0);

				tlist = lappend(tlist,
								makeTargetEntry((Expr *) var,
												attrno,
												NULL,
												false));
			}
760

761
			heap_close(relation, NoLock);
762 763
			break;

764 765 766 767 768 769
		case RTE_SUBQUERY:
			subquery = rte->subquery;
			foreach(l, subquery->targetList)
			{
				TargetEntry *tle = (TargetEntry *) lfirst(l);

770 771 772 773
				/*
				 * A resjunk column of the subquery can be reflected as
				 * resjunk in the physical tlist; we need not punt.
				 */
774
				var = makeVarFromTargetEntry(varno, tle);
775 776 777 778 779 780 781 782

				tlist = lappend(tlist,
								makeTargetEntry((Expr *) var,
												tle->resno,
												NULL,
												tle->resjunk));
			}
			break;
783

784
		case RTE_FUNCTION:
785 786 787
		case RTE_VALUES:
		case RTE_CTE:
			/* Not all of these can have dropped cols, but share code anyway */
788
			expandRTE(rte, varno, 0, -1, true /* include dropped */ ,
789 790 791 792
					  NULL, &colvars);
			foreach(l, colvars)
			{
				var = (Var *) lfirst(l);
B
Bruce Momjian 已提交
793

794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
				/*
				 * A non-Var in expandRTE's output means a dropped column;
				 * must punt.
				 */
				if (!IsA(var, Var))
				{
					tlist = NIL;
					break;
				}

				tlist = lappend(tlist,
								makeTargetEntry((Expr *) var,
												var->varattno,
												NULL,
												false));
			}
			break;

812 813 814 815 816 817
		default:
			/* caller error */
			elog(ERROR, "unsupported RTE kind %d in build_physical_tlist",
				 (int) rte->rtekind);
			break;
	}
818

819
	return tlist;
820 821
}

822
/*
823
 * restriction_selectivity
824
 *
825
 * Returns the selectivity of a specified restriction operator clause.
826 827 828
 * This code executes registered procedures stored in the
 * operator relation, by calling the function manager.
 *
829
 * See clause_selectivity() for the meaning of the additional parameters.
830
 */
831
Selectivity
832
restriction_selectivity(PlannerInfo *root,
833
						Oid operatorid,
834 835
						List *args,
						int varRelid)
836
{
837
	RegProcedure oprrest = get_oprrest(operatorid);
838 839
	float8		result;

840
	/*
841 842
	 * if the oprrest procedure is missing for whatever reason, use a
	 * selectivity of 0.5
843 844 845 846 847 848
	 */
	if (!oprrest)
		return (Selectivity) 0.5;

	result = DatumGetFloat8(OidFunctionCall4(oprrest,
											 PointerGetDatum(root),
849
											 ObjectIdGetDatum(operatorid),
850 851
											 PointerGetDatum(args),
											 Int32GetDatum(varRelid)));
852 853

	if (result < 0.0 || result > 1.0)
854
		elog(ERROR, "invalid restriction selectivity: %f", result);
855 856

	return (Selectivity) result;
857 858 859
}

/*
860
 * join_selectivity
861
 *
862 863 864
 * Returns the selectivity of a specified join operator clause.
 * This code executes registered procedures stored in the
 * operator relation, by calling the function manager.
865
 */
866
Selectivity
867
join_selectivity(PlannerInfo *root,
868
				 Oid operatorid,
869
				 List *args,
870 871
				 JoinType jointype,
				 SpecialJoinInfo *sjinfo)
872
{
873
	RegProcedure oprjoin = get_oprjoin(operatorid);
874 875
	float8		result;

876
	/*
877 878
	 * if the oprjoin procedure is missing for whatever reason, use a
	 * selectivity of 0.5
879 880 881 882
	 */
	if (!oprjoin)
		return (Selectivity) 0.5;

883
	result = DatumGetFloat8(OidFunctionCall5(oprjoin,
884
											 PointerGetDatum(root),
885
											 ObjectIdGetDatum(operatorid),
886
											 PointerGetDatum(args),
887 888
											 Int16GetDatum(jointype),
											 PointerGetDatum(sjinfo)));
889 890

	if (result < 0.0 || result > 1.0)
891
		elog(ERROR, "invalid join selectivity: %f", result);
892 893

	return (Selectivity) result;
894 895
}

896 897 898 899 900 901 902 903 904 905
/*
 * has_unique_index
 *
 * Detect whether there is a unique index on the specified attribute
 * of the specified relation, thus allowing us to conclude that all
 * the (non-null) values of the attribute are distinct.
 */
bool
has_unique_index(RelOptInfo *rel, AttrNumber attno)
{
906
	ListCell   *ilist;
907 908 909 910 911 912

	foreach(ilist, rel->indexlist)
	{
		IndexOptInfo *index = (IndexOptInfo *) lfirst(ilist);

		/*
B
Bruce Momjian 已提交
913
		 * Note: ignore partial indexes, since they don't allow us to conclude
914
		 * that all attr values are distinct, *unless* they are marked predOK
915 916 917 918
		 * which means we know the index's predicate is satisfied by the
		 * query. We don't take any interest in expressional indexes either.
		 * Also, a multicolumn unique index doesn't allow us to conclude that
		 * just the specified attr is unique.
919 920
		 */
		if (index->unique &&
921
			index->ncolumns == 1 &&
922
			index->indexkeys[0] == attno &&
923
			(index->indpred == NIL || index->predOK))
924 925 926 927
			return true;
	}
	return false;
}