plancat.c 45.2 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * plancat.c
4
 *	   routines for accessing the system catalogs
5 6
 *
 *
B
Bruce Momjian 已提交
7
 * Portions Copyright (c) 1996-2015, 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/htup_details.h"
23
#include "access/nbtree.h"
24
#include "access/sysattr.h"
25
#include "access/transam.h"
26
#include "access/xlog.h"
27
#include "catalog/catalog.h"
28
#include "catalog/dependency.h"
29
#include "catalog/heap.h"
30
#include "foreign/fdwapi.h"
31
#include "miscadmin.h"
32
#include "nodes/makefuncs.h"
33
#include "optimizer/clauses.h"
34
#include "optimizer/cost.h"
35
#include "optimizer/plancat.h"
36
#include "optimizer/predtest.h"
37
#include "optimizer/prep.h"
38
#include "parser/parse_relation.h"
39
#include "parser/parsetree.h"
40
#include "rewrite/rewriteManip.h"
41
#include "storage/bufmgr.h"
42
#include "utils/lsyscache.h"
43
#include "utils/rel.h"
44
#include "utils/snapmgr.h"
45 46


47
/* GUC parameter */
48
int			constraint_exclusion = CONSTRAINT_EXCLUSION_PARTITION;
49

50 51 52
/* Hook for plugins to get control in get_relation_info() */
get_relation_info_hook_type get_relation_info_hook = NULL;

53

54 55
static bool infer_collation_opclass_match(InferenceElem *elem, Relation	idxRel,
						Bitmapset *inferAttrs, List *idxExprs);
56
static int32 get_rel_data_width(Relation rel, int32 *attr_widths);
57 58
static List *get_relation_constraints(PlannerInfo *root,
						 Oid relationObjectId, RelOptInfo *rel,
59
						 bool include_notnull);
60 61
static List *build_index_tlist(PlannerInfo *root, IndexOptInfo *index,
				  Relation heapRelation);
62 63


64
/*
65
 * get_relation_info -
66
 *	  Retrieves catalog information for a given relation.
67 68 69 70
 *
 * Given the Oid of the relation, return the following info into fields
 * of the RelOptInfo struct:
 *
71 72
 *	min_attr	lowest valid AttrNumber
 *	max_attr	highest valid AttrNumber
73
 *	indexlist	list of IndexOptInfos for relation's indexes
74
 *	fdwroutine	if it's a foreign table, the FDW function pointers
75 76
 *	pages		number of pages
 *	tuples		number of tuples
77 78 79 80
 *
 * 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.
81 82 83 84 85
 *
 * 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.
86 87
 */
void
88 89
get_relation_info(PlannerInfo *root, Oid relationObjectId, bool inhparent,
				  RelOptInfo *rel)
90
{
91
	Index		varno = rel->relid;
92
	Relation	relation;
93 94
	bool		hasindex;
	List	   *indexinfos = NIL;
95

96
	/*
B
Bruce Momjian 已提交
97 98 99
	 * 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.
100
	 */
101
	relation = heap_open(relationObjectId, NoLock);
102

103 104 105 106 107 108
	/* Temporary and unlogged relations are inaccessible during recovery. */
	if (!RelationNeedsWAL(relation) && RecoveryInProgress())
		ereport(ERROR,
				(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
				 errmsg("cannot access temporary or unlogged relations during recovery")));

109 110
	rel->min_attr = FirstLowInvalidHeapAttributeNumber + 1;
	rel->max_attr = RelationGetNumberOfAttributes(relation);
111
	rel->reltablespace = RelationGetForm(relation)->reltablespace;
112

113 114 115 116 117 118 119
	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));

	/*
120
	 * Estimate relation size --- unless it's an inheritance parent, in which
B
Bruce Momjian 已提交
121 122
	 * 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
123
	 * calculation.
124
	 */
125 126
	if (!inhparent)
		estimate_rel_size(relation, rel->attr_widths - rel->min_attr,
127
						  &rel->pages, &rel->tuples, &rel->allvisfrac);
128

129
	/*
B
Bruce Momjian 已提交
130
	 * Make list of indexes.  Ignore indexes on system catalogs if told to.
131
	 * Don't bother with indexes for an inheritance parent, either.
132
	 */
133
	if (inhparent ||
134
		(IgnoreSystemIndexes && IsSystemRelation(relation)))
135 136 137
		hasindex = false;
	else
		hasindex = relation->rd_rel->relhasindex;
138

139
	if (hasindex)
140
	{
141 142
		List	   *indexoidlist;
		ListCell   *l;
143
		LOCKMODE	lmode;
144

145
		indexoidlist = RelationGetIndexList(relation);
146

147 148 149 150 151 152 153 154 155 156 157 158 159
		/*
		 * 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;

160
		foreach(l, indexoidlist)
161
		{
162
			Oid			indexoid = lfirst_oid(l);
163 164 165
			Relation	indexRelation;
			Form_pg_index index;
			IndexOptInfo *info;
166
			int			ncolumns;
167 168
			int			i;

169 170 171
			/*
			 * Extract info from the relation descriptor for the index.
			 */
172
			indexRelation = index_open(indexoid, lmode);
173
			index = indexRelation->rd_index;
174

175 176
			/*
			 * Ignore invalid indexes, since they can't safely be used for
B
Bruce Momjian 已提交
177 178
			 * queries.  Note that this is OK because the data structure we
			 * are constructing is only used by the planner --- the executor
179 180
			 * still needs to insert into "invalid" indexes, if they're marked
			 * IndexIsReady.
181
			 */
182
			if (!IndexIsValid(index))
183 184 185 186 187
			{
				index_close(indexRelation, NoLock);
				continue;
			}

188
			/*
B
Bruce Momjian 已提交
189 190 191
			 * 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.
192 193 194 195 196 197 198 199 200 201
			 */
			if (index->indcheckxmin &&
				!TransactionIdPrecedes(HeapTupleHeaderGetXmin(indexRelation->rd_indextuple->t_data),
									   TransactionXmin))
			{
				root->glob->transientPlan = true;
				index_close(indexRelation, NoLock);
				continue;
			}

202 203 204
			info = makeNode(IndexOptInfo);

			info->indexoid = index->indexrelid;
205 206
			info->reltablespace =
				RelationGetForm(indexRelation)->reltablespace;
207
			info->rel = rel;
208 209
			info->ncolumns = ncolumns = index->indnatts;
			info->indexkeys = (int *) palloc(sizeof(int) * ncolumns);
210
			info->indexcollations = (Oid *) palloc(sizeof(Oid) * ncolumns);
211 212
			info->opfamily = (Oid *) palloc(sizeof(Oid) * ncolumns);
			info->opcintype = (Oid *) palloc(sizeof(Oid) * ncolumns);
213
			info->canreturn = (bool *) palloc(sizeof(bool) * ncolumns);
214

215
			for (i = 0; i < ncolumns; i++)
216
			{
217
				info->indexkeys[i] = index->indkey.values[i];
P
Peter Eisentraut 已提交
218
				info->indexcollations[i] = indexRelation->rd_indcollation[i];
219 220
				info->opfamily[i] = indexRelation->rd_opfamily[i];
				info->opcintype[i] = indexRelation->rd_opcintype[i];
221
				info->canreturn[i] = index_can_return(indexRelation, i + 1);
222 223 224
			}

			info->relam = indexRelation->rd_rel->relam;
225
			info->amcostestimate = indexRelation->rd_am->amcostestimate;
226
			info->amcanorderbyop = indexRelation->rd_am->amcanorderbyop;
227
			info->amoptionalkey = indexRelation->rd_am->amoptionalkey;
228
			info->amsearcharray = indexRelation->rd_am->amsearcharray;
229
			info->amsearchnulls = indexRelation->rd_am->amsearchnulls;
230 231
			info->amhasgettuple = OidIsValid(indexRelation->rd_am->amgettuple);
			info->amhasgetbitmap = OidIsValid(indexRelation->rd_am->amgetbitmap);
232 233

			/*
234
			 * Fetch the ordering information for the index, if any.
235
			 */
236
			if (info->relam == BTREE_AM_OID)
237
			{
238 239 240 241 242 243 244 245 246
				/*
				 * If it's a btree index, we can use its opfamily OIDs
				 * directly as the sort ordering opfamily OIDs.
				 */
				Assert(indexRelation->rd_am->amcanorder);

				info->sortopfamily = info->opfamily;
				info->reverse_sort = (bool *) palloc(sizeof(bool) * ncolumns);
				info->nulls_first = (bool *) palloc(sizeof(bool) * ncolumns);
247

248
				for (i = 0; i < ncolumns; i++)
249
				{
B
Bruce Momjian 已提交
250
					int16		opt = indexRelation->rd_indoption[i];
251

252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
					info->reverse_sort[i] = (opt & INDOPTION_DESC) != 0;
					info->nulls_first[i] = (opt & INDOPTION_NULLS_FIRST) != 0;
				}
			}
			else if (indexRelation->rd_am->amcanorder)
			{
				/*
				 * Otherwise, identify the corresponding btree opfamilies by
				 * trying to map this index's "<" operators into btree.  Since
				 * "<" uniquely defines the behavior of a sort order, this is
				 * a sufficient test.
				 *
				 * XXX This method is rather slow and also requires the
				 * undesirable assumption that the other index AM numbers its
				 * strategies the same as btree.  It'd be better to have a way
				 * to explicitly declare the corresponding btree opfamily for
				 * each opfamily of the other index type.  But given the lack
				 * of current or foreseeable amcanorder index types, it's not
				 * worth expending more effort on now.
				 */
				info->sortopfamily = (Oid *) palloc(sizeof(Oid) * ncolumns);
				info->reverse_sort = (bool *) palloc(sizeof(bool) * ncolumns);
				info->nulls_first = (bool *) palloc(sizeof(bool) * ncolumns);

				for (i = 0; i < ncolumns; i++)
				{
					int16		opt = indexRelation->rd_indoption[i];
					Oid			ltopr;
					Oid			btopfamily;
					Oid			btopcintype;
					int16		btstrategy;
B
Bruce Momjian 已提交
283

284 285 286 287 288 289 290 291 292 293 294 295 296 297
					info->reverse_sort[i] = (opt & INDOPTION_DESC) != 0;
					info->nulls_first[i] = (opt & INDOPTION_NULLS_FIRST) != 0;

					ltopr = get_opfamily_member(info->opfamily[i],
												info->opcintype[i],
												info->opcintype[i],
												BTLessStrategyNumber);
					if (OidIsValid(ltopr) &&
						get_ordering_op_properties(ltopr,
												   &btopfamily,
												   &btopcintype,
												   &btstrategy) &&
						btopcintype == info->opcintype[i] &&
						btstrategy == BTLessStrategyNumber)
298
					{
299 300
						/* Successful mapping */
						info->sortopfamily[i] = btopfamily;
301
					}
302
					else
303
					{
304 305 306 307 308
						/* Fail ... quietly treat index as unordered */
						info->sortopfamily = NULL;
						info->reverse_sort = NULL;
						info->nulls_first = NULL;
						break;
309
					}
310 311
				}
			}
312 313 314 315 316 317
			else
			{
				info->sortopfamily = NULL;
				info->reverse_sort = NULL;
				info->nulls_first = NULL;
			}
318

319 320 321
			/*
			 * Fetch the index expressions and predicate, if any.  We must
			 * modify the copies we obtain from the relcache to have the
B
Bruce Momjian 已提交
322 323
			 * correct varno for the parent relation, so that they match up
			 * correctly against qual clauses.
324 325 326 327 328 329 330
			 */
			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);
331 332 333 334

			/* Build targetlist using the completed indexprs data */
			info->indextlist = build_index_tlist(root, info, relation);

B
Bruce Momjian 已提交
335
			info->predOK = false;		/* set later in indxpath.c */
336
			info->unique = index->indisunique;
337
			info->immediate = index->indimmediate;
338
			info->hypothetical = false;
339

340
			/*
B
Bruce Momjian 已提交
341 342 343 344 345
			 * 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.
346 347 348 349 350 351 352 353
			 */
			if (info->indpred == NIL)
			{
				info->pages = RelationGetNumberOfBlocks(indexRelation);
				info->tuples = rel->tuples;
			}
			else
			{
354
				double		allvisfrac; /* dummy */
355

356
				estimate_rel_size(indexRelation, NULL,
357
								  &info->pages, &info->tuples, &allvisfrac);
358 359 360 361
				if (info->tuples > rel->tuples)
					info->tuples = rel->tuples;
			}

362 363 364 365 366 367 368 369 370 371 372
			if (info->relam == BTREE_AM_OID)
			{
				/* For btrees, get tree height while we have the index open */
				info->tree_height = _bt_getrootheight(indexRelation);
			}
			else
			{
				/* For other index types, just set it to "unknown" for now */
				info->tree_height = -1;
			}

373
			index_close(indexRelation, NoLock);
374 375 376 377

			indexinfos = lcons(info, indexinfos);
		}

378
		list_free(indexoidlist);
379
	}
380

381 382
	rel->indexlist = indexinfos;

383
	/* Grab foreign-table info using the relcache, while we have it */
384
	if (relation->rd_rel->relkind == RELKIND_FOREIGN_TABLE)
385
	{
386
		rel->serverid = GetForeignServerIdByRelId(RelationGetRelid(relation));
387
		rel->fdwroutine = GetFdwRoutineForRelation(relation, true);
388
	}
389
	else
390
	{
391
		rel->serverid = InvalidOid;
392
		rel->fdwroutine = NULL;
393
	}
394

395
	heap_close(relation, NoLock);
396 397 398 399 400 401 402 403

	/*
	 * 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);
404 405
}

406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
/*
 * infer_arbiter_indexes -
 *	  Determine the unique indexes used to arbitrate speculative insertion.
 *
 * Uses user-supplied inference clause expressions and predicate to match a
 * unique index from those defined and ready on the heap relation (target).
 * An exact match is required on columns/expressions (although they can appear
 * in any order).  However, the predicate given by the user need only restrict
 * insertion to a subset of some part of the table covered by some particular
 * unique index (in particular, a partial unique index) in order to be
 * inferred.
 *
 * The implementation does not consider which B-Tree operator class any
 * particular available unique index attribute uses, unless one was specified
 * in the inference specification. The same is true of collations.  In
 * particular, there is no system dependency on the default operator class for
 * the purposes of inference.  If no opclass (or collation) is specified, then
 * all matching indexes (that may or may not match the default in terms of
 * each attribute opclass/collation) are used for inference.
 */
List *
infer_arbiter_indexes(PlannerInfo *root)
{
	OnConflictExpr *onconflict = root->parse->onConflict;
	/* Iteration state */
	Relation	relation;
	Oid			relationObjectId;
	Oid			indexOidFromConstraint = InvalidOid;
	List	   *indexList;
	ListCell   *l;

	/* Normalized inference attributes and inference expressions: */
	Bitmapset  *inferAttrs = NULL;
	List	   *inferElems = NIL;

441 442
	/* Results */
	List	   *results = NIL;
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 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550

	/*
	 * Quickly return NIL for ON CONFLICT DO NOTHING without an inference
	 * specification or named constraint.  ON CONFLICT DO UPDATE statements
	 * must always provide one or the other (but parser ought to have caught
	 * that already).
	 */
	if (onconflict->arbiterElems == NIL &&
		onconflict->constraint == InvalidOid)
		return NIL;

	/*
	 * 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.
	 */
	relationObjectId = rt_fetch(root->parse->resultRelation,
								root->parse->rtable)->relid;

	relation = heap_open(relationObjectId, NoLock);

	/*
	 * Build normalized/BMS representation of plain indexed attributes, as
	 * well as direct list of inference elements.  This is required for
	 * matching the cataloged definition of indexes.
	 */
	foreach(l, onconflict->arbiterElems)
	{
		InferenceElem  *elem;
		Var			   *var;
		int				attno;

		elem = (InferenceElem *) lfirst(l);

		/*
		 * Parse analysis of inference elements performs full parse analysis
		 * of Vars, even for non-expression indexes (in contrast with utility
		 * command related use of IndexElem).  However, indexes are cataloged
		 * with simple attribute numbers for non-expression indexes.  Those
		 * are handled later.
		 */
		if (!IsA(elem->expr, Var))
		{
			inferElems = lappend(inferElems, elem->expr);
			continue;
		}

		var = (Var *) elem->expr;
		attno = var->varattno;

		if (attno < 0)
			ereport(ERROR,
					(errcode(ERRCODE_INVALID_COLUMN_REFERENCE),
					 errmsg("system columns cannot be used in an ON CONFLICT clause")));
		else if (attno == 0)
			elog(ERROR, "whole row unique index inference specifications are not valid");

		inferAttrs = bms_add_member(inferAttrs, attno);
	}

	/*
	 * Lookup named constraint's index.  This is not immediately returned
	 * because some additional sanity checks are required.
	 */
	if (onconflict->constraint != InvalidOid)
	{
		indexOidFromConstraint = get_constraint_index(onconflict->constraint);

		if (indexOidFromConstraint == InvalidOid)
			ereport(ERROR,
					(errcode(ERRCODE_WRONG_OBJECT_TYPE),
					 errmsg("constraint in ON CONFLICT clause has no associated index")));
	}

	indexList = RelationGetIndexList(relation);

	/*
	 * Using that representation, iterate through the list of indexes on the
	 * target relation to try and find a match
	 */
	foreach(l, indexList)
	{
		Oid			indexoid = lfirst_oid(l);
		Relation	idxRel;
		Form_pg_index idxForm;
		Bitmapset  *indexedAttrs = NULL;
		List	   *idxExprs;
		List	   *predExprs;
		List	   *whereExplicit;
		AttrNumber	natt;
		ListCell   *el;

		/*
		 * Extract info from the relation descriptor for the index.  We know
		 * that this is a target, so get lock type it is known will ultimately
		 * be required by the executor.
		 *
		 * Let executor complain about !indimmediate case directly, because
		 * enforcement needs to occur there anyway when an inference clause is
		 * omitted.
		 */
		idxRel = index_open(indexoid, RowExclusiveLock);
		idxForm = idxRel->rd_index;

		if (!IndexIsValid(idxForm))
			goto next;

		/*
551 552 553 554
		 * Note that we do not perform a check against indcheckxmin (like
		 * e.g. get_relation_info()) here to eliminate candidates, because
		 * uniqueness checking only cares about the most recently committed
		 * tuple versions.
555 556 557 558 559 560 561 562 563 564 565 566 567
		 */

		/*
		 * Look for match on "ON constraint_name" variant, which may not be
		 * unique constraint.  This can only be a constraint name.
		 */
		if (indexOidFromConstraint == idxForm->indexrelid)
		{
			if (!idxForm->indisunique && onconflict->action == ONCONFLICT_UPDATE)
				ereport(ERROR,
						(errcode(ERRCODE_WRONG_OBJECT_TYPE),
						 errmsg("ON CONFLICT DO UPDATE not supported with exclusion constraints")));

568
			results = lappend_oid(results, idxForm->indexrelid);
569 570 571
			list_free(indexList);
			index_close(idxRel, NoLock);
			heap_close(relation, NoLock);
572
			return results;
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
		}
		else if (indexOidFromConstraint != InvalidOid)
		{
			/* No point in further work for index in named constraint case */
			goto next;
		}

		/*
		 * Only considering conventional inference at this point (not named
		 * constraints), so index under consideration can be immediately
		 * skipped if it's not unique
		 */
		if (!idxForm->indisunique)
			goto next;

		/* Build BMS representation of cataloged index attributes */
		for (natt = 0; natt < idxForm->indnatts; natt++)
		{
			int			attno = idxRel->rd_index->indkey.values[natt];

			if (attno < 0)
				elog(ERROR, "system column in index");

			if (attno != 0)
				indexedAttrs = bms_add_member(indexedAttrs, attno);
		}

		/* Non-expression attributes (if any) must match */
		if (!bms_equal(indexedAttrs, inferAttrs))
			goto next;

		/* Expression attributes (if any) must match */
		idxExprs = RelationGetIndexExpressions(idxRel);
		foreach(el, onconflict->arbiterElems)
		{
			InferenceElem   *elem = (InferenceElem *) lfirst(el);

			/*
			 * Ensure that collation/opclass aspects of inference expression
			 * element match.  Even though this loop is primarily concerned
			 * with matching expressions, it is a convenient point to check
			 * this for both expressions and ordinary (non-expression)
			 * attributes appearing as inference elements.
			 */
			if (!infer_collation_opclass_match(elem, idxRel, inferAttrs,
											   idxExprs))
				goto next;

			/*
			 * Plain Vars don't factor into count of expression elements, and
			 * the question of whether or not they satisfy the index
			 * definition has already been considered (they must).
			 */
			if (IsA(elem->expr, Var))
				continue;

			/*
			 * Might as well avoid redundant check in the rare cases where
			 * infer_collation_opclass_match() is required to do real work.
			 * Otherwise, check that element expression appears in cataloged
			 * index definition.
			 */
			if (elem->infercollid != InvalidOid ||
636
				elem->inferopclass != InvalidOid ||
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662
				list_member(idxExprs, elem->expr))
				continue;

			goto next;
		}

		/*
		 * Now that all inference elements were matched, ensure that the
		 * expression elements from inference clause are not missing any
		 * cataloged expressions.  This does the right thing when unique
		 * indexes redundantly repeat the same attribute, or if attributes
		 * redundantly appear multiple times within an inference clause.
		 */
		if (list_difference(idxExprs, inferElems) != NIL)
			goto next;

		/*
		 * Any user-supplied ON CONFLICT unique index inference WHERE clause
		 * need only be implied by the cataloged index definitions predicate.
		 */
		predExprs = RelationGetIndexPredicate(idxRel);
		whereExplicit = make_ands_implicit((Expr *) onconflict->arbiterWhere);

		if (!predicate_implied_by(predExprs, whereExplicit))
			goto next;

663
		results = lappend_oid(results, idxForm->indexrelid);
664 665 666 667 668 669 670
next:
		index_close(idxRel, NoLock);
	}

	list_free(indexList);
	heap_close(relation, NoLock);

671
	if (results == NIL)
672 673 674 675
		ereport(ERROR,
				(errcode(ERRCODE_INVALID_COLUMN_REFERENCE),
				 errmsg("there is no unique or exclusion constraint matching the ON CONFLICT specification")));

676
	return results;
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711
}

/*
 * infer_collation_opclass_match - ensure infer element opclass/collation match
 *
 * Given unique index inference element from inference specification, if
 * collation was specified, or if opclass (represented here as opfamily +
 * opcintype) was specified, verify that there is at least one matching
 * indexed attribute (occasionally, there may be more).  Skip this in the
 * common case where inference specification does not include collation or
 * opclass (instead matching everything, regardless of cataloged
 * collation/opclass of indexed attribute).
 *
 * At least historically, Postgres has not offered collations or opclasses
 * with alternative-to-default notions of equality, so these additional
 * criteria should only be required infrequently.
 *
 * Don't give up immediately when an inference element matches some attribute
 * cataloged as indexed but not matching additional opclass/collation
 * criteria.  This is done so that the implementation is as forgiving as
 * possible of redundancy within cataloged index attributes (or, less
 * usefully, within inference specification elements).  If collations actually
 * differ between apparently redundantly indexed attributes (redundant within
 * or across indexes), then there really is no redundancy as such.
 *
 * Note that if an inference element specifies an opclass and a collation at
 * once, both must match in at least one particular attribute within index
 * catalog definition in order for that inference element to be considered
 * inferred/satisfied.
 */
static bool
infer_collation_opclass_match(InferenceElem *elem, Relation idxRel,
							  Bitmapset *inferAttrs, List *idxExprs)
{
	AttrNumber	natt;
712 713
	Oid			inferopfamily = InvalidOid;		/* OID of att opfamily */
	Oid			inferopcinputtype = InvalidOid;		/* OID of att opfamily */
714 715 716 717 718

	/*
	 * If inference specification element lacks collation/opclass, then no
	 * need to check for exact match.
	 */
719
	if (elem->infercollid == InvalidOid && elem->inferopclass == InvalidOid)
720 721
		return true;

722 723 724 725 726 727 728 729 730
	/*
	 * Lookup opfamily and input type, for matching indexes
	 */
	if (elem->inferopclass)
	{
		inferopfamily = get_opclass_family(elem->inferopclass);
		inferopcinputtype = get_opclass_input_type(elem->inferopclass);
	}

731 732 733 734 735 736
	for (natt = 1; natt <= idxRel->rd_att->natts; natt++)
	{
		Oid		opfamily = idxRel->rd_opfamily[natt - 1];
		Oid		opcinputtype = idxRel->rd_opcintype[natt - 1];
		Oid		collation = idxRel->rd_indcollation[natt - 1];

737 738
		if (elem->inferopclass != InvalidOid &&
			(inferopfamily != opfamily || inferopcinputtype != opcinputtype))
739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
		{
			/* Attribute needed to match opclass, but didn't */
			continue;
		}

		if (elem->infercollid != InvalidOid &&
			elem->infercollid != collation)
		{
			/* Attribute needed to match collation, but didn't */
			continue;
		}

		if ((IsA(elem->expr, Var) &&
			 bms_is_member(((Var *) elem->expr)->varattno, inferAttrs)) ||
			list_member(idxExprs, elem->expr))
		{
			/* Found one match - good enough */
			return true;
		}
	}

	return false;
}

763 764 765
/*
 * estimate_rel_size - estimate # pages and # tuples in a table or index
 *
766 767 768
 * We also estimate the fraction of the pages that are marked all-visible in
 * the visibility map, for use in estimation of index-only scans.
 *
769
 * If attr_widths isn't NULL, it points to the zero-index entry of the
770
 * relation's attr_widths[] cache; we fill this in if we have need to compute
771 772
 * the attribute widths for estimation purposes.
 */
773
void
774
estimate_rel_size(Relation rel, int32 *attr_widths,
775
				  BlockNumber *pages, double *tuples, double *allvisfrac)
776
{
B
Bruce Momjian 已提交
777 778
	BlockNumber curpages;
	BlockNumber relpages;
779
	double		reltuples;
780
	BlockNumber relallvisible;
781 782 783 784 785 786
	double		density;

	switch (rel->rd_rel->relkind)
	{
		case RELKIND_RELATION:
		case RELKIND_INDEX:
787
		case RELKIND_MATVIEW:
788 789
		case RELKIND_TOASTVALUE:
			/* it has storage, ok to call the smgr */
790 791 792 793
			curpages = RelationGetNumberOfBlocks(rel);

			/*
			 * HACK: if the relation has never yet been vacuumed, use a
794 795 796
			 * minimum size estimate of 10 pages.  The idea here is to avoid
			 * assuming a newly-created table is really small, even if it
			 * currently is, because that may not be true once some data gets
B
Bruce Momjian 已提交
797
			 * loaded into it.  Once a vacuum or analyze cycle has been done
798 799 800 801
			 * on it, it's more reasonable to believe the size is somewhat
			 * stable.
			 *
			 * (Note that this is only an issue if the plan gets cached and
B
Bruce Momjian 已提交
802
			 * used again after the table has been filled.  What we're trying
803 804 805 806 807 808
			 * to avoid is using a nestloop-type plan on a table that has
			 * grown substantially since the plan was made.  Normally,
			 * autovacuum/autoanalyze will occur once enough inserts have
			 * happened and cause cached-plan invalidation; but that doesn't
			 * happen instantaneously, and it won't happen at all for cases
			 * such as temporary tables.)
809
			 *
810
			 * We approximate "never vacuumed" by "has relpages = 0", which
B
Bruce Momjian 已提交
811
			 * means this will also fire on genuinely empty relations.  Not
812 813 814
			 * 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.
815 816 817 818 819 820
			 *
			 * There are two exceptions wherein we don't apply this heuristic.
			 * One is if the table has inheritance children.  Totally empty
			 * parent tables are quite common, so we should be willing to
			 * believe that they are empty.  Also, we don't apply the 10-page
			 * minimum to indexes.
821
			 */
822 823 824 825
			if (curpages < 10 &&
				rel->rd_rel->relpages == 0 &&
				!rel->rd_rel->relhassubclass &&
				rel->rd_rel->relkind != RELKIND_INDEX)
826 827 828 829
				curpages = 10;

			/* report estimated # pages */
			*pages = curpages;
830 831 832 833
			/* quick exit if rel is clearly empty */
			if (curpages == 0)
			{
				*tuples = 0;
834
				*allvisfrac = 0;
835 836 837 838 839
				break;
			}
			/* coerce values in pg_class to more desirable types */
			relpages = (BlockNumber) rel->rd_rel->relpages;
			reltuples = (double) rel->rd_rel->reltuples;
840
			relallvisible = (BlockNumber) rel->rd_rel->relallvisible;
B
Bruce Momjian 已提交
841

842
			/*
843 844 845 846
			 * If it's an index, discount the metapage while estimating the
			 * number of tuples.  This is a kluge because it assumes more than
			 * it ought to about index structure.  Currently it's OK for
			 * btree, hash, and GIN indexes but suspect for GiST indexes.
847 848 849 850 851 852 853
			 */
			if (rel->rd_rel->relkind == RELKIND_INDEX &&
				relpages > 0)
			{
				curpages--;
				relpages--;
			}
854

855 856 857 858 859 860 861 862 863
			/* 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 已提交
864 865
				 * tables (since they've presumably not been VACUUMed yet) but
				 * is probably an overestimate for indexes.  Fortunately
866 867
				 * get_relation_info() can clamp the overestimate to the
				 * parent table's size.
868 869
				 *
				 * Note: this code intentionally disregards alignment
B
Bruce Momjian 已提交
870 871 872 873
				 * 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.
874
				 */
875
				int32		tuple_width;
876

877
				tuple_width = get_rel_data_width(rel, attr_widths);
878
				tuple_width += MAXALIGN(SizeofHeapTupleHeader);
879
				tuple_width += sizeof(ItemIdData);
880
				/* note: integer division is intentional here */
881
				density = (BLCKSZ - SizeOfPageHeaderData) / tuple_width;
882 883
			}
			*tuples = rint(density * (double) curpages);
884 885 886 887 888 889 890 891 892 893 894 895 896

			/*
			 * We use relallvisible as-is, rather than scaling it up like we
			 * do for the pages and tuples counts, on the theory that any
			 * pages added since the last VACUUM are most likely not marked
			 * all-visible.  But costsize.c wants it converted to a fraction.
			 */
			if (relallvisible == 0 || curpages <= 0)
				*allvisfrac = 0;
			else if ((double) relallvisible >= curpages)
				*allvisfrac = 1;
			else
				*allvisfrac = (double) relallvisible / curpages;
897 898 899 900 901
			break;
		case RELKIND_SEQUENCE:
			/* Sequences always have a known size */
			*pages = 1;
			*tuples = 1;
902
			*allvisfrac = 0;
903
			break;
904 905 906 907
		case RELKIND_FOREIGN_TABLE:
			/* Just use whatever's in pg_class */
			*pages = rel->rd_rel->relpages;
			*tuples = rel->rd_rel->reltuples;
908
			*allvisfrac = 0;
909
			break;
910 911 912 913
		default:
			/* else it has no disk storage; probably shouldn't get here? */
			*pages = 0;
			*tuples = 0;
914
			*allvisfrac = 0;
915 916 917 918
			break;
	}
}

919

920 921 922 923
/*
 * get_rel_data_width
 *
 * Estimate the average width of (the data part of) the relation's tuples.
924 925 926
 *
 * If attr_widths isn't NULL, it points to the zero-index entry of the
 * relation's attr_widths[] cache; use and update that cache as appropriate.
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
 *
 * 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;
946 947 948 949 950 951 952 953

		/* use previously cached data, if any */
		if (attr_widths != NULL && attr_widths[i] > 0)
		{
			tuple_width += attr_widths[i];
			continue;
		}

954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
		/* 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
 *
972 973
 * External API for get_rel_data_width: same behavior except we have to
 * open the relcache entry.
974 975
 */
int32
976
get_relation_data_width(Oid relid, int32 *attr_widths)
977 978 979 980 981 982 983
{
	int32		result;
	Relation	relation;

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

984
	result = get_rel_data_width(relation, attr_widths);
985 986 987 988 989 990 991

	heap_close(relation, NoLock);

	return result;
}


992 993 994
/*
 * get_relation_constraints
 *
995
 * Retrieve the validated CHECK constraint expressions of the given relation.
996 997 998 999 1000 1001
 *
 * 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.
 *
1002 1003 1004
 * If include_notnull is true, "col IS NOT NULL" expressions are generated
 * and added to the result for each column that's marked attnotnull.
 *
1005 1006 1007 1008
 * 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.
 */
1009
static List *
1010 1011
get_relation_constraints(PlannerInfo *root,
						 Oid relationObjectId, RelOptInfo *rel,
1012
						 bool include_notnull)
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026
{
	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 已提交
1027 1028
		int			num_check = constr->num_check;
		int			i;
1029 1030 1031

		for (i = 0; i < num_check; i++)
		{
B
Bruce Momjian 已提交
1032
			Node	   *cexpr;
1033

1034 1035 1036 1037 1038 1039 1040
			/*
			 * If this constraint hasn't been fully validated yet, we must
			 * ignore it here.
			 */
			if (!constr->check[i].ccvalid)
				continue;

1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
			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.)
			 */
1053
			cexpr = eval_const_expressions(root, cexpr);
1054 1055 1056 1057 1058 1059 1060 1061

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

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

			/*
B
Bruce Momjian 已提交
1062 1063
			 * Finally, convert to implicit-AND format (that is, a List) and
			 * append the resulting item(s) to our output list.
1064 1065 1066 1067
			 */
			result = list_concat(result,
								 make_ands_implicit((Expr *) cexpr));
		}
1068 1069 1070 1071

		/* Add NOT NULL constraints in expression form, if requested */
		if (include_notnull && constr->has_not_null)
		{
1072
			int			natts = relation->rd_att->natts;
1073 1074 1075 1076 1077 1078 1079

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

				if (att->attnotnull && !att->attisdropped)
				{
1080
					NullTest   *ntest = makeNode(NullTest);
1081 1082 1083 1084 1085

					ntest->arg = (Expr *) makeVar(varno,
												  i,
												  att->atttypid,
												  att->atttypmod,
P
Peter Eisentraut 已提交
1086
												  att->attcollation,
1087 1088
												  0);
					ntest->nulltesttype = IS_NOT_NULL;
1089
					ntest->argisrow = type_is_rowtype(att->atttypid);
1090
					ntest->location = -1;
1091 1092 1093 1094
					result = lappend(result, ntest);
				}
			}
		}
1095 1096 1097 1098 1099 1100 1101 1102
	}

	heap_close(relation, NoLock);

	return result;
}


1103 1104 1105
/*
 * relation_excluded_by_constraints
 *
1106 1107
 * Detect whether the relation need not be scanned because it has either
 * self-inconsistent restrictions, or restrictions inconsistent with the
1108
 * relation's validated CHECK constraints.
1109
 *
1110 1111 1112
 * Note: this examines only rel->relid, rel->reloptkind, and
 * rel->baserestrictinfo; therefore it can be called before filling in
 * other fields of the RelOptInfo.
1113 1114
 */
bool
1115 1116
relation_excluded_by_constraints(PlannerInfo *root,
								 RelOptInfo *rel, RangeTblEntry *rte)
1117
{
1118
	List	   *safe_restrictions;
1119
	List	   *constraint_pred;
1120 1121
	List	   *safe_constraints;
	ListCell   *lc;
1122

1123 1124 1125
	/* Skip the test if constraint exclusion is disabled for the rel */
	if (constraint_exclusion == CONSTRAINT_EXCLUSION_OFF ||
		(constraint_exclusion == CONSTRAINT_EXCLUSION_PARTITION &&
1126 1127 1128 1129
		 !(rel->reloptkind == RELOPT_OTHER_MEMBER_REL ||
		   (root->hasInheritedTarget &&
			rel->reloptkind == RELOPT_BASEREL &&
			rel->relid == root->parse->resultRelation))))
1130 1131
		return false;

1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
	/*
	 * 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;

1152 1153 1154 1155
	/* Only plain relations have constraints */
	if (rte->rtekind != RTE_RELATION || rte->inh)
		return false;

1156
	/*
B
Bruce Momjian 已提交
1157
	 * OK to fetch the constraint expressions.  Include "col IS NOT NULL"
1158 1159
	 * expressions for attnotnull columns, in case we can refute those.
	 */
1160
	constraint_pred = get_relation_constraints(root, rte->relid, rel, true);
1161 1162 1163 1164

	/*
	 * 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 已提交
1165 1166 1167
	 * 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.
1168
	 */
1169 1170 1171
	safe_constraints = NIL;
	foreach(lc, constraint_pred)
	{
B
Bruce Momjian 已提交
1172
		Node	   *pred = (Node *) lfirst(lc);
1173 1174 1175 1176

		if (!contain_mutable_functions(pred))
			safe_constraints = lappend(safe_constraints, pred);
	}
1177 1178 1179 1180 1181

	/*
	 * 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.
1182
	 *
B
Bruce Momjian 已提交
1183 1184 1185
	 * 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
1186
	 * deductions with the nonvolatile parts.
1187
	 */
1188
	if (predicate_refuted_by(safe_constraints, rel->baserestrictinfo))
1189 1190 1191 1192 1193 1194
		return true;

	return false;
}


1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
/*
 * 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 已提交
1205
 * for a tlist that includes vars of no-longer-existent types.  In theory we
1206 1207 1208 1209
 * 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.
1210
 *
1211
 * We also support building a "physical" tlist for subqueries, functions,
1212 1213
 * values lists, and CTEs, since the same optimization can occur in
 * SubqueryScan, FunctionScan, ValuesScan, CteScan, and WorkTableScan nodes.
1214 1215
 */
List *
1216
build_physical_tlist(PlannerInfo *root, RelOptInfo *rel)
1217
{
1218
	List	   *tlist = NIL;
1219
	Index		varno = rel->relid;
1220
	RangeTblEntry *rte = planner_rt_fetch(varno, root);
1221
	Relation	relation;
1222 1223 1224
	Query	   *subquery;
	Var		   *var;
	ListCell   *l;
1225 1226
	int			attrno,
				numattrs;
1227
	List	   *colvars;
1228

1229 1230 1231
	switch (rte->rtekind)
	{
		case RTE_RELATION:
1232 1233
			/* Assume we already have adequate lock */
			relation = heap_open(rte->relid, NoLock);
1234

1235 1236 1237 1238
			numattrs = RelationGetNumberOfAttributes(relation);
			for (attrno = 1; attrno <= numattrs; attrno++)
			{
				Form_pg_attribute att_tup = relation->rd_att->attrs[attrno - 1];
1239

1240 1241 1242 1243 1244 1245
				if (att_tup->attisdropped)
				{
					/* found a dropped col, so punt */
					tlist = NIL;
					break;
				}
1246

1247 1248 1249 1250
				var = makeVar(varno,
							  attrno,
							  att_tup->atttypid,
							  att_tup->atttypmod,
P
Peter Eisentraut 已提交
1251
							  att_tup->attcollation,
1252 1253 1254 1255 1256 1257 1258 1259
							  0);

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

1261
			heap_close(relation, NoLock);
1262 1263
			break;

1264 1265 1266 1267 1268 1269
		case RTE_SUBQUERY:
			subquery = rte->subquery;
			foreach(l, subquery->targetList)
			{
				TargetEntry *tle = (TargetEntry *) lfirst(l);

1270 1271 1272 1273
				/*
				 * A resjunk column of the subquery can be reflected as
				 * resjunk in the physical tlist; we need not punt.
				 */
1274
				var = makeVarFromTargetEntry(varno, tle);
1275 1276 1277 1278 1279 1280 1281 1282

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

1284
		case RTE_FUNCTION:
1285 1286 1287
		case RTE_VALUES:
		case RTE_CTE:
			/* Not all of these can have dropped cols, but share code anyway */
1288
			expandRTE(rte, varno, 0, -1, true /* include dropped */ ,
1289 1290 1291 1292
					  NULL, &colvars);
			foreach(l, colvars)
			{
				var = (Var *) lfirst(l);
B
Bruce Momjian 已提交
1293

1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
				/*
				 * 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;

1312 1313 1314 1315 1316 1317
		default:
			/* caller error */
			elog(ERROR, "unsupported RTE kind %d in build_physical_tlist",
				 (int) rte->rtekind);
			break;
	}
1318

1319
	return tlist;
1320 1321
}

1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
/*
 * build_index_tlist
 *
 * Build a targetlist representing the columns of the specified index.
 * Each column is represented by a Var for the corresponding base-relation
 * column, or an expression in base-relation Vars, as appropriate.
 *
 * There are never any dropped columns in indexes, so unlike
 * build_physical_tlist, we need no failure case.
 */
static List *
build_index_tlist(PlannerInfo *root, IndexOptInfo *index,
				  Relation heapRelation)
{
	List	   *tlist = NIL;
	Index		varno = index->rel->relid;
	ListCell   *indexpr_item;
	int			i;

	indexpr_item = list_head(index->indexprs);
	for (i = 0; i < index->ncolumns; i++)
	{
		int			indexkey = index->indexkeys[i];
		Expr	   *indexvar;

		if (indexkey != 0)
		{
			/* simple column */
			Form_pg_attribute att_tup;

			if (indexkey < 0)
				att_tup = SystemAttributeDefinition(indexkey,
1354
										   heapRelation->rd_rel->relhasoids);
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385
			else
				att_tup = heapRelation->rd_att->attrs[indexkey - 1];

			indexvar = (Expr *) makeVar(varno,
										indexkey,
										att_tup->atttypid,
										att_tup->atttypmod,
										att_tup->attcollation,
										0);
		}
		else
		{
			/* expression column */
			if (indexpr_item == NULL)
				elog(ERROR, "wrong number of index expressions");
			indexvar = (Expr *) lfirst(indexpr_item);
			indexpr_item = lnext(indexpr_item);
		}

		tlist = lappend(tlist,
						makeTargetEntry(indexvar,
										i + 1,
										NULL,
										false));
	}
	if (indexpr_item != NULL)
		elog(ERROR, "wrong number of index expressions");

	return tlist;
}

1386
/*
1387
 * restriction_selectivity
1388
 *
1389
 * Returns the selectivity of a specified restriction operator clause.
1390 1391 1392
 * This code executes registered procedures stored in the
 * operator relation, by calling the function manager.
 *
1393
 * See clause_selectivity() for the meaning of the additional parameters.
1394
 */
1395
Selectivity
1396
restriction_selectivity(PlannerInfo *root,
1397
						Oid operatorid,
1398
						List *args,
1399
						Oid inputcollid,
1400
						int varRelid)
1401
{
1402
	RegProcedure oprrest = get_oprrest(operatorid);
1403 1404
	float8		result;

1405
	/*
1406 1407
	 * if the oprrest procedure is missing for whatever reason, use a
	 * selectivity of 0.5
1408 1409 1410 1411
	 */
	if (!oprrest)
		return (Selectivity) 0.5;

1412 1413 1414 1415 1416 1417
	result = DatumGetFloat8(OidFunctionCall4Coll(oprrest,
												 inputcollid,
												 PointerGetDatum(root),
												 ObjectIdGetDatum(operatorid),
												 PointerGetDatum(args),
												 Int32GetDatum(varRelid)));
1418 1419

	if (result < 0.0 || result > 1.0)
1420
		elog(ERROR, "invalid restriction selectivity: %f", result);
1421 1422

	return (Selectivity) result;
1423 1424 1425
}

/*
1426
 * join_selectivity
1427
 *
1428 1429 1430
 * Returns the selectivity of a specified join operator clause.
 * This code executes registered procedures stored in the
 * operator relation, by calling the function manager.
1431
 */
1432
Selectivity
1433
join_selectivity(PlannerInfo *root,
1434
				 Oid operatorid,
1435
				 List *args,
1436
				 Oid inputcollid,
1437 1438
				 JoinType jointype,
				 SpecialJoinInfo *sjinfo)
1439
{
1440
	RegProcedure oprjoin = get_oprjoin(operatorid);
1441 1442
	float8		result;

1443
	/*
1444 1445
	 * if the oprjoin procedure is missing for whatever reason, use a
	 * selectivity of 0.5
1446 1447 1448 1449
	 */
	if (!oprjoin)
		return (Selectivity) 0.5;

1450 1451 1452 1453 1454 1455 1456
	result = DatumGetFloat8(OidFunctionCall5Coll(oprjoin,
												 inputcollid,
												 PointerGetDatum(root),
												 ObjectIdGetDatum(operatorid),
												 PointerGetDatum(args),
												 Int16GetDatum(jointype),
												 PointerGetDatum(sjinfo)));
1457 1458

	if (result < 0.0 || result > 1.0)
1459
		elog(ERROR, "invalid join selectivity: %f", result);
1460 1461

	return (Selectivity) result;
1462 1463
}

1464 1465 1466 1467 1468 1469
/*
 * 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.
1470 1471 1472 1473 1474
 *
 * This function does not check the index's indimmediate property, which
 * means that uniqueness may transiently fail to hold intra-transaction.
 * That's appropriate when we are making statistical estimates, but beware
 * of using this for any correctness proofs.
1475 1476 1477 1478
 */
bool
has_unique_index(RelOptInfo *rel, AttrNumber attno)
{
1479
	ListCell   *ilist;
1480 1481 1482 1483 1484 1485

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

		/*
B
Bruce Momjian 已提交
1486
		 * Note: ignore partial indexes, since they don't allow us to conclude
1487
		 * that all attr values are distinct, *unless* they are marked predOK
1488 1489 1490 1491
		 * 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.
1492 1493
		 */
		if (index->unique &&
1494
			index->ncolumns == 1 &&
1495
			index->indexkeys[0] == attno &&
1496
			(index->indpred == NIL || index->predOK))
1497 1498 1499 1500
			return true;
	}
	return false;
}