heap.c 42.2 KB
Newer Older
1 2 3
/*-------------------------------------------------------------------------
 *
 * heap.c--
4
 *	  code to create and destroy POSTGRES heap relations
5 6 7 8 9
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
B
Bruce Momjian 已提交
10
 *	  $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.48 1998/04/27 04:04:47 momjian Exp $
11 12
 *
 * INTERFACE ROUTINES
13
 *		heap_create()			- Create an uncataloged heap relation
14 15
 *		heap_create_with_catalog() - Create a cataloged relation
 *		heap_destroy_with_catalog()			- Removes named relation from catalogs
16 17
 *
 * NOTES
18
 *	  this code taken from access/heap/create.c, which contains
19
 *	  the old heap_create_with_catalogr, amcreate, and amdestroy.
20 21
 *	  those routines will soon call these routines using the function
 *	  manager,
22 23 24
 *	  just like the poorly named "NewXXX" routines do.	The
 *	  "New" routines are all going to die soon, once and for all!
 *		-cim 1/13/91
25 26 27
 *
 *-------------------------------------------------------------------------
 */
B
Bruce Momjian 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
#include "postgres.h"

#include "access/heapam.h"
#include "catalog/catalog.h"
#include "catalog/catname.h"
#include "catalog/heap.h"
#include "catalog/index.h"
#include "catalog/indexing.h"
#include "catalog/pg_attrdef.h"
#include "catalog/pg_index.h"
#include "catalog/pg_inherits.h"
#include "catalog/pg_ipl.h"
#include "catalog/pg_relcheck.h"
#include "catalog/pg_type.h"
#include "commands/trigger.h"
#include "fmgr.h"
#include "miscadmin.h"
#include "nodes/plannodes.h"
#include "optimizer/tlist.h"
#include "parser/parse_expr.h"
#include "parser/parse_node.h"
#include "parser/parse_type.h"
#include "rewrite/rewriteRemove.h"
#include "storage/bufmgr.h"
#include "storage/lmgr.h"
#include "storage/smgr.h"
#include "tcop/tcopprot.h"
#include "utils/builtins.h"
#include "utils/mcxt.h"
#include "utils/relcache.h"
#include "utils/tqual.h"

M
Marc G. Fournier 已提交
60
#ifndef HAVE_MEMMOVE
61
#include <regex/utils.h>
M
Marc G. Fournier 已提交
62
#else
63
#include <string.h>
M
Marc G. Fournier 已提交
64
#endif
65

66 67 68
static void
AddPgRelationTuple(Relation pg_class_desc,
				 Relation new_rel_desc, Oid new_rel_oid, unsigned natts);
69 70 71 72 73 74 75 76 77 78 79
static void AddToTempRelList(Relation r);
static void DeletePgAttributeTuples(Relation rdesc);
static void DeletePgRelationTuple(Relation rdesc);
static void DeletePgTypeTuple(Relation rdesc);
static int	RelationAlreadyExists(Relation pg_class_desc, char relname[]);
static void RelationRemoveIndexes(Relation relation);
static void RelationRemoveInheritance(Relation relation);
static void RemoveFromTempRelList(Relation r);
static void addNewRelationType(char *typeName, Oid new_rel_oid);
static void StoreConstraints(Relation rel);
static void RemoveConstraints(Relation rel);
80 81


82
/* ----------------------------------------------------------------
83
 *				XXX UGLY HARD CODED BADNESS FOLLOWS XXX
84
 *
85 86
 *		these should all be moved to someplace in the lib/catalog
 *		module, if not obliterated first.
87 88 89 90 91 92
 * ----------------------------------------------------------------
 */


/*
 * Note:
93 94 95 96
 *		Should the executor special case these attributes in the future?
 *		Advantage:	consume 1/2 the space in the ATTRIBUTE relation.
 *		Disadvantage:  having rules to compute values in these tuples may
 *				be more difficult if not impossible.
97 98
 */

99 100
static FormData_pg_attribute a1 = {
	0xffffffff, {"ctid"}, 27l, 0l, sizeof(ItemPointerData),
B
Bruce Momjian 已提交
101
	SelfItemPointerAttributeNumber, 0, -1, -1, '\0', '\0', 'i', '\0', '\0'
102 103
};

104 105
static FormData_pg_attribute a2 = {
	0xffffffff, {"oid"}, 26l, 0l, sizeof(Oid),
B
Bruce Momjian 已提交
106
	ObjectIdAttributeNumber, 0, -1, -1, '\001', '\0', 'i', '\0', '\0'
107 108
};

109 110
static FormData_pg_attribute a3 = {
	0xffffffff, {"xmin"}, 28l, 0l, sizeof(TransactionId),
B
Bruce Momjian 已提交
111
	MinTransactionIdAttributeNumber, 0, -1, -1, '\0', '\0', 'i', '\0', '\0'
112 113
};

114 115
static FormData_pg_attribute a4 = {
	0xffffffff, {"cmin"}, 29l, 0l, sizeof(CommandId),
B
Bruce Momjian 已提交
116
	MinCommandIdAttributeNumber, 0, -1, -1, '\001', '\0', 'i', '\0', '\0'
117 118
};

119 120
static FormData_pg_attribute a5 = {
	0xffffffff, {"xmax"}, 28l, 0l, sizeof(TransactionId),
B
Bruce Momjian 已提交
121
	MaxTransactionIdAttributeNumber, 0, -1, -1, '\0', '\0', 'i', '\0', '\0'
122 123
};

124 125
static FormData_pg_attribute a6 = {
	0xffffffff, {"cmax"}, 29l, 0l, sizeof(CommandId),
B
Bruce Momjian 已提交
126
	MaxCommandIdAttributeNumber, 0, -1, -1, '\001', '\0', 'i', '\0', '\0'
127 128
};

129
static AttributeTupleForm HeapAtt[] =
V
Vadim B. Mikheev 已提交
130
{&a1, &a2, &a3, &a4, &a5, &a6};
131 132

/* ----------------------------------------------------------------
133
 *				XXX END OF UGLY HARD CODED BADNESS XXX
134 135 136 137 138 139 140
 * ----------------------------------------------------------------
 */

/* the tempRelList holds
   the list of temporary uncatalogued relations that are created.
   these relations should be destroyed at the end of transactions
*/
141 142
typedef struct tempRelList
{
143 144 145
	Relation   *rels;			/* array of relation descriptors */
	int			num;			/* number of temporary relations */
	int			size;			/* size of space allocated for the rels
146
								 * array */
147
} TempRelList;
148

149
#define TEMP_REL_LIST_SIZE	32
150

151
static TempRelList *tempRels = NULL;
152 153 154


/* ----------------------------------------------------------------
155
 *		heap_create		- Create an uncataloged heap relation
156
 *
157 158 159
 *		Fields relpages, reltuples, reltuples, relkeys, relhistory,
 *		relisindexed, and relkind of rdesc->rd_rel are initialized
 *		to all zeros, as are rd_last and rd_hook.  Rd_refcnt is set to 1.
160
 *
161 162 163 164
 *		Remove the system relation specific code to elsewhere eventually.
 *
 *		Eventually, must place information about this temporary relation
 *		into the transaction context block.
165 166
 *
 *
167
 * if heap_create is called with "" as the name, then heap_create will create
168
 * a temporary name "temp_$RELOID" for the relation
169 170 171
 * ----------------------------------------------------------------
 */
Relation
172
heap_create(char *name,
173
			TupleDesc tupDesc)
174
{
175
	unsigned	i;
176 177 178 179 180 181 182 183
	Oid			relid;
	Relation	rdesc;
	int			len;
	bool		nailme = false;
	char	   *relname = name;
	char		tempname[40];
	int			isTemp = 0;
	int			natts = tupDesc->natts;
184 185 186 187

/*	  AttributeTupleForm *att = tupDesc->attrs; */

	extern GlobalMemory CacheCxt;
188
	MemoryContext oldcxt;
189 190 191 192 193 194 195 196

	/* ----------------
	 *	sanity checks
	 * ----------------
	 */
	AssertArg(natts > 0);

	if (IsSystemRelationName(relname) && IsNormalProcessingMode())
197
	{
B
Bruce Momjian 已提交
198
		elog(ERROR,
199
		 "Illegal class name: %s -- pg_ is reserved for system catalogs",
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
			 relname);
	}

	/* ----------------
	 *	switch to the cache context so that we don't lose
	 *	allocations at the end of this transaction, I guess.
	 *	-cim 6/14/90
	 * ----------------
	 */
	if (!CacheCxt)
		CacheCxt = CreateGlobalMemory("Cache");

	oldcxt = MemoryContextSwitchTo((MemoryContext) CacheCxt);

	/* ----------------
	 *	real ugly stuff to assign the proper relid in the relation
	 *	descriptor follows.
	 * ----------------
	 */
	if (!strcmp(RelationRelationName, relname))
	{
		relid = RelOid_pg_class;
		nailme = true;
223
	}
224
	else if (!strcmp(AttributeRelationName, relname))
225
	{
226 227
		relid = RelOid_pg_attribute;
		nailme = true;
228
	}
229
	else if (!strcmp(ProcedureRelationName, relname))
230
	{
231 232
		relid = RelOid_pg_proc;
		nailme = true;
233
	}
234
	else if (!strcmp(TypeRelationName, relname))
235
	{
236 237
		relid = RelOid_pg_type;
		nailme = true;
238
	}
239
	else
240
	{
241 242 243 244 245 246 247 248
		relid = newoid();

		if (name[0] == '\0')
		{
			sprintf(tempname, "temp_%d", relid);
			relname = tempname;
			isTemp = 1;
		}
249
	}
250 251 252 253 254 255 256 257 258 259

	/* ----------------
	 *	allocate a new relation descriptor.
	 *
	 *	XXX the length computation may be incorrect, handle elsewhere
	 * ----------------
	 */
	len = sizeof(RelationData);

	rdesc = (Relation) palloc(len);
B
Bruce Momjian 已提交
260
	MemSet((char *) rdesc, 0, len);
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284

	/* ----------
	   create a new tuple descriptor from the one passed in
	*/
	rdesc->rd_att = CreateTupleDescCopyConstr(tupDesc);

	/* ----------------
	 *	initialize the fields of our new relation descriptor
	 * ----------------
	 */

	/* ----------------
	 *	nail the reldesc if this is a bootstrap create reln and
	 *	we may need it in the cache later on in the bootstrap
	 *	process so we don't ever want it kicked out.  e.g. pg_attribute!!!
	 * ----------------
	 */
	if (nailme)
		rdesc->rd_isnailed = true;

	RelationSetReferenceCount(rdesc, 1);

	rdesc->rd_rel = (Form_pg_class) palloc(sizeof *rdesc->rd_rel);

B
Bruce Momjian 已提交
285
	MemSet((char *) rdesc->rd_rel, 0,
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
		   sizeof *rdesc->rd_rel);
	namestrcpy(&(rdesc->rd_rel->relname), relname);
	rdesc->rd_rel->relkind = RELKIND_UNCATALOGED;
	rdesc->rd_rel->relnatts = natts;
	if (tupDesc->constr)
		rdesc->rd_rel->relchecks = tupDesc->constr->num_check;

	for (i = 0; i < natts; i++)
	{
		rdesc->rd_att->attrs[i]->attrelid = relid;
	}

	rdesc->rd_id = relid;

	if (nailme)
	{
		/* for system relations, set the reltype field here */
		rdesc->rd_rel->reltype = relid;
	}

	/* ----------------
	 *	remember if this is a temp relation
	 * ----------------
	 */

	rdesc->rd_istemp = isTemp;

	/* ----------------
	 *	have the storage manager create the relation.
	 * ----------------
	 */

	rdesc->rd_tmpunlinked = TRUE;		/* change once table is created */
B
Bruce Momjian 已提交
319
	rdesc->rd_fd = (File) smgrcreate(DEFAULT_SMGR, rdesc);
320 321 322 323 324 325 326 327 328 329 330 331 332 333
	rdesc->rd_tmpunlinked = FALSE;

	RelationRegisterRelation(rdesc);

	MemoryContextSwitchTo(oldcxt);

	/*
	 * add all temporary relations to the tempRels list so they can be
	 * properly disposed of at the end of transaction
	 */
	if (isTemp)
		AddToTempRelList(rdesc);

	return (rdesc);
334 335 336 337
}


/* ----------------------------------------------------------------
338
 *		heap_create_with_catalog		- Create a cataloged relation
339
 *
340
 *		this is done in 6 steps:
341
 *
342 343
 *		1) CheckAttributeNames() is used to make certain the tuple
 *		   descriptor contains a valid set of attribute names
344
 *
345 346 347
 *		2) pg_class is opened and RelationAlreadyExists()
 *		   preforms a scan to ensure that no relation with the
 *		   same name already exists.
348
 *
349
 *		3) heap_create_with_catalogr() is called to create the new relation
350
 *		   on disk.
351
 *
352 353
 *		4) TypeDefine() is called to define a new type corresponding
 *		   to the new relation.
354
 *
355 356
 *		5) AddNewAttributeTuples() is called to register the
 *		   new relation's schema in pg_attribute.
357
 *
358 359
 *		6) AddPgRelationTuple() is called to register the
 *		   relation itself in the catalogs.
360
 *
361 362 363 364
 *		7) StoreConstraints is called ()		- vadim 08/22/97
 *
 *		8) the relations are closed and the new relation's oid
 *		   is returned.
365 366
 *
 * old comments:
367 368 369 370 371 372 373 374 375 376 377 378 379 380
 *		A new relation is inserted into the RELATION relation
 *		with the specified attribute(s) (newly inserted into
 *		the ATTRIBUTE relation).  How does concurrency control
 *		work?  Is it automatic now?  Expects the caller to have
 *		attname, atttypid, atttyparg, attproc, and attlen domains filled.
 *		Create fills the attnum domains sequentually from zero,
 *		fills the attdisbursion domains with zeros, and fills the
 *		attrelid fields with the relid.
 *
 *		scan relation catalog for name conflict
 *		scan type catalog for typids (if not arg)
 *		create and insert attribute(s) into attribute catalog
 *		create new relation
 *		insert new relation into attribute catalog
381
 *
382
 *		Should coordinate with heap_create_with_catalogr(). Either
383
 *		it should not be called or there should be a way to prevent
384 385 386 387
 *		the relation from being removed at the end of the
 *		transaction if it is successful ('u'/'r' may be enough).
 *		Also, if the transaction does not commit, then the
 *		relation should be removed.
388
 *
389 390
 *		XXX amcreate ignores "off" when inserting (for now).
 *		XXX amcreate (like the other utilities) needs to understand indexes.
391 392 393 394 395
 *
 * ----------------------------------------------------------------
 */

/* --------------------------------
396
 *		CheckAttributeNames
397
 *
398 399
 *		this is used to make certain the tuple descriptor contains a
 *		valid set of attribute names.  a problem simply generates
B
Bruce Momjian 已提交
400
 *		elog(ERROR) which aborts the current transaction.
401 402 403 404 405
 * --------------------------------
 */
static void
CheckAttributeNames(TupleDesc tupdesc)
{
406 407 408
	unsigned	i;
	unsigned	j;
	int			natts = tupdesc->natts;
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424

	/* ----------------
	 *	first check for collision with system attribute names
	 * ----------------
	 *
	 *	 also, warn user if attribute to be created has
	 *	 an unknown typid  (usually as a result of a 'retrieve into'
	 *	  - jolly
	 */
	for (i = 0; i < natts; i += 1)
	{
		for (j = 0; j < sizeof HeapAtt / sizeof HeapAtt[0]; j += 1)
		{
			if (nameeq(&(HeapAtt[j]->attname),
					   &(tupdesc->attrs[i]->attname)))
			{
B
Bruce Momjian 已提交
425
				elog(ERROR,
426 427 428 429 430 431 432 433 434 435
					 "create: system attribute named \"%s\"",
					 HeapAtt[j]->attname.data);
			}
		}
		if (tupdesc->attrs[i]->atttypid == UNKNOWNOID)
		{
			elog(NOTICE,
				 "create: attribute named \"%s\" has an unknown type",
				 tupdesc->attrs[i]->attname.data);
		}
436
	}
437 438 439 440 441 442 443 444 445 446 447 448

	/* ----------------
	 *	next check for repeated attribute names
	 * ----------------
	 */
	for (i = 1; i < natts; i += 1)
	{
		for (j = 0; j < i; j += 1)
		{
			if (nameeq(&(tupdesc->attrs[j]->attname),
					   &(tupdesc->attrs[i]->attname)))
			{
B
Bruce Momjian 已提交
449
				elog(ERROR,
450 451 452 453
					 "create: repeated attribute \"%s\"",
					 tupdesc->attrs[j]->attname.data);
			}
		}
454 455 456 457
	}
}

/* --------------------------------
458
 *		RelationAlreadyExists
459
 *
460 461 462
 *		this preforms a scan of pg_class to ensure that
 *		no relation with the same name already exists.	The caller
 *		has to open pg_class and pass an open descriptor.
463 464
 * --------------------------------
 */
465
static int
466 467
RelationAlreadyExists(Relation pg_class_desc, char relname[])
{
468 469 470
	ScanKeyData key;
	HeapScanDesc pg_class_scan;
	HeapTuple	tup;
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

	/*
	 * If this is not bootstrap (initdb) time, use the catalog index on
	 * pg_class.
	 */

	if (!IsBootstrapProcessingMode())
	{
		tup = ClassNameIndexScan(pg_class_desc, relname);
		if (HeapTupleIsValid(tup))
		{
			pfree(tup);
			return ((int) true);
		}
		else
			return ((int) false);
	}

	/* ----------------
	 *	At bootstrap time, we have to do this the hard way.  Form the
	 *	scan key.
	 * ----------------
	 */
	ScanKeyEntryInitialize(&key,
						   0,
						   (AttrNumber) Anum_pg_class_relname,
B
Bruce Momjian 已提交
497
						   (RegProcedure) F_NAMEEQ,
498 499 500 501 502 503 504 505
						   (Datum) relname);

	/* ----------------
	 *	begin the scan
	 * ----------------
	 */
	pg_class_scan = heap_beginscan(pg_class_desc,
								   0,
506
								   false,
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
								   1,
								   &key);

	/* ----------------
	 *	get a tuple.  if the tuple is NULL then it means we
	 *	didn't find an existing relation.
	 * ----------------
	 */
	tup = heap_getnext(pg_class_scan, 0, (Buffer *) NULL);

	/* ----------------
	 *	end the scan and return existance of relation.
	 * ----------------
	 */
	heap_endscan(pg_class_scan);

	return
		(PointerIsValid(tup) == true);
525 526 527
}

/* --------------------------------
528
 *		AddNewAttributeTuples
529
 *
530 531
 *		this registers the new relation's schema by adding
 *		tuples to pg_attribute.
532 533 534 535
 * --------------------------------
 */
static void
AddNewAttributeTuples(Oid new_rel_oid,
536
					  TupleDesc tupdesc)
537
{
538
	AttributeTupleForm *dpp;
539 540 541 542 543 544
	unsigned	i;
	HeapTuple	tup;
	Relation	rdesc;
	bool		hasindex;
	Relation	idescs[Num_pg_attr_indices];
	int			natts = tupdesc->natts;
545 546 547 548 549 550 551 552 553 554 555 556 557 558

	/* ----------------
	 *	open pg_attribute
	 * ----------------
	 */
	rdesc = heap_openr(AttributeRelationName);

	/* -----------------
	 * Check if we have any indices defined on pg_attribute.
	 * -----------------
	 */
	Assert(rdesc);
	Assert(rdesc->rd_rel);
	hasindex = RelationGetRelationTupleForm(rdesc)->relhasindex;
559
	if (hasindex)
560 561 562 563 564 565 566 567 568 569 570 571 572 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
		CatalogOpenIndices(Num_pg_attr_indices, Name_pg_attr_indices, idescs);

	/* ----------------
	 *	initialize tuple descriptor.  Note we use setheapoverride()
	 *	so that we can see the effects of our TypeDefine() done
	 *	previously.
	 * ----------------
	 */
	setheapoverride(true);
	fillatt(tupdesc);
	setheapoverride(false);

	/* ----------------
	 *	first we add the user attributes..
	 * ----------------
	 */
	dpp = tupdesc->attrs;
	for (i = 0; i < natts; i++)
	{
		(*dpp)->attrelid = new_rel_oid;
		(*dpp)->attdisbursion = 0;

		tup = heap_addheader(Natts_pg_attribute,
							 ATTRIBUTE_TUPLE_SIZE,
							 (char *) *dpp);

		heap_insert(rdesc, tup);
		if (hasindex)
			CatalogIndexInsert(idescs, Num_pg_attr_indices, rdesc, tup);

		pfree(tup);
		dpp++;
	}

	/* ----------------
	 *	next we add the system attributes..
	 * ----------------
	 */
	dpp = HeapAtt;
	for (i = 0; i < -1 - FirstLowInvalidHeapAttributeNumber; i++)
	{
		(*dpp)->attrelid = new_rel_oid;
		/* (*dpp)->attdisbursion = 0;	   unneeded */

		tup = heap_addheader(Natts_pg_attribute,
							 ATTRIBUTE_TUPLE_SIZE,
							 (char *) *dpp);

		heap_insert(rdesc, tup);

		if (hasindex)
			CatalogIndexInsert(idescs, Num_pg_attr_indices, rdesc, tup);

		pfree(tup);
		dpp++;
	}

	heap_close(rdesc);

	/*
	 * close pg_attribute indices
	 */
622
	if (hasindex)
623
		CatalogCloseIndices(Num_pg_attr_indices, idescs);
624 625 626
}

/* --------------------------------
627
 *		AddPgRelationTuple
628
 *
629 630
 *		this registers the new relation in the catalogs by
 *		adding a tuple to pg_class.
631 632
 * --------------------------------
 */
633
static void
634
AddPgRelationTuple(Relation pg_class_desc,
635 636 637
				   Relation new_rel_desc,
				   Oid new_rel_oid,
				   unsigned natts)
638
{
639 640 641 642 643 644
	Form_pg_class new_rel_reltup;
	HeapTuple	tup;
	Relation	idescs[Num_pg_class_indices];
	bool		isBootstrap;
	extern bool ItsSequenceCreation;	/* It's hack, I know... - vadim
										 * 03/28/97		*/
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 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

	/* ----------------
	 *	first we munge some of the information in our
	 *	uncataloged relation's relation descriptor.
	 * ----------------
	 */
	new_rel_reltup = new_rel_desc->rd_rel;

	/* CHECK should get new_rel_oid first via an insert then use XXX */
	/* new_rel_reltup->reltuples = 1; *//* XXX */

	new_rel_reltup->relowner = GetUserId();
	if (ItsSequenceCreation)
		new_rel_reltup->relkind = RELKIND_SEQUENCE;
	else
		new_rel_reltup->relkind = RELKIND_RELATION;
	new_rel_reltup->relnatts = natts;

	/* ----------------
	 *	now form a tuple to add to pg_class
	 *	XXX Natts_pg_class_fixed is a hack - see pg_class.h
	 * ----------------
	 */
	tup = heap_addheader(Natts_pg_class_fixed,
						 CLASS_TUPLE_SIZE,
						 (char *) new_rel_reltup);
	tup->t_oid = new_rel_oid;

	/* ----------------
	 *	finally insert the new tuple and free it.
	 *
	 *	Note: I have no idea why we do a
	 *			SetProcessingMode(BootstrapProcessing);
	 *		  here -cim 6/14/90
	 * ----------------
	 */
	isBootstrap = IsBootstrapProcessingMode() ? true : false;

	SetProcessingMode(BootstrapProcessing);

	heap_insert(pg_class_desc, tup);

	if (!isBootstrap)
	{

		/*
		 * First, open the catalog indices and insert index tuples for the
		 * new relation.
		 */

		CatalogOpenIndices(Num_pg_class_indices, Name_pg_class_indices, idescs);
		CatalogIndexInsert(idescs, Num_pg_class_indices, pg_class_desc, tup);
		CatalogCloseIndices(Num_pg_class_indices, idescs);

		/* now restore processing mode */
		SetProcessingMode(NormalProcessing);
	}

	pfree(tup);
704 705 706 707
}


/* --------------------------------
708
 *		addNewRelationType -
709
 *
710
 *		define a complex type corresponding to the new relation
711 712
 * --------------------------------
 */
713
static void
714 715
addNewRelationType(char *typeName, Oid new_rel_oid)
{
716
	Oid			new_type_oid;
717 718 719 720 721 722 723 724 725 726 727 728 729

	/*
	 * The sizes are set to oid size because it makes implementing sets
	 * MUCH easier, and no one (we hope) uses these fields to figure out
	 * how much space to allocate for the type. An oid is the type used
	 * for a set definition.  When a user requests a set, what they
	 * actually get is the oid of a tuple in the pg_proc catalog, so the
	 * size of the "set" is the size of an oid. Similarly, byval being
	 * true makes sets much easier, and it isn't used by anything else.
	 * Note the assumption that OIDs are the same size as int4s.
	 */
	new_type_oid = TypeCreate(typeName, /* type name */
							  new_rel_oid,		/* relation oid */
730 731
							  typeLen(typeidType(OIDOID)),		/* internal size */
							  typeLen(typeidType(OIDOID)),		/* external size */
732 733 734
							  'c',		/* type-type (catalog) */
							  ',',		/* default array delimiter */
							  "int4in", /* input procedure */
735 736 737
							  "int4out",		/* output procedure */
							  "int4in", /* receive procedure */
							  "int4out",		/* send procedure */
738 739 740 741
							  NULL,		/* array element type - irrelevent */
							  "-",		/* default type value */
							  (bool) 1, /* passed by value */
							  'i');		/* default alignment */
742 743 744
}

/* --------------------------------
745
 *		heap_create_with_catalog
746
 *
747
 *		creates a new cataloged relation.  see comments above.
748 749 750
 * --------------------------------
 */
Oid
751
heap_create_with_catalog(char relname[],
752
						 TupleDesc tupdesc)
753
{
754 755 756
	Relation	pg_class_desc;
	Relation	new_rel_desc;
	Oid			new_rel_oid;
757

758
	int			natts = tupdesc->natts;
759 760 761 762 763 764 765

	/* ----------------
	 *	sanity checks
	 * ----------------
	 */
	AssertState(IsNormalProcessingMode() || IsBootstrapProcessingMode());
	if (natts == 0 || natts > MaxHeapAttributeNumber)
B
Bruce Momjian 已提交
766
		elog(ERROR, "amcreate: from 1 to %d attributes must be specified",
767 768 769 770 771 772 773 774 775 776 777 778 779 780
			 MaxHeapAttributeNumber);

	CheckAttributeNames(tupdesc);

	/* ----------------
	 *	open pg_class and see that the relation doesn't
	 *	already exist.
	 * ----------------
	 */
	pg_class_desc = heap_openr(RelationRelationName);

	if (RelationAlreadyExists(pg_class_desc, relname))
	{
		heap_close(pg_class_desc);
B
Bruce Momjian 已提交
781
		elog(ERROR, "amcreate: %s relation already exists", relname);
782 783 784 785 786 787 788
	}

	/* ----------------
	 *	ok, relation does not already exist so now we
	 *	create an uncataloged relation and pull its relation oid
	 *	from the newly formed relation descriptor.
	 *
789
	 *	Note: The call to heap_create() does all the "real" work
790 791 792
	 *	of creating the disk file for the relation.
	 * ----------------
	 */
793
	new_rel_desc = heap_create(relname, tupdesc);
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828
	new_rel_oid = new_rel_desc->rd_att->attrs[0]->attrelid;

	/* ----------------
	 *	since defining a relation also defines a complex type,
	 *	we add a new system type corresponding to the new relation.
	 * ----------------
	 */
	addNewRelationType(relname, new_rel_oid);

	/* ----------------
	 *	now add tuples to pg_attribute for the attributes in
	 *	our new relation.
	 * ----------------
	 */
	AddNewAttributeTuples(new_rel_oid, tupdesc);

	/* ----------------
	 *	now update the information in pg_class.
	 * ----------------
	 */
	AddPgRelationTuple(pg_class_desc,
					   new_rel_desc,
					   new_rel_oid,
					   natts);

	StoreConstraints(new_rel_desc);

	/* ----------------
	 *	ok, the relation has been cataloged, so close our relations
	 *	and return the oid of the newly created relation.
	 *
	 *	SOMEDAY: fill the STATISTIC relation properly.
	 * ----------------
	 */
	heap_close(new_rel_desc);
829
	heap_close(pg_class_desc);
830 831

	return new_rel_oid;
832 833 834 835
}


/* ----------------------------------------------------------------
836
 *		heap_destroy_with_catalog	- removes all record of named relation from catalogs
837
 *
838 839 840 841 842 843 844 845
 *		1)	open relation, check for existence, etc.
 *		2)	remove inheritance information
 *		3)	remove indexes
 *		4)	remove pg_class tuple
 *		5)	remove pg_attribute tuples
 *		6)	remove pg_type tuples
 *		7)	RemoveConstraints ()
 *		8)	unlink relation
846 847
 *
 * old comments
848 849 850
 *		Except for vital relations, removes relation from
 *		relation catalog, and related attributes from
 *		attribute catalog (needed?).  (Anything else?)
851
 *
852 853 854 855 856 857
 *		get proper relation from relation catalog (if not arg)
 *		check if relation is vital (strcmp()/reltype?)
 *		scan attribute catalog deleting attributes of reldesc
 *				(necessary?)
 *		delete relation from relation catalog
 *		(How are the tuples of the relation discarded?)
858
 *
859 860 861 862
 *		XXX Must fix to work with indexes.
 *		There may be a better order for doing things.
 *		Problems with destroying a deleted database--cannot create
 *		a struct reldesc without having an open file descriptor.
863 864 865 866
 * ----------------------------------------------------------------
 */

/* --------------------------------
867
 *		RelationRemoveInheritance
868
 *
869 870 871 872
 *		Note: for now, we cause an exception if relation is a
 *		superclass.  Someday, we may want to allow this and merge
 *		the type info into subclass procedures....	this seems like
 *		lots of work.
873 874
 * --------------------------------
 */
875
static void
876 877
RelationRemoveInheritance(Relation relation)
{
878 879 880 881
	Relation	catalogRelation;
	HeapTuple	tuple;
	HeapScanDesc scan;
	ScanKeyData entry;
882 883 884 885 886 887 888 889 890 891 892 893 894

	/* ----------------
	 *	open pg_inherits
	 * ----------------
	 */
	catalogRelation = heap_openr(InheritsRelationName);

	/* ----------------
	 *	form a scan key for the subclasses of this class
	 *	and begin scanning
	 * ----------------
	 */
	ScanKeyEntryInitialize(&entry, 0x0, Anum_pg_inherits_inhparent,
B
Bruce Momjian 已提交
895
						   F_OIDEQ,
896 897 898 899
					  ObjectIdGetDatum(RelationGetRelationId(relation)));

	scan = heap_beginscan(catalogRelation,
						  false,
900
						  false,
901 902 903 904 905 906 907 908 909 910 911 912 913
						  1,
						  &entry);

	/* ----------------
	 *	if any subclasses exist, then we disallow the deletion.
	 * ----------------
	 */
	tuple = heap_getnext(scan, 0, (Buffer *) NULL);
	if (HeapTupleIsValid(tuple))
	{
		heap_endscan(scan);
		heap_close(catalogRelation);

B
Bruce Momjian 已提交
914
		elog(ERROR, "relation <%d> inherits \"%s\"",
915 916 917 918 919 920 921 922 923 924 925 926 927
			 ((InheritsTupleForm) GETSTRUCT(tuple))->inhrel,
			 RelationGetRelationName(relation));
	}

	/* ----------------
	 *	If we get here, it means the relation has no subclasses
	 *	so we can trash it.  First we remove dead INHERITS tuples.
	 * ----------------
	 */
	entry.sk_attno = Anum_pg_inherits_inhrel;

	scan = heap_beginscan(catalogRelation,
						  false,
928
						  false,
929 930 931 932 933 934 935 936 937 938 939 940 941
						  1,
						  &entry);

	for (;;)
	{
		tuple = heap_getnext(scan, 0, (Buffer *) NULL);
		if (!HeapTupleIsValid(tuple))
		{
			break;
		}
		heap_delete(catalogRelation, &tuple->t_ctid);
	}

942 943
	heap_endscan(scan);
	heap_close(catalogRelation);
944 945 946 947 948 949 950 951 952 953 954 955

	/* ----------------
	 *	now remove dead IPL tuples
	 * ----------------
	 */
	catalogRelation =
		heap_openr(InheritancePrecidenceListRelationName);

	entry.sk_attno = Anum_pg_ipl_iplrel;

	scan = heap_beginscan(catalogRelation,
						  false,
956
						  false,
957 958 959 960 961 962 963 964 965 966 967
						  1,
						  &entry);

	for (;;)
	{
		tuple = heap_getnext(scan, 0, (Buffer *) NULL);
		if (!HeapTupleIsValid(tuple))
		{
			break;
		}
		heap_delete(catalogRelation, &tuple->t_ctid);
968
	}
969 970 971

	heap_endscan(scan);
	heap_close(catalogRelation);
972 973 974
}

/* --------------------------------
975 976
 *		RelationRemoveIndexes
 *
977 978
 * --------------------------------
 */
979
static void
980 981
RelationRemoveIndexes(Relation relation)
{
982 983 984 985
	Relation	indexRelation;
	HeapTuple	tuple;
	HeapScanDesc scan;
	ScanKeyData entry;
986 987 988 989

	indexRelation = heap_openr(IndexRelationName);

	ScanKeyEntryInitialize(&entry, 0x0, Anum_pg_index_indrelid,
B
Bruce Momjian 已提交
990
						   F_OIDEQ,
991 992 993 994
					  ObjectIdGetDatum(RelationGetRelationId(relation)));

	scan = heap_beginscan(indexRelation,
						  false,
995
						  false,
996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
						  1,
						  &entry);

	for (;;)
	{
		tuple = heap_getnext(scan, 0, (Buffer *) NULL);
		if (!HeapTupleIsValid(tuple))
		{
			break;
		}

		index_destroy(((IndexTupleForm) GETSTRUCT(tuple))->indexrelid);
1008
	}
1009 1010 1011

	heap_endscan(scan);
	heap_close(indexRelation);
1012 1013 1014
}

/* --------------------------------
1015
 *		DeletePgRelationTuple
1016 1017 1018
 *
 * --------------------------------
 */
1019
static void
1020 1021
DeletePgRelationTuple(Relation rdesc)
{
1022 1023 1024 1025
	Relation	pg_class_desc;
	HeapScanDesc pg_class_scan;
	ScanKeyData key;
	HeapTuple	tup;
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042

	/* ----------------
	 *	open pg_class
	 * ----------------
	 */
	pg_class_desc = heap_openr(RelationRelationName);

	/* ----------------
	 *	create a scan key to locate the relation oid of the
	 *	relation to delete
	 * ----------------
	 */
	ScanKeyEntryInitialize(&key, 0, ObjectIdAttributeNumber,
						   F_INT4EQ, rdesc->rd_att->attrs[0]->attrelid);

	pg_class_scan = heap_beginscan(pg_class_desc,
								   0,
1043
								   false,
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
								   1,
								   &key);

	/* ----------------
	 *	use heap_getnext() to fetch the pg_class tuple.  If this
	 *	tuple is not valid then something's wrong.
	 * ----------------
	 */
	tup = heap_getnext(pg_class_scan, 0, (Buffer *) NULL);

	if (!PointerIsValid(tup))
	{
		heap_endscan(pg_class_scan);
		heap_close(pg_class_desc);
B
Bruce Momjian 已提交
1058
		elog(ERROR, "DeletePgRelationTuple: %s relation nonexistent",
1059 1060 1061 1062 1063 1064 1065
			 &rdesc->rd_rel->relname);
	}

	/* ----------------
	 *	delete the relation tuple from pg_class, and finish up.
	 * ----------------
	 */
1066
	heap_endscan(pg_class_scan);
1067 1068
	heap_delete(pg_class_desc, &tup->t_ctid);

1069 1070 1071 1072
	heap_close(pg_class_desc);
}

/* --------------------------------
1073
 *		DeletePgAttributeTuples
1074 1075 1076
 *
 * --------------------------------
 */
1077
static void
1078 1079
DeletePgAttributeTuples(Relation rdesc)
{
1080 1081 1082 1083
	Relation	pg_attribute_desc;
	HeapScanDesc pg_attribute_scan;
	ScanKeyData key;
	HeapTuple	tup;
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106

	/* ----------------
	 *	open pg_attribute
	 * ----------------
	 */
	pg_attribute_desc = heap_openr(AttributeRelationName);

	/* ----------------
	 *	create a scan key to locate the attribute tuples to delete
	 *	and begin the scan.
	 * ----------------
	 */
	ScanKeyEntryInitialize(&key, 0, Anum_pg_attribute_attrelid,
						   F_INT4EQ, rdesc->rd_att->attrs[0]->attrelid);

	/* -----------------
	 * Get a write lock _before_ getting the read lock in the scan
	 * ----------------
	 */
	RelationSetLockForWrite(pg_attribute_desc);

	pg_attribute_scan = heap_beginscan(pg_attribute_desc,
									   0,
1107
									   false,
1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
									   1,
									   &key);

	/* ----------------
	 *	use heap_getnext() / amdelete() until all attribute tuples
	 *	have been deleted.
	 * ----------------
	 */
	while (tup = heap_getnext(pg_attribute_scan, 0, (Buffer *) NULL),
		   PointerIsValid(tup))
	{

		heap_delete(pg_attribute_desc, &tup->t_ctid);
	}

	/* ----------------
	 *	finish up.
	 * ----------------
	 */
	heap_endscan(pg_attribute_scan);

	/* ----------------
	 * Release the write lock
	 * ----------------
	 */
	RelationUnsetLockForWrite(pg_attribute_desc);
	heap_close(pg_attribute_desc);
1135 1136 1137 1138
}


/* --------------------------------
1139
 *		DeletePgTypeTuple
1140
 *
1141 1142 1143 1144
 *		If the user attempts to destroy a relation and there
 *		exists attributes in other relations of type
 *		"relation we are deleting", then we have to do something
 *		special.  presently we disallow the destroy.
1145 1146
 * --------------------------------
 */
1147
static void
1148 1149
DeletePgTypeTuple(Relation rdesc)
{
1150 1151 1152 1153 1154 1155 1156 1157 1158
	Relation	pg_type_desc;
	HeapScanDesc pg_type_scan;
	Relation	pg_attribute_desc;
	HeapScanDesc pg_attribute_scan;
	ScanKeyData key;
	ScanKeyData attkey;
	HeapTuple	tup;
	HeapTuple	atttup;
	Oid			typoid;
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175

	/* ----------------
	 *	open pg_type
	 * ----------------
	 */
	pg_type_desc = heap_openr(TypeRelationName);

	/* ----------------
	 *	create a scan key to locate the type tuple corresponding
	 *	to this relation.
	 * ----------------
	 */
	ScanKeyEntryInitialize(&key, 0, Anum_pg_type_typrelid, F_INT4EQ,
						   rdesc->rd_att->attrs[0]->attrelid);

	pg_type_scan = heap_beginscan(pg_type_desc,
								  0,
1176
								  false,
1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
								  1,
								  &key);

	/* ----------------
	 *	use heap_getnext() to fetch the pg_type tuple.	If this
	 *	tuple is not valid then something's wrong.
	 * ----------------
	 */
	tup = heap_getnext(pg_type_scan, 0, (Buffer *) NULL);

	if (!PointerIsValid(tup))
	{
		heap_endscan(pg_type_scan);
		heap_close(pg_type_desc);
B
Bruce Momjian 已提交
1191
		elog(ERROR, "DeletePgTypeTuple: %s type nonexistent",
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
			 &rdesc->rd_rel->relname);
	}

	/* ----------------
	 *	now scan pg_attribute.	if any other relations have
	 *	attributes of the type of the relation we are deleteing
	 *	then we have to disallow the deletion.	should talk to
	 *	stonebraker about this.  -cim 6/19/90
	 * ----------------
	 */
	typoid = tup->t_oid;

	pg_attribute_desc = heap_openr(AttributeRelationName);

	ScanKeyEntryInitialize(&attkey,
						   0, Anum_pg_attribute_atttypid, F_INT4EQ,
						   typoid);

	pg_attribute_scan = heap_beginscan(pg_attribute_desc,
									   0,
1212
									   false,
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
									   1,
									   &attkey);

	/* ----------------
	 *	try and get a pg_attribute tuple.  if we succeed it means
	 *	we cant delete the relation because something depends on
	 *	the schema.
	 * ----------------
	 */
	atttup = heap_getnext(pg_attribute_scan, 0, (Buffer *) NULL);

	if (PointerIsValid(atttup))
	{
1226
		Oid			relid = ((AttributeTupleForm) GETSTRUCT(atttup))->attrelid;
1227 1228 1229 1230 1231 1232

		heap_endscan(pg_type_scan);
		heap_close(pg_type_desc);
		heap_endscan(pg_attribute_scan);
		heap_close(pg_attribute_desc);

B
Bruce Momjian 已提交
1233
		elog(ERROR, "DeletePgTypeTuple: att of type %s exists in relation %d",
1234 1235
			 &rdesc->rd_rel->relname, relid);
	}
M
Marc G. Fournier 已提交
1236 1237
	heap_endscan(pg_attribute_scan);
	heap_close(pg_attribute_desc);
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248

	/* ----------------
	 *	Ok, it's safe so we delete the relation tuple
	 *	from pg_type and finish up.  But first end the scan so that
	 *	we release the read lock on pg_type.  -mer 13 Aug 1991
	 * ----------------
	 */
	heap_endscan(pg_type_scan);
	heap_delete(pg_type_desc, &tup->t_ctid);

	heap_close(pg_type_desc);
M
Marc G. Fournier 已提交
1249 1250 1251
}

/* --------------------------------
1252
 *		heap_destroy_with_catalog
M
Marc G. Fournier 已提交
1253 1254 1255 1256
 *
 * --------------------------------
 */
void
1257
heap_destroy_with_catalog(char *relname)
M
Marc G. Fournier 已提交
1258
{
1259 1260
	Relation	rdesc;
	Oid			rid;
1261 1262 1263 1264 1265 1266 1267 1268

	/* ----------------
	 *	first open the relation.  if the relation does exist,
	 *	heap_openr() returns NULL.
	 * ----------------
	 */
	rdesc = heap_openr(relname);
	if (rdesc == NULL)
B
Bruce Momjian 已提交
1269
		elog(ERROR, "Relation %s Does Not Exist!", relname);
1270 1271 1272 1273 1274 1275 1276 1277 1278

	RelationSetLockForWrite(rdesc);
	rid = rdesc->rd_id;

	/* ----------------
	 *	prevent deletion of system relations
	 * ----------------
	 */
	if (IsSystemRelationName(RelationGetRelationName(rdesc)->data))
B
Bruce Momjian 已提交
1279
		elog(ERROR, "amdestroy: cannot destroy %s relation",
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 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
			 &rdesc->rd_rel->relname);

	/* ----------------
	 *	remove inheritance information
	 * ----------------
	 */
	RelationRemoveInheritance(rdesc);

	/* ----------------
	 *	remove indexes if necessary
	 * ----------------
	 */
	if (rdesc->rd_rel->relhasindex)
	{
		RelationRemoveIndexes(rdesc);
	}

	/* ----------------
	 *	remove rules if necessary
	 * ----------------
	 */
	if (rdesc->rd_rules != NULL)
	{
		RelationRemoveRules(rid);
	}

	/* triggers */
	if (rdesc->rd_rel->reltriggers > 0)
		RelationRemoveTriggers(rdesc);

	/* ----------------
	 *	delete attribute tuples
	 * ----------------
	 */
	DeletePgAttributeTuples(rdesc);

	/* ----------------
	 *	delete type tuple.	here we want to see the effects
	 *	of the deletions we just did, so we use setheapoverride().
	 * ----------------
	 */
	setheapoverride(true);
	DeletePgTypeTuple(rdesc);
	setheapoverride(false);

	/* ----------------
	 *	delete relation tuple
	 * ----------------
	 */
	DeletePgRelationTuple(rdesc);

	/*
	 * release dirty buffers of this relation
	 */
	ReleaseRelationBuffers(rdesc);

	/* ----------------
	 *	flush the relation from the relcache
	 * ----------------
	 * Does nothing!!! Flushing moved below.	- vadim 06/04/97
	RelationIdInvalidateRelationCacheByRelationId(rdesc->rd_id);
	 */

	RemoveConstraints(rdesc);

	/* ----------------
	 *	unlink the relation and finish up.
	 * ----------------
	 */
	if (!(rdesc->rd_istemp) || !(rdesc->rd_tmpunlinked))
	{
B
Bruce Momjian 已提交
1351
		smgrunlink(DEFAULT_SMGR, rdesc);
1352 1353 1354 1355 1356 1357 1358 1359 1360
	}
	rdesc->rd_tmpunlinked = TRUE;

	RelationUnsetLockForWrite(rdesc);

	heap_close(rdesc);

	/* ok - flush the relation from the relcache */
	RelationForgetRelation(rid);
M
Marc G. Fournier 已提交
1361 1362 1363
}

/*
1364
 * heap_destroy
1365
 *	  destroy and close temporary relations
M
Marc G. Fournier 已提交
1366 1367 1368
 *
 */

1369
void
1370
heap_destroy(Relation rdesc)
M
Marc G. Fournier 已提交
1371
{
1372 1373
	ReleaseRelationBuffers(rdesc);
	if (!(rdesc->rd_istemp) || !(rdesc->rd_tmpunlinked))
B
Bruce Momjian 已提交
1374
		smgrunlink(DEFAULT_SMGR, rdesc);
1375 1376 1377
	rdesc->rd_tmpunlinked = TRUE;
	heap_close(rdesc);
	RemoveFromTempRelList(rdesc);
M
Marc G. Fournier 已提交
1378 1379 1380 1381
}


/**************************************************************
1382
  functions to deal with the list of temporary relations
M
Marc G. Fournier 已提交
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
**************************************************************/

/* --------------
   InitTempRellist():

   initialize temporary relations list
   the tempRelList is a list of temporary relations that
   are created in the course of the transactions
   they need to be destroyed properly at the end of the transactions

   MODIFIES the global variable tempRels

 >> NOTE <<

   malloc is used instead of palloc because we KNOW when we are
1398
   going to free these things.	Keeps us away from the memory context
M
Marc G. Fournier 已提交
1399 1400 1401 1402
   hairyness

*/
void
1403
InitTempRelList(void)
M
Marc G. Fournier 已提交
1404
{
1405 1406 1407 1408 1409
	if (tempRels)
	{
		free(tempRels->rels);
		free(tempRels);
	}
M
Marc G. Fournier 已提交
1410

1411 1412 1413
	tempRels = (TempRelList *) malloc(sizeof(TempRelList));
	tempRels->size = TEMP_REL_LIST_SIZE;
	tempRels->rels = (Relation *) malloc(sizeof(Relation) * tempRels->size);
B
Bruce Momjian 已提交
1414
	MemSet(tempRels->rels, 0, sizeof(Relation) * tempRels->size);
1415
	tempRels->num = 0;
M
Marc G. Fournier 已提交
1416 1417 1418 1419 1420 1421
}

/*
   removes a relation from the TempRelList

   MODIFIES the global variable tempRels
1422 1423
	  we don't really remove it, just mark it as NULL
	  and DestroyTempRels will look for NULLs
M
Marc G. Fournier 已提交
1424
*/
1425
static void
M
Marc G. Fournier 已提交
1426 1427
RemoveFromTempRelList(Relation r)
{
1428
	int			i;
M
Marc G. Fournier 已提交
1429

1430 1431
	if (!tempRels)
		return;
M
Marc G. Fournier 已提交
1432

1433 1434 1435 1436 1437 1438 1439
	for (i = 0; i < tempRels->num; i++)
	{
		if (tempRels->rels[i] == r)
		{
			tempRels->rels[i] = NULL;
			break;
		}
M
Marc G. Fournier 已提交
1440 1441 1442 1443 1444 1445 1446 1447
	}
}

/*
   add a temporary relation to the TempRelList

   MODIFIES the global variable tempRels
*/
1448
static void
M
Marc G. Fournier 已提交
1449 1450
AddToTempRelList(Relation r)
{
1451 1452
	if (!tempRels)
		return;
M
Marc G. Fournier 已提交
1453

1454 1455 1456 1457 1458 1459 1460 1461
	if (tempRels->num == tempRels->size)
	{
		tempRels->size += TEMP_REL_LIST_SIZE;
		tempRels->rels = realloc(tempRels->rels,
								 sizeof(Relation) * tempRels->size);
	}
	tempRels->rels[tempRels->num] = r;
	tempRels->num++;
M
Marc G. Fournier 已提交
1462 1463 1464 1465 1466 1467
}

/*
   go through the tempRels list and destroy each of the relations
*/
void
1468
DestroyTempRels(void)
M
Marc G. Fournier 已提交
1469
{
1470 1471
	int			i;
	Relation	rdesc;
M
Marc G. Fournier 已提交
1472

1473 1474
	if (!tempRels)
		return;
M
Marc G. Fournier 已提交
1475

1476 1477 1478 1479 1480
	for (i = 0; i < tempRels->num; i++)
	{
		rdesc = tempRels->rels[i];
		/* rdesc may be NULL if it has been removed from the list already */
		if (rdesc)
1481
			heap_destroy(rdesc);
1482 1483 1484 1485
	}
	free(tempRels->rels);
	free(tempRels);
	tempRels = NULL;
M
Marc G. Fournier 已提交
1486 1487
}

1488

1489
static void
B
Bruce Momjian 已提交
1490
StoreAttrDefault(Relation rel, AttrDefault *attrdef)
1491
{
1492 1493
	char		str[MAX_PARSE_BUFFER];
	char		cast[2 * NAMEDATALEN] = {0};
1494
	AttributeTupleForm atp = rel->rd_att->attrs[attrdef->adnum - 1];
1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507
	QueryTreeList *queryTree_list;
	Query	   *query;
	List	   *planTree_list;
	TargetEntry *te;
	Resdom	   *resdom;
	Node	   *expr;
	char	   *adbin;
	MemoryContext oldcxt;
	Relation	adrel;
	Relation	idescs[Num_pg_attrdef_indices];
	HeapTuple	tuple;
	Datum		values[4];
	char		nulls[4] = {' ', ' ', ' ', ' '};
1508 1509
	extern GlobalMemory CacheCxt;

1510
start:;
1511 1512 1513
	sprintf(str, "select %s%s from %.*s", attrdef->adsrc, cast,
			NAMEDATALEN, rel->rd_rel->relname.data);
	setheapoverride(true);
1514
	planTree_list = (List *) pg_parse_and_plan(str, NULL, 0, &queryTree_list, None);
1515 1516 1517 1518 1519
	setheapoverride(false);
	query = (Query *) (queryTree_list->qtrees[0]);

	if (length(query->rtable) > 1 ||
		flatten_tlist(query->targetList) != NIL)
B
Bruce Momjian 已提交
1520
		elog(ERROR, "DEFAULT: cannot use attribute(s)");
1521 1522 1523 1524 1525 1526 1527 1528 1529
	te = (TargetEntry *) lfirst(query->targetList);
	resdom = te->resdom;
	expr = te->expr;

	if (IsA(expr, Const))
	{
		if (((Const *) expr)->consttype != atp->atttypid)
		{
			if (*cast != 0)
B
Bruce Momjian 已提交
1530
				elog(ERROR, "DEFAULT: const type mismatched");
B
Bruce Momjian 已提交
1531
			sprintf(cast, ":: %s", typeidTypeName(atp->atttypid));
1532 1533 1534 1535
			goto start;
		}
	}
	else if (exprType(expr) != atp->atttypid)
B
Bruce Momjian 已提交
1536
		elog(ERROR, "DEFAULT: type mismatched");
1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559

	adbin = nodeToString(expr);
	oldcxt = MemoryContextSwitchTo((MemoryContext) CacheCxt);
	attrdef->adbin = (char *) palloc(strlen(adbin) + 1);
	strcpy(attrdef->adbin, adbin);
	(void) MemoryContextSwitchTo(oldcxt);
	pfree(adbin);

	values[Anum_pg_attrdef_adrelid - 1] = rel->rd_id;
	values[Anum_pg_attrdef_adnum - 1] = attrdef->adnum;
	values[Anum_pg_attrdef_adbin - 1] = PointerGetDatum(textin(attrdef->adbin));
	values[Anum_pg_attrdef_adsrc - 1] = PointerGetDatum(textin(attrdef->adsrc));
	adrel = heap_openr(AttrDefaultRelationName);
	tuple = heap_formtuple(adrel->rd_att, values, nulls);
	CatalogOpenIndices(Num_pg_attrdef_indices, Name_pg_attrdef_indices, idescs);
	heap_insert(adrel, tuple);
	CatalogIndexInsert(idescs, Num_pg_attrdef_indices, adrel, tuple);
	CatalogCloseIndices(Num_pg_attrdef_indices, idescs);
	heap_close(adrel);

	pfree(DatumGetPointer(values[Anum_pg_attrdef_adbin - 1]));
	pfree(DatumGetPointer(values[Anum_pg_attrdef_adsrc - 1]));
	pfree(tuple);
1560 1561 1562

}

1563
static void
1564
StoreRelCheck(Relation rel, ConstrCheck *check)
1565
{
1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
	char		str[MAX_PARSE_BUFFER];
	QueryTreeList *queryTree_list;
	Query	   *query;
	List	   *planTree_list;
	Plan	   *plan;
	List	   *qual;
	char	   *ccbin;
	MemoryContext oldcxt;
	Relation	rcrel;
	Relation	idescs[Num_pg_relcheck_indices];
	HeapTuple	tuple;
	Datum		values[4];
	char		nulls[4] = {' ', ' ', ' ', ' '};
1579 1580 1581 1582 1583
	extern GlobalMemory CacheCxt;

	sprintf(str, "select 1 from %.*s where %s",
			NAMEDATALEN, rel->rd_rel->relname.data, check->ccsrc);
	setheapoverride(true);
1584
	planTree_list = (List *) pg_parse_and_plan(str, NULL, 0, &queryTree_list, None);
1585 1586 1587 1588
	setheapoverride(false);
	query = (Query *) (queryTree_list->qtrees[0]);

	if (length(query->rtable) > 1)
B
Bruce Momjian 已提交
1589
		elog(ERROR, "CHECK: only relation %.*s can be referenced",
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
			 NAMEDATALEN, rel->rd_rel->relname.data);

	plan = (Plan *) lfirst(planTree_list);
	qual = plan->qual;

	ccbin = nodeToString(qual);
	oldcxt = MemoryContextSwitchTo((MemoryContext) CacheCxt);
	check->ccbin = (char *) palloc(strlen(ccbin) + 1);
	strcpy(check->ccbin, ccbin);
	(void) MemoryContextSwitchTo(oldcxt);
	pfree(ccbin);

	values[Anum_pg_relcheck_rcrelid - 1] = rel->rd_id;
	values[Anum_pg_relcheck_rcname - 1] = PointerGetDatum(namein(check->ccname));
	values[Anum_pg_relcheck_rcbin - 1] = PointerGetDatum(textin(check->ccbin));
	values[Anum_pg_relcheck_rcsrc - 1] = PointerGetDatum(textin(check->ccsrc));
	rcrel = heap_openr(RelCheckRelationName);
	tuple = heap_formtuple(rcrel->rd_att, values, nulls);
	CatalogOpenIndices(Num_pg_relcheck_indices, Name_pg_relcheck_indices, idescs);
	heap_insert(rcrel, tuple);
	CatalogIndexInsert(idescs, Num_pg_relcheck_indices, rcrel, tuple);
	CatalogCloseIndices(Num_pg_relcheck_indices, idescs);
	heap_close(rcrel);

	pfree(DatumGetPointer(values[Anum_pg_relcheck_rcname - 1]));
	pfree(DatumGetPointer(values[Anum_pg_relcheck_rcbin - 1]));
	pfree(DatumGetPointer(values[Anum_pg_relcheck_rcsrc - 1]));
	pfree(tuple);

	return;
1620 1621
}

1622 1623
static void
StoreConstraints(Relation rel)
1624
{
1625 1626
	TupleConstr *constr = rel->rd_att->constr;
	int			i;
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643

	if (!constr)
		return;

	if (constr->num_defval > 0)
	{
		for (i = 0; i < constr->num_defval; i++)
			StoreAttrDefault(rel, &(constr->defval[i]));
	}

	if (constr->num_check > 0)
	{
		for (i = 0; i < constr->num_check; i++)
			StoreRelCheck(rel, &(constr->check[i]));
	}

	return;
1644 1645
}

1646 1647
static void
RemoveAttrDefault(Relation rel)
1648
{
1649 1650 1651 1652
	Relation	adrel;
	HeapScanDesc adscan;
	ScanKeyData key;
	HeapTuple	tup;
1653 1654 1655 1656

	adrel = heap_openr(AttrDefaultRelationName);

	ScanKeyEntryInitialize(&key, 0, Anum_pg_attrdef_adrelid,
B
Bruce Momjian 已提交
1657
						   F_OIDEQ, rel->rd_id);
1658 1659 1660

	RelationSetLockForWrite(adrel);

1661
	adscan = heap_beginscan(adrel, 0, false, 1, &key);
1662 1663 1664 1665 1666 1667 1668 1669

	while (tup = heap_getnext(adscan, 0, (Buffer *) NULL), PointerIsValid(tup))
		heap_delete(adrel, &tup->t_ctid);

	heap_endscan(adscan);

	RelationUnsetLockForWrite(adrel);
	heap_close(adrel);
1670 1671 1672

}

1673 1674
static void
RemoveRelCheck(Relation rel)
1675
{
1676 1677 1678 1679
	Relation	rcrel;
	HeapScanDesc rcscan;
	ScanKeyData key;
	HeapTuple	tup;
1680 1681 1682 1683

	rcrel = heap_openr(RelCheckRelationName);

	ScanKeyEntryInitialize(&key, 0, Anum_pg_relcheck_rcrelid,
B
Bruce Momjian 已提交
1684
						   F_OIDEQ, rel->rd_id);
1685 1686 1687

	RelationSetLockForWrite(rcrel);

1688
	rcscan = heap_beginscan(rcrel, 0, false, 1, &key);
1689 1690 1691 1692 1693 1694 1695 1696

	while (tup = heap_getnext(rcscan, 0, (Buffer *) NULL), PointerIsValid(tup))
		heap_delete(rcrel, &tup->t_ctid);

	heap_endscan(rcscan);

	RelationUnsetLockForWrite(rcrel);
	heap_close(rcrel);
1697 1698

}
1699

1700 1701
static void
RemoveConstraints(Relation rel)
1702
{
1703
	TupleConstr *constr = rel->rd_att->constr;
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714

	if (!constr)
		return;

	if (constr->num_defval > 0)
		RemoveAttrDefault(rel);

	if (constr->num_check > 0)
		RemoveRelCheck(rel);

	return;
1715
}