heapam.c 61.0 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * heapam.c
4
 *	  heap access method code
5
 *
B
Add:  
Bruce Momjian 已提交
6 7
 * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
 * Portions Copyright (c) 1994, Regents of the University of California
8 9 10
 *
 *
 * IDENTIFICATION
11
 *	  $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.85 2000/09/07 09:58:34 vadim Exp $
12 13 14
 *
 *
 * INTERFACE ROUTINES
15 16 17
 *		heapgettup		- fetch next heap tuple from a scan
 *		heap_open		- open a heap relation by relationId
 *		heap_openr		- open a heap relation by name
18
 *		heap_open[r]_nofail	- same, but return NULL on failure instead of elog
19 20 21 22 23 24 25 26
 *		heap_close		- close a heap relation
 *		heap_beginscan	- begin relation scan
 *		heap_rescan		- restart a relation scan
 *		heap_endscan	- end relation scan
 *		heap_getnext	- retrieve next tuple in scan
 *		heap_fetch		- retrive tuple with tid
 *		heap_insert		- insert tuple into a relation
 *		heap_delete		- delete a tuple from a relation
27
 *		heap_update		- replace a tuple in a relation with another tuple
28 29 30
 *		heap_markpos	- mark scan position
 *		heap_restrpos	- restore position to marked location
 *
31
 * NOTES
32 33 34
 *	  This file contains the heap_ routines which implement
 *	  the POSTGRES heap access method used for all POSTGRES
 *	  relations.
35 36
 *
 * OLD COMMENTS
37
 *		struct relscan hints:  (struct should be made AM independent?)
38
 *
39 40 41 42
 *		rs_ctid is the tid of the last tuple returned by getnext.
 *		rs_ptid and rs_ntid are the tids of the previous and next tuples
 *		returned by getnext, respectively.	NULL indicates an end of
 *		scan (either direction); NON indicates an unknow value.
43
 *
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
 *		possible combinations:
 *		rs_p	rs_c	rs_n			interpretation
 *		NULL	NULL	NULL			empty scan
 *		NULL	NULL	NON				at begining of scan
 *		NULL	NULL	t1				at begining of scan (with cached tid)
 *		NON		NULL	NULL			at end of scan
 *		t1		NULL	NULL			at end of scan (with cached tid)
 *		NULL	t1		NULL			just returned only tuple
 *		NULL	t1		NON				just returned first tuple
 *		NULL	t1		t2				returned first tuple (with cached tid)
 *		NON		t1		NULL			just returned last tuple
 *		t2		t1		NULL			returned last tuple (with cached tid)
 *		t1		t2		NON				in the middle of a forward scan
 *		NON		t2		t1				in the middle of a reverse scan
 *		ti		tj		tk				in the middle of a scan (w cached tid)
59
 *
60 61
 *		Here NULL is ...tup == NULL && ...buf == InvalidBuffer,
 *		and NON is ...tup == NULL && ...buf == UnknownBuffer.
62
 *
63 64 65
 *		Currently, the NONTID values are not cached with their actual
 *		values by getnext.	Values may be cached by markpos since it stores
 *		all three tids.
66
 *
67 68
 *		NOTE:  the calls to elog() must stop.  Should decide on an interface
 *		between the general and specific AM calls.
69
 *
70 71 72 73
 *		XXX probably do not need a free tuple routine for heaps.
 *		Huh?  Free tuple is not necessary for tuples returned by scans, but
 *		is necessary for tuples which are returned by
 *		RelationGetTupleByItemPointer. -hirohama
74 75 76 77
 *
 *-------------------------------------------------------------------------
 */

78
#include "postgres.h"
79

80 81
#include "access/heapam.h"
#include "access/hio.h"
T
Tom Lane 已提交
82
#include "access/tuptoaster.h"
B
Bruce Momjian 已提交
83
#include "access/valid.h"
84
#include "catalog/catalog.h"
B
Bruce Momjian 已提交
85 86 87
#include "miscadmin.h"
#include "utils/inval.h"
#include "utils/relcache.h"
88

89 90 91 92
#ifdef XLOG	/* comments are in _heap_update */
static ItemPointerData	_locked_tuple;
#endif

M
-Wall'd  
Marc G. Fournier 已提交
93

94
/* ----------------------------------------------------------------
95
 *						 heap support routines
96 97 98 99
 * ----------------------------------------------------------------
 */

/* ----------------
100
 *		initscan - scan code common to heap_beginscan and heap_rescan
101 102 103
 * ----------------
 */
static void
104
initscan(HeapScanDesc scan,
105 106 107 108
		 Relation relation,
		 int atend,
		 unsigned nkeys,
		 ScanKey key)
109
{
110 111 112 113 114 115 116 117 118 119
	/* ----------------
	 *	Make sure we have up-to-date idea of number of blocks in relation.
	 *	It is sufficient to do this once at scan start, since any tuples
	 *	added while the scan is in progress will be invisible to my
	 *	transaction anyway...
	 * ----------------
	 */
	relation->rd_nblocks = RelationGetNumberOfBlocks(relation);

	if (relation->rd_nblocks == 0)
120 121 122 123 124
	{
		/* ----------------
		 *	relation is empty
		 * ----------------
		 */
125
		scan->rs_ntup.t_datamcxt = scan->rs_ctup.t_datamcxt =
126
			scan->rs_ptup.t_datamcxt = NULL;
B
Bruce Momjian 已提交
127
		scan->rs_ntup.t_data = scan->rs_ctup.t_data =
128
			scan->rs_ptup.t_data = NULL;
129
		scan->rs_nbuf = scan->rs_cbuf = scan->rs_pbuf = InvalidBuffer;
130 131 132 133 134 135 136
	}
	else if (atend)
	{
		/* ----------------
		 *	reverse scan
		 * ----------------
		 */
137
		scan->rs_ntup.t_datamcxt = scan->rs_ctup.t_datamcxt = NULL;
138
		scan->rs_ntup.t_data = scan->rs_ctup.t_data = NULL;
139
		scan->rs_nbuf = scan->rs_cbuf = InvalidBuffer;
140
		scan->rs_ptup.t_datamcxt = NULL;
141
		scan->rs_ptup.t_data = NULL;
142
		scan->rs_pbuf = UnknownBuffer;
143 144 145 146 147 148 149
	}
	else
	{
		/* ----------------
		 *	forward scan
		 * ----------------
		 */
150
		scan->rs_ctup.t_datamcxt = scan->rs_ptup.t_datamcxt = NULL;
151
		scan->rs_ctup.t_data = scan->rs_ptup.t_data = NULL;
152
		scan->rs_cbuf = scan->rs_pbuf = InvalidBuffer;
153
		scan->rs_ntup.t_datamcxt = NULL;
154
		scan->rs_ntup.t_data = NULL;
155
		scan->rs_nbuf = UnknownBuffer;
156 157 158
	}							/* invalid too */

	/* we don't have a marked position... */
159 160 161 162
	ItemPointerSetInvalid(&(scan->rs_mptid));
	ItemPointerSetInvalid(&(scan->rs_mctid));
	ItemPointerSetInvalid(&(scan->rs_mntid));
	ItemPointerSetInvalid(&(scan->rs_mcd));
163

164
	/* ----------------
165
	 *	copy the scan key, if appropriate
166 167
	 * ----------------
	 */
168
	if (key != NULL)
169
		memmove(scan->rs_key, key, nkeys * sizeof(ScanKeyData));
170 171 172
}

/* ----------------
173
 *		unpinscan - code common to heap_rescan and heap_endscan
174 175 176
 * ----------------
 */
static void
177
unpinscan(HeapScanDesc scan)
178
{
179 180
	if (BufferIsValid(scan->rs_pbuf))
		ReleaseBuffer(scan->rs_pbuf);
181 182

	/* ------------------------------------
183
	 *	Scan will pin buffer once for each non-NULL tuple pointer
184 185 186 187
	 *	(ptup, ctup, ntup), so they have to be unpinned multiple
	 *	times.
	 * ------------------------------------
	 */
188 189
	if (BufferIsValid(scan->rs_cbuf))
		ReleaseBuffer(scan->rs_cbuf);
190

191 192
	if (BufferIsValid(scan->rs_nbuf))
		ReleaseBuffer(scan->rs_nbuf);
193

194 195 196
	/*
	 * we don't bother to clear rs_pbuf etc --- caller must reinitialize
	 * them if scan descriptor is not being deleted.
197
	 */
198 199 200
}

/* ------------------------------------------
201
 *		nextpage
202
 *
203 204 205
 *		figure out the next page to scan after the current page
 *		taking into account of possible adjustment of degrees of
 *		parallelism
206 207 208 209 210
 * ------------------------------------------
 */
static int
nextpage(int page, int dir)
{
211
	return (dir < 0) ? page - 1 : page + 1;
212 213 214
}

/* ----------------
215
 *		heapgettup - fetch next heap tuple
216
 *
217 218
 *		routine used by heap_getnext() which does most of the
 *		real work in scanning tuples.
219 220 221 222 223
 *
 *		The scan routines handle their own buffer lock/unlocking, so
 *		there is no reason to request the buffer number unless
 *		to want to perform some other operation with the result,
 *		like pass it to another function.
224 225
 * ----------------
 */
226
static void
227
heapgettup(Relation relation,
228
		   HeapTuple tuple,
229
		   int dir,
V
Vadim B. Mikheev 已提交
230
		   Buffer *buffer,
231
		   Snapshot snapshot,
232 233
		   int nkeys,
		   ScanKey key)
234
{
B
Bruce Momjian 已提交
235 236 237 238 239 240 241 242 243
	ItemId		lpp;
	Page		dp;
	int			page;
	int			pages;
	int			lines;
	OffsetNumber lineoff;
	int			linesleft;
	ItemPointer tid = (tuple->t_data == NULL) ?
	(ItemPointer) NULL : &(tuple->t_self);
244 245
    
	tuple->tableOid = relation->rd_id;
246

247
	/* ----------------
248
	 *	increment access statistics
249 250
	 * ----------------
	 */
251 252 253
	IncrHeapAccessStat(local_heapgettup);
	IncrHeapAccessStat(global_heapgettup);

254
	/* ----------------
255 256 257 258
	 *	debugging stuff
	 *
	 * check validity of arguments, here and for other functions too
	 * Note: no locking manipulations needed--this is a local function
259 260
	 * ----------------
	 */
261 262 263
#ifdef	HEAPDEBUGALL
	if (ItemPointerIsValid(tid))
	{
264
		elog(DEBUG, "heapgettup(%s, tid=0x%x[%d,%d], dir=%d, ...)",
265 266
			 RelationGetRelationName(relation), tid, tid->ip_blkid,
			 tid->ip_posid, dir);
267
	}
268 269
	else
	{
270
		elog(DEBUG, "heapgettup(%s, tid=0x%x, dir=%d, ...)",
271
			 RelationGetRelationName(relation), tid, dir);
272
	}
V
Vadim B. Mikheev 已提交
273
	elog(DEBUG, "heapgettup(..., b=0x%x, nkeys=%d, key=0x%x", buffer, nkeys, key);
274

275
	elog(DEBUG, "heapgettup: relation(%c)=`%s', %p",
276
		 relation->rd_rel->relkind, RelationGetRelationName(relation),
277
		 snapshot);
278
#endif	 /* !defined(HEAPDEBUGALL) */
279 280 281

	if (!ItemPointerIsValid(tid))
		Assert(!PointerIsValid(tid));
282 283

	/* ----------------
284
	 *	return null immediately if relation is empty
285 286
	 * ----------------
	 */
287
	if (!(pages = relation->rd_nblocks))
288
	{
289
		tuple->t_datamcxt = NULL;
290 291 292
		tuple->t_data = NULL;
		return;
	}
293 294 295 296 297 298 299 300 301 302 303 304 305 306

	/* ----------------
	 *	calculate next starting lineoff, given scan direction
	 * ----------------
	 */
	if (!dir)
	{
		/* ----------------
		 * ``no movement'' scan direction
		 * ----------------
		 */
		/* assume it is a valid TID XXX */
		if (ItemPointerIsValid(tid) == false)
		{
V
Vadim B. Mikheev 已提交
307
			*buffer = InvalidBuffer;
308
			tuple->t_datamcxt = NULL;
309 310
			tuple->t_data = NULL;
			return;
311
		}
V
Vadim B. Mikheev 已提交
312
		*buffer = RelationGetBufferWithBuffer(relation,
B
Bruce Momjian 已提交
313 314
										  ItemPointerGetBlockNumber(tid),
											  *buffer);
315

V
Vadim B. Mikheev 已提交
316
		if (!BufferIsValid(*buffer))
317
			elog(ERROR, "heapgettup: failed ReadBuffer");
318

V
Vadim B. Mikheev 已提交
319 320 321
		LockBuffer(*buffer, BUFFER_LOCK_SHARE);

		dp = (Page) BufferGetPage(*buffer);
322 323 324
		lineoff = ItemPointerGetOffsetNumber(tid);
		lpp = PageGetItemId(dp, lineoff);

325
		tuple->t_datamcxt = NULL;
326 327
		tuple->t_data = (HeapTupleHeader) PageGetItem((Page) dp, lpp);
		tuple->t_len = ItemIdGetLength(lpp);
V
Vadim B. Mikheev 已提交
328
		LockBuffer(*buffer, BUFFER_LOCK_UNLOCK);
329
		return;
330

331
	}
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
	else if (dir < 0)
	{
		/* ----------------
		 *	reverse scan direction
		 * ----------------
		 */
		if (ItemPointerIsValid(tid) == false)
			tid = NULL;
		if (tid == NULL)
		{
			page = pages - 1;	/* final page */
		}
		else
		{
			page = ItemPointerGetBlockNumber(tid);		/* current page */
		}
		if (page < 0)
		{
V
Vadim B. Mikheev 已提交
350
			*buffer = InvalidBuffer;
351 352
			tuple->t_data = NULL;
			return;
353 354
		}

V
Vadim B. Mikheev 已提交
355 356
		*buffer = RelationGetBufferWithBuffer(relation, page, *buffer);
		if (!BufferIsValid(*buffer))
357
			elog(ERROR, "heapgettup: failed ReadBuffer");
358

V
Vadim B. Mikheev 已提交
359 360 361
		LockBuffer(*buffer, BUFFER_LOCK_SHARE);

		dp = (Page) BufferGetPage(*buffer);
362 363 364 365
		lines = PageGetMaxOffsetNumber(dp);
		if (tid == NULL)
		{
			lineoff = lines;	/* final offnum */
366
		}
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
		else
		{
			lineoff =			/* previous offnum */
				OffsetNumberPrev(ItemPointerGetOffsetNumber(tid));
		}
		/* page and lineoff now reference the physically previous tid */

	}
	else
	{
		/* ----------------
		 *	forward scan direction
		 * ----------------
		 */
		if (ItemPointerIsValid(tid) == false)
		{
			page = 0;			/* first page */
			lineoff = FirstOffsetNumber;		/* first offnum */
		}
		else
		{
			page = ItemPointerGetBlockNumber(tid);		/* current page */
			lineoff =			/* next offnum */
				OffsetNumberNext(ItemPointerGetOffsetNumber(tid));
		}

		if (page >= pages)
		{
V
Vadim B. Mikheev 已提交
395
			*buffer = InvalidBuffer;
396
			tuple->t_datamcxt = NULL;
397 398
			tuple->t_data = NULL;
			return;
399 400 401
		}
		/* page and lineoff now reference the physically next tid */

V
Vadim B. Mikheev 已提交
402 403
		*buffer = RelationGetBufferWithBuffer(relation, page, *buffer);
		if (!BufferIsValid(*buffer))
404
			elog(ERROR, "heapgettup: failed ReadBuffer");
405

V
Vadim B. Mikheev 已提交
406 407 408
		LockBuffer(*buffer, BUFFER_LOCK_SHARE);

		dp = (Page) BufferGetPage(*buffer);
409
		lines = PageGetMaxOffsetNumber(dp);
410
	}
411 412 413

	/* 'dir' is now non-zero */

414
	/* ----------------
415 416
	 *	calculate line pointer and number of remaining items
	 *	to check on this page.
417 418
	 * ----------------
	 */
419 420 421 422 423 424
	lpp = PageGetItemId(dp, lineoff);
	if (dir < 0)
		linesleft = lineoff - 1;
	else
		linesleft = lines - lineoff;

425
	/* ----------------
426 427
	 *	advance the scan until we find a qualifying tuple or
	 *	run out of stuff to scan
428 429
	 * ----------------
	 */
430 431 432 433
	for (;;)
	{
		while (linesleft >= 0)
		{
434
			if (ItemIdIsUsed(lpp))
435
			{
436
				tuple->t_datamcxt = NULL;
437 438 439 440 441 442 443
				tuple->t_data = (HeapTupleHeader) PageGetItem((Page) dp, lpp);
				tuple->t_len = ItemIdGetLength(lpp);
				ItemPointerSet(&(tuple->t_self), page, lineoff);
				/* ----------------
				 *	if current tuple qualifies, return it.
				 * ----------------
				 */
V
Vadim B. Mikheev 已提交
444
				HeapTupleSatisfies(tuple, relation, *buffer, (PageHeader) dp,
445 446
								   snapshot, nkeys, key);
				if (tuple->t_data != NULL)
V
Vadim B. Mikheev 已提交
447 448
				{
					LockBuffer(*buffer, BUFFER_LOCK_UNLOCK);
449
					return;
V
Vadim B. Mikheev 已提交
450
				}
451 452 453 454 455 456 457 458 459 460
			}

			/* ----------------
			 *	otherwise move to the next item on the page
			 * ----------------
			 */
			--linesleft;
			if (dir < 0)
			{
				--lpp;			/* move back in this page's ItemId array */
461
				--lineoff;
462 463 464
			}
			else
			{
B
Bruce Momjian 已提交
465 466
				++lpp;			/* move forward in this page's ItemId
								 * array */
467
				++lineoff;
468 469 470 471 472 473 474 475
			}
		}

		/* ----------------
		 *	if we get here, it means we've exhausted the items on
		 *	this page and it's time to move to the next..
		 * ----------------
		 */
V
Vadim B. Mikheev 已提交
476
		LockBuffer(*buffer, BUFFER_LOCK_UNLOCK);
477 478 479 480 481 482 483 484
		page = nextpage(page, dir);

		/* ----------------
		 *	return NULL if we've exhausted all the pages..
		 * ----------------
		 */
		if (page < 0 || page >= pages)
		{
V
Vadim B. Mikheev 已提交
485 486 487
			if (BufferIsValid(*buffer))
				ReleaseBuffer(*buffer);
			*buffer = InvalidBuffer;
488
			tuple->t_datamcxt = NULL;
489 490
			tuple->t_data = NULL;
			return;
491 492
		}

V
Vadim B. Mikheev 已提交
493
		*buffer = ReleaseAndReadBuffer(*buffer, relation, page);
494

V
Vadim B. Mikheev 已提交
495
		if (!BufferIsValid(*buffer))
496
			elog(ERROR, "heapgettup: failed ReadBuffer");
V
Vadim B. Mikheev 已提交
497 498
		LockBuffer(*buffer, BUFFER_LOCK_SHARE);
		dp = (Page) BufferGetPage(*buffer);
499
		lines = PageGetMaxOffsetNumber((Page) dp);
500 501
		linesleft = lines - 1;
		if (dir < 0)
502 503 504 505
		{
			lineoff = lines;
			lpp = PageGetItemId(dp, lines);
		}
506
		else
507 508
		{
			lineoff = FirstOffsetNumber;
509
			lpp = PageGetItemId(dp, FirstOffsetNumber);
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 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
#if defined(DISABLE_COMPLEX_MACRO)
/*
 * This is formatted so oddly so that the correspondence to the macro
 * definition in access/heapam.h is maintained.
 */
Datum
fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc,
			bool *isnull)
{
	return (
			(attnum) > 0 ?
			(
			 ((isnull) ? (*(isnull) = false) : (dummyret) NULL),
			 HeapTupleNoNulls(tup) ?
			 (
			  ((tupleDesc)->attrs[(attnum) - 1]->attcacheoff != -1 ||
			   (attnum) == 1) ?
			  (
			   (Datum) fetchatt(&((tupleDesc)->attrs[(attnum) - 1]),
						 (char *) (tup)->t_data + (tup)->t_data->t_hoff +
								(
								 ((attnum) != 1) ?
							(tupleDesc)->attrs[(attnum) - 1]->attcacheoff
								 :
								 0
								 )
								)
			   )
			  :
			  nocachegetattr((tup), (attnum), (tupleDesc), (isnull))
			  )
			 :
			 (
			  att_isnull((attnum) - 1, (tup)->t_data->t_bits) ?
			  (
			   ((isnull) ? (*(isnull) = true) : (dummyret) NULL),
			   (Datum) NULL
			   )
			  :
			  (
			   nocachegetattr((tup), (attnum), (tupleDesc), (isnull))
			   )
			  )
			 )
			:
			(
			 (Datum) NULL
			 )
	);
}
#endif /* defined(DISABLE_COMPLEX_MACRO)*/


568
/* ----------------------------------------------------------------
569
 *					 heap access method interface
570 571
 * ----------------------------------------------------------------
 */
572

573
/* ----------------
574
 *		heap_open - open a heap relation by relationId
575
 *
576 577 578
 *		If lockmode is not "NoLock", the specified kind of lock is
 *		obtained on the relation.
 *		An error is raised if the relation does not exist.
579 580 581
 * ----------------
 */
Relation
582
heap_open(Oid relationId, LOCKMODE lockmode)
583
{
584
	Relation	r;
585

586 587
	Assert(lockmode >= NoLock && lockmode < MAX_LOCKMODES);

588 589 590 591 592 593 594
	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_open);
	IncrHeapAccessStat(global_open);

595 596
	/* The relcache does all the real work... */
	r = RelationIdGetRelation(relationId);
597

598
	if (!RelationIsValid(r))
599 600
		elog(ERROR, "Relation %u does not exist", relationId);

601 602 603 604 605 606
	/* Under no circumstances will we return an index as a relation. */
	if (r->rd_rel->relkind == RELKIND_INDEX)
		elog(ERROR, "%s is an index relation", RelationGetRelationName(r));

	if (lockmode != NoLock)
		LockRelation(r, lockmode);
607

608
	return r;
609 610 611
}

/* ----------------
612
 *		heap_openr - open a heap relation by name
613
 *
614 615 616
 *		If lockmode is not "NoLock", the specified kind of lock is
 *		obtained on the relation.
 *		An error is raised if the relation does not exist.
617 618 619
 * ----------------
 */
Relation
620
heap_openr(const char *relationName, LOCKMODE lockmode)
621
{
622
	Relation	r;
623

624 625
	Assert(lockmode >= NoLock && lockmode < MAX_LOCKMODES);

626 627 628 629 630 631 632
	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_openr);
	IncrHeapAccessStat(global_openr);

633
	/* The relcache does all the real work... */
634 635
	r = RelationNameGetRelation(relationName);

636 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 663 664 665 666 667 668 669 670 671 672
	if (!RelationIsValid(r))
		elog(ERROR, "Relation '%s' does not exist", relationName);

	/* Under no circumstances will we return an index as a relation. */
	if (r->rd_rel->relkind == RELKIND_INDEX)
		elog(ERROR, "%s is an index relation", RelationGetRelationName(r));

	if (lockmode != NoLock)
		LockRelation(r, lockmode);

	return r;
}

/* ----------------
 *		heap_open_nofail - open a heap relation by relationId,
 *				do not raise error on failure
 *
 *		The caller must check for a NULL return value indicating
 *		that no such relation exists.
 *		No lock is obtained on the relation, either.
 * ----------------
 */
Relation
heap_open_nofail(Oid relationId)
{
	Relation	r;

	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_open);
	IncrHeapAccessStat(global_open);

	/* The relcache does all the real work... */
	r = RelationIdGetRelation(relationId);

673
	/* Under no circumstances will we return an index as a relation. */
674
	if (RelationIsValid(r) && r->rd_rel->relkind == RELKIND_INDEX)
675
		elog(ERROR, "%s is an index relation", RelationGetRelationName(r));
676

677 678
	return r;
}
679

680 681 682 683 684 685 686 687 688 689 690 691 692
/* ----------------
 *		heap_openr_nofail - open a heap relation by name,
 *				do not raise error on failure
 *
 *		The caller must check for a NULL return value indicating
 *		that no such relation exists.
 *		No lock is obtained on the relation, either.
 * ----------------
 */
Relation
heap_openr_nofail(const char *relationName)
{
	Relation	r;
693

694 695 696 697 698 699 700 701 702 703 704 705 706
	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_openr);
	IncrHeapAccessStat(global_openr);

	/* The relcache does all the real work... */
	r = RelationNameGetRelation(relationName);

	/* Under no circumstances will we return an index as a relation. */
	if (RelationIsValid(r) && r->rd_rel->relkind == RELKIND_INDEX)
		elog(ERROR, "%s is an index relation", RelationGetRelationName(r));
707

708
	return r;
709 710 711
}

/* ----------------
712
 *		heap_close - close a heap relation
713
 *
714 715 716
 *		If lockmode is not "NoLock", we first release the specified lock.
 *		Note that it is often sensible to hold a lock beyond heap_close;
 *		in that case, the lock is released automatically at xact end.
717 718 719
 * ----------------
 */
void
720
heap_close(Relation relation, LOCKMODE lockmode)
721
{
722 723
	Assert(lockmode >= NoLock && lockmode < MAX_LOCKMODES);

724 725 726 727 728 729 730
	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_close);
	IncrHeapAccessStat(global_close);

731 732 733 734
	if (lockmode != NoLock)
		UnlockRelation(relation, lockmode);

	/* The relcache does the real work... */
735
	RelationClose(relation);
736 737 738 739
}


/* ----------------
740
 *		heap_beginscan	- begin relation scan
741 742 743 744
 * ----------------
 */
HeapScanDesc
heap_beginscan(Relation relation,
745
			   int atend,
746
			   Snapshot snapshot,
747 748
			   unsigned nkeys,
			   ScanKey key)
749
{
750
	HeapScanDesc scan;
751 752 753 754 755 756 757 758 759 760 761

	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_beginscan);
	IncrHeapAccessStat(global_beginscan);

	/* ----------------
	 *	sanity checks
	 * ----------------
762
	 */
763
	if (!RelationIsValid(relation))
764
		elog(ERROR, "heap_beginscan: !RelationIsValid(relation)");
765 766 767 768 769 770 771

	/* ----------------
	 *	increment relation ref count while scanning relation
	 * ----------------
	 */
	RelationIncrementReferenceCount(relation);

772 773 774 775
	/* ----------------
	 *	Acquire AccessShareLock for the duration of the scan
	 *
	 *	Note: we could get an SI inval message here and consequently have
776
	 *	to rebuild the relcache entry.	The refcount increment above
777 778 779 780 781 782 783 784 785
	 *	ensures that we will rebuild it and not just flush it...
	 * ----------------
	 */
	LockRelation(relation, AccessShareLock);

	/* XXX someday assert SelfTimeQual if relkind == RELKIND_UNCATALOGED */
	if (relation->rd_rel->relkind == RELKIND_UNCATALOGED)
		snapshot = SnapshotSelf;

786 787 788 789
	/* ----------------
	 *	allocate and initialize scan descriptor
	 * ----------------
	 */
790
	scan = (HeapScanDesc) palloc(sizeof(HeapScanDescData));
791

792
	scan->rs_rd = relation;
793 794 795
	scan->rs_atend = atend;
	scan->rs_snapshot = snapshot;
	scan->rs_nkeys = (short) nkeys;
796 797

	if (nkeys)
798

799
		/*
800 801
		 * we do this here instead of in initscan() because heap_rescan
		 * also calls initscan() and we don't want to allocate memory
802 803
		 * again
		 */
804
		scan->rs_key = (ScanKey) palloc(sizeof(ScanKeyData) * nkeys);
805
	else
806
		scan->rs_key = NULL;
807

808
	initscan(scan, relation, atend, nkeys, key);
809

810
	return scan;
811 812 813
}

/* ----------------
814
 *		heap_rescan		- restart a relation scan
815 816 817
 * ----------------
 */
void
818
heap_rescan(HeapScanDesc scan,
819 820
			bool scanFromEnd,
			ScanKey key)
821
{
822 823 824 825 826 827 828 829 830 831 832 833 834
	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_rescan);
	IncrHeapAccessStat(global_rescan);

	/* Note: set relation level read lock is still set */

	/* ----------------
	 *	unpin scan buffers
	 * ----------------
	 */
835
	unpinscan(scan);
836 837 838 839 840

	/* ----------------
	 *	reinitialize scan descriptor
	 * ----------------
	 */
841
	scan->rs_atend = (bool) scanFromEnd;
842
	initscan(scan, scan->rs_rd, scanFromEnd, scan->rs_nkeys, key);
843 844 845
}

/* ----------------
846
 *		heap_endscan	- end relation scan
847
 *
848 849
 *		See how to integrate with index scans.
 *		Check handling if reldesc caching.
850 851 852
 * ----------------
 */
void
853
heap_endscan(HeapScanDesc scan)
854
{
855 856 857 858 859 860 861 862 863 864 865 866 867
	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_endscan);
	IncrHeapAccessStat(global_endscan);

	/* Note: no locking manipulations needed */

	/* ----------------
	 *	unpin scan buffers
	 * ----------------
	 */
868
	unpinscan(scan);
869

870 871 872 873 874 875
	/* ----------------
	 *	Release AccessShareLock acquired by heap_beginscan()
	 * ----------------
	 */
	UnlockRelation(scan->rs_rd, AccessShareLock);

876 877 878 879
	/* ----------------
	 *	decrement relation reference count and free scan descriptor storage
	 * ----------------
	 */
880
	RelationDecrementReferenceCount(scan->rs_rd);
881

882 883 884
	if (scan->rs_key)
		pfree(scan->rs_key);

885
	pfree(scan);
886 887 888
}

/* ----------------
889
 *		heap_getnext	- retrieve next tuple in scan
890
 *
891
 *		Fix to work with index relations.
892 893
 *		We don't return the buffer anymore, but you can get it from the
 *		returned HeapTuple.
894 895 896 897 898
 * ----------------
 */

#ifdef HEAPDEBUGALL
#define HEAPDEBUG_1 \
899
elog(DEBUG, "heap_getnext([%s,nkeys=%d],backw=%d) called", \
900
	 RelationGetRelationName(scan->rs_rd), scan->rs_nkeys, backw)
901

902
#define HEAPDEBUG_2 \
903 904
	 elog(DEBUG, "heap_getnext called with backw (no tracing yet)")

905
#define HEAPDEBUG_3 \
906 907
	 elog(DEBUG, "heap_getnext returns NULL at end")

908
#define HEAPDEBUG_4 \
909 910
	 elog(DEBUG, "heap_getnext valid buffer UNPIN'd")

911
#define HEAPDEBUG_5 \
912 913
	 elog(DEBUG, "heap_getnext next tuple was cached")

914
#define HEAPDEBUG_6 \
915 916
	 elog(DEBUG, "heap_getnext returning EOS")

917
#define HEAPDEBUG_7 \
918
	 elog(DEBUG, "heap_getnext returning tuple");
919 920 921 922 923 924 925 926
#else
#define HEAPDEBUG_1
#define HEAPDEBUG_2
#define HEAPDEBUG_3
#define HEAPDEBUG_4
#define HEAPDEBUG_5
#define HEAPDEBUG_6
#define HEAPDEBUG_7
927
#endif	 /* !defined(HEAPDEBUGALL) */
928 929


930
HeapTuple
931
heap_getnext(HeapScanDesc scandesc, int backw)
932
{
933
	HeapScanDesc scan = scandesc;
934

935
	/* ----------------
936
	 *	increment access statistics
937 938
	 * ----------------
	 */
939 940 941 942 943 944 945 946
	IncrHeapAccessStat(local_getnext);
	IncrHeapAccessStat(global_getnext);

	/* Note: no locking manipulations needed */

	/* ----------------
	 *	argument checks
	 * ----------------
947
	 */
948
	if (scan == NULL)
949
		elog(ERROR, "heap_getnext: NULL relscan");
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965

	/* ----------------
	 *	initialize return buffer to InvalidBuffer
	 * ----------------
	 */

	HEAPDEBUG_1;				/* heap_getnext( info ) */

	if (backw)
	{
		/* ----------------
		 *	handle reverse scan
		 * ----------------
		 */
		HEAPDEBUG_2;			/* heap_getnext called with backw */

966
		if (scan->rs_ptup.t_data == scan->rs_ctup.t_data &&
967
			BufferIsInvalid(scan->rs_pbuf))
968
			return NULL;
969 970 971 972 973

		/*
		 * Copy the "current" tuple/buffer to "next". Pin/unpin the
		 * buffers accordingly
		 */
974
		if (scan->rs_nbuf != scan->rs_cbuf)
975
		{
976 977 978 979
			if (BufferIsValid(scan->rs_nbuf))
				ReleaseBuffer(scan->rs_nbuf);
			if (BufferIsValid(scan->rs_cbuf))
				IncrBufferRefCount(scan->rs_cbuf);
980
		}
981 982
		scan->rs_ntup = scan->rs_ctup;
		scan->rs_nbuf = scan->rs_cbuf;
983

984
		if (scan->rs_ptup.t_data != NULL)
985
		{
986
			if (scan->rs_cbuf != scan->rs_pbuf)
987
			{
988 989 990 991
				if (BufferIsValid(scan->rs_cbuf))
					ReleaseBuffer(scan->rs_cbuf);
				if (BufferIsValid(scan->rs_pbuf))
					IncrBufferRefCount(scan->rs_pbuf);
992
			}
993 994
			scan->rs_ctup = scan->rs_ptup;
			scan->rs_cbuf = scan->rs_pbuf;
995 996 997
		}
		else
		{						/* NONTUP */
B
Bruce Momjian 已提交
998

999
			/*
1000
			 * Don't release scan->rs_cbuf at this point, because
1001 1002 1003 1004 1005 1006 1007
			 * heapgettup doesn't increase PrivateRefCount if it is
			 * already set. On a backward scan, both rs_ctup and rs_ntup
			 * usually point to the same buffer page, so
			 * PrivateRefCount[rs_cbuf] should be 2 (or more, if for
			 * instance ctup is stored in a TupleTableSlot).  - 01/09/94
			 */

1008 1009 1010 1011 1012 1013 1014
			heapgettup(scan->rs_rd,
					   &(scan->rs_ctup),
					   -1,
					   &(scan->rs_cbuf),
					   scan->rs_snapshot,
					   scan->rs_nkeys,
					   scan->rs_key);
1015 1016
		}

1017
		if (scan->rs_ctup.t_data == NULL && !BufferIsValid(scan->rs_cbuf))
1018
		{
1019 1020
			if (BufferIsValid(scan->rs_pbuf))
				ReleaseBuffer(scan->rs_pbuf);
1021
			scan->rs_ptup.t_datamcxt = NULL;
1022
			scan->rs_ptup.t_data = NULL;
1023
			scan->rs_pbuf = InvalidBuffer;
1024
			return NULL;
1025 1026
		}

1027 1028
		if (BufferIsValid(scan->rs_pbuf))
			ReleaseBuffer(scan->rs_pbuf);
1029
		scan->rs_ptup.t_datamcxt = NULL;
1030
		scan->rs_ptup.t_data = NULL;
1031
		scan->rs_pbuf = UnknownBuffer;
1032 1033 1034 1035 1036 1037 1038 1039

	}
	else
	{
		/* ----------------
		 *	handle forward scan
		 * ----------------
		 */
1040
		if (scan->rs_ctup.t_data == scan->rs_ntup.t_data &&
1041
			BufferIsInvalid(scan->rs_nbuf))
1042 1043
		{
			HEAPDEBUG_3;		/* heap_getnext returns NULL at end */
1044
			return NULL;
1045 1046 1047 1048 1049 1050
		}

		/*
		 * Copy the "current" tuple/buffer to "previous". Pin/unpin the
		 * buffers accordingly
		 */
1051
		if (scan->rs_pbuf != scan->rs_cbuf)
1052
		{
1053 1054 1055 1056
			if (BufferIsValid(scan->rs_pbuf))
				ReleaseBuffer(scan->rs_pbuf);
			if (BufferIsValid(scan->rs_cbuf))
				IncrBufferRefCount(scan->rs_cbuf);
1057
		}
1058 1059
		scan->rs_ptup = scan->rs_ctup;
		scan->rs_pbuf = scan->rs_cbuf;
1060

1061
		if (scan->rs_ntup.t_data != NULL)
1062
		{
1063
			if (scan->rs_cbuf != scan->rs_nbuf)
1064
			{
1065 1066 1067 1068
				if (BufferIsValid(scan->rs_cbuf))
					ReleaseBuffer(scan->rs_cbuf);
				if (BufferIsValid(scan->rs_nbuf))
					IncrBufferRefCount(scan->rs_nbuf);
1069
			}
1070 1071
			scan->rs_ctup = scan->rs_ntup;
			scan->rs_cbuf = scan->rs_nbuf;
1072 1073 1074 1075
			HEAPDEBUG_5;		/* heap_getnext next tuple was cached */
		}
		else
		{						/* NONTUP */
B
Bruce Momjian 已提交
1076

1077
			/*
1078
			 * Don't release scan->rs_cbuf at this point, because
1079 1080 1081 1082 1083 1084 1085
			 * heapgettup doesn't increase PrivateRefCount if it is
			 * already set. On a forward scan, both rs_ctup and rs_ptup
			 * usually point to the same buffer page, so
			 * PrivateRefCount[rs_cbuf] should be 2 (or more, if for
			 * instance ctup is stored in a TupleTableSlot).  - 01/09/93
			 */

1086 1087 1088 1089 1090 1091 1092
			heapgettup(scan->rs_rd,
					   &(scan->rs_ctup),
					   1,
					   &scan->rs_cbuf,
					   scan->rs_snapshot,
					   scan->rs_nkeys,
					   scan->rs_key);
1093 1094
		}

1095
		if (scan->rs_ctup.t_data == NULL && !BufferIsValid(scan->rs_cbuf))
1096
		{
1097 1098
			if (BufferIsValid(scan->rs_nbuf))
				ReleaseBuffer(scan->rs_nbuf);
1099
			scan->rs_ntup.t_datamcxt = NULL;
1100
			scan->rs_ntup.t_data = NULL;
1101
			scan->rs_nbuf = InvalidBuffer;
1102
			HEAPDEBUG_6;		/* heap_getnext returning EOS */
1103
			return NULL;
1104 1105
		}

1106 1107
		if (BufferIsValid(scan->rs_nbuf))
			ReleaseBuffer(scan->rs_nbuf);
1108
		scan->rs_ntup.t_datamcxt = NULL;
1109
		scan->rs_ntup.t_data = NULL;
1110
		scan->rs_nbuf = UnknownBuffer;
1111 1112
	}

1113
	/* ----------------
1114 1115
	 *	if we get here it means we have a new current scan tuple, so
	 *	point to the proper return buffer and return the tuple.
1116 1117
	 * ----------------
	 */
1118 1119 1120

	HEAPDEBUG_7;				/* heap_getnext returning tuple */

1121
	return ((scan->rs_ctup.t_data == NULL) ? NULL : &(scan->rs_ctup));
1122 1123 1124
}

/* ----------------
1125
 *		heap_fetch		- retrive tuple with tid
1126
 *
1127
 *		Currently ignores LP_IVALID during processing!
1128 1129 1130 1131
 *
 *		Because this is not part of a scan, there is no way to
 *		automatically lock/unlock the shared buffers.
 *		For this reason, we require that the user retrieve the buffer
1132
 *		value, and they are required to BufferRelease() it when they
1133 1134
 *		are done.  If they want to make a copy of it before releasing it,
 *		they can call heap_copytyple().
1135 1136
 * ----------------
 */
1137
void
1138
heap_fetch(Relation relation,
1139
		   Snapshot snapshot,
1140
		   HeapTuple tuple,
1141
		   Buffer *userbuf)
1142
{
B
Bruce Momjian 已提交
1143 1144 1145 1146 1147
	ItemId		lp;
	Buffer		buffer;
	PageHeader	dp;
	ItemPointer tid = &(tuple->t_self);
	OffsetNumber offnum;
1148

1149
	tuple->tableOid = relation->rd_id;
1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_fetch);
	IncrHeapAccessStat(global_fetch);

	/* ----------------
	 *	get the buffer from the relation descriptor
	 *	Note that this does a buffer pin.
	 * ----------------
	 */

	buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(tid));

	if (!BufferIsValid(buffer))
1166
		elog(ERROR, "heap_fetch: %s relation: ReadBuffer(%lx) failed",
1167
			 RelationGetRelationName(relation), (long) tid);
V
Vadim B. Mikheev 已提交
1168 1169

	LockBuffer(buffer, BUFFER_LOCK_SHARE);
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183

	/* ----------------
	 *	get the item line pointer corresponding to the requested tid
	 * ----------------
	 */
	dp = (PageHeader) BufferGetPage(buffer);
	offnum = ItemPointerGetOffsetNumber(tid);
	lp = PageGetItemId(dp, offnum);

	/* ----------------
	 *	more sanity checks
	 * ----------------
	 */

1184 1185
	if (!ItemIdIsUsed(lp))
	{
1186
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
1187 1188
		ReleaseBuffer(buffer);
		*userbuf = InvalidBuffer;
1189
		tuple->t_datamcxt = NULL;
1190 1191 1192
		tuple->t_data = NULL;
		return;
	}
1193

1194
	tuple->t_datamcxt = NULL;
1195 1196 1197
	tuple->t_data = (HeapTupleHeader) PageGetItem((Page) dp, lp);
	tuple->t_len = ItemIdGetLength(lp);

1198 1199 1200 1201 1202
	/* ----------------
	 *	check time qualification of tid
	 * ----------------
	 */

1203 1204
	HeapTupleSatisfies(tuple, relation, buffer, dp,
					   snapshot, 0, (ScanKey) NULL);
1205

V
Vadim B. Mikheev 已提交
1206 1207
	LockBuffer(buffer, BUFFER_LOCK_UNLOCK);

1208
	if (tuple->t_data == NULL)
1209
	{
1210
		/* Tuple failed time check, so we can release now. */
1211
		ReleaseBuffer(buffer);
1212 1213 1214 1215
		*userbuf = InvalidBuffer;
	}
	else
	{
1216 1217 1218 1219

		/*
		 * All checks passed, so return the tuple as valid. Caller is now
		 * responsible for releasing the buffer.
1220 1221
		 */
		*userbuf = buffer;
1222 1223 1224
	}
}

1225 1226 1227 1228 1229 1230 1231
/* ----------------
 *	heap_get_latest_tid -  get the latest tid of a specified tuple
 *
 * ----------------
 */
ItemPointer
heap_get_latest_tid(Relation relation,
1232 1233
					Snapshot snapshot,
					ItemPointer tid)
1234
{
1235
	ItemId		lp = NULL;
1236 1237
	Buffer		buffer;
	PageHeader	dp;
1238 1239 1240 1241 1242 1243
	OffsetNumber offnum;
	HeapTupleData tp;
	HeapTupleHeader t_data;
	ItemPointerData ctid;
	bool		invalidBlock,
				linkend;
1244

1245
	tp.tableOid = relation->rd_id;
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
	/* ----------------
	 *	get the buffer from the relation descriptor
	 *	Note that this does a buffer pin.
	 * ----------------
	 */

	buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(tid));

	if (!BufferIsValid(buffer))
		elog(ERROR, "heap_get_latest_tid: %s relation: ReadBuffer(%lx) failed",
1256
			 RelationGetRelationName(relation), (long) tid);
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273

	LockBuffer(buffer, BUFFER_LOCK_SHARE);

	/* ----------------
	 *	get the item line pointer corresponding to the requested tid
	 * ----------------
	 */
	dp = (PageHeader) BufferGetPage(buffer);
	offnum = ItemPointerGetOffsetNumber(tid);
	invalidBlock = true;
	if (!PageIsNew(dp))
	{
		lp = PageGetItemId(dp, offnum);
		if (ItemIdIsUsed(lp))
			invalidBlock = false;
	}
	if (invalidBlock)
1274
	{
1275 1276 1277
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
		ReleaseBuffer(buffer);
		return NULL;
1278
	}
1279 1280 1281 1282 1283 1284

	/* ----------------
	 *	more sanity checks
	 * ----------------
	 */

1285
	tp.t_datamcxt = NULL;
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
	t_data = tp.t_data = (HeapTupleHeader) PageGetItem((Page) dp, lp);
	tp.t_len = ItemIdGetLength(lp);
	tp.t_self = *tid;
	ctid = tp.t_data->t_ctid;

	/* ----------------
	 *	check time qualification of tid
	 * ----------------
	 */

	HeapTupleSatisfies(&tp, relation, buffer, dp,
					   snapshot, 0, (ScanKey) NULL);

	linkend = true;
1300
	if ((t_data->t_infomask & HEAP_XMAX_COMMITTED) &&
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
		!ItemPointerEquals(tid, &ctid))
		linkend = false;

	LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
	ReleaseBuffer(buffer);

	if (tp.t_data == NULL)
	{
		if (linkend)
			return NULL;
1311
		return heap_get_latest_tid(relation, snapshot, &ctid);
1312 1313 1314 1315 1316
	}

	return tid;
}

1317
/* ----------------
1318
 *		heap_insert		- insert tuple
1319
 *
1320 1321
 *		The assignment of t_min (and thus the others) should be
 *		removed eventually.
1322
 *
1323 1324 1325 1326
 *		Currently places the tuple onto the last page.	If there is no room,
 *		it is placed on new pages.	(Heap relations)
 *		Note that concurrent inserts during a scan will probably have
 *		unexpected results, though this will be fixed eventually.
1327
 *
1328
 *		Fix to work with indexes.
1329 1330 1331 1332 1333
 * ----------------
 */
Oid
heap_insert(Relation relation, HeapTuple tup)
{
V
Vadim B. Mikheev 已提交
1334 1335 1336
	Buffer buffer;

	/* increment access statistics */
1337
	tup->tableOid = relation->rd_id;
1338 1339
	IncrHeapAccessStat(local_insert);
	IncrHeapAccessStat(global_insert);
1340

1341 1342 1343 1344 1345 1346 1347 1348 1349 1350
	/* ----------------
	 *	If the object id of this tuple has already been assigned, trust
	 *	the caller.  There are a couple of ways this can happen.  At initial
	 *	db creation, the backend program sets oids for tuples.	When we
	 *	define an index, we set the oid.  Finally, in the future, we may
	 *	allow users to set their own object ids in order to support a
	 *	persistent object store (objects need to contain pointers to one
	 *	another).
	 * ----------------
	 */
1351 1352
	if (!OidIsValid(tup->t_data->t_oid))
		tup->t_data->t_oid = newoid();
1353
	else
1354
		CheckMaxObjectId(tup->t_data->t_oid);
1355

1356 1357 1358 1359 1360
	TransactionIdStore(GetCurrentTransactionId(), &(tup->t_data->t_xmin));
	tup->t_data->t_cmin = GetCurrentCommandId();
	StoreInvalidTransactionId(&(tup->t_data->t_xmax));
	tup->t_data->t_infomask &= ~(HEAP_XACT_MASK);
	tup->t_data->t_infomask |= HEAP_XMAX_INVALID;
1361

J
TOAST  
Jan Wieck 已提交
1362 1363 1364 1365 1366 1367 1368
#ifdef TUPLE_TOASTER_ACTIVE
	/* ----------
	 * If the new tuple is too big for storage or contains already
	 * toasted attributes from some other relation, invoke the toaster.
	 * ----------
	 */
    if (HeapTupleHasExtended(tup) ||
1369
		(MAXALIGN(tup->t_len) > TOAST_TUPLE_THRESHOLD))
J
TOAST  
Jan Wieck 已提交
1370 1371 1372
		heap_tuple_toast_attrs(relation, tup, NULL);
#endif

V
Vadim B. Mikheev 已提交
1373
	/* Find buffer for this tuple */
1374
	buffer = RelationGetBufferForTuple(relation, tup->t_len);
V
Vadim B. Mikheev 已提交
1375 1376 1377

	/* NO ELOG(ERROR) from here till changes are logged */
	RelationPutHeapTuple(relation, buffer, tup);
1378

V
Vadim B. Mikheev 已提交
1379 1380 1381 1382
#ifdef XLOG
	/* XLOG stuff */
	{
		xl_heap_insert	xlrec;
1383 1384 1385
		xlrec.target.node = relation->rd_node;
		xlrec.target.cid = GetCurrentCommandId();
		xlrec.target.tid = tup->t_self;
V
Vadim B. Mikheev 已提交
1386 1387 1388 1389 1390 1391
		xlrec.t_natts = tup->t_data->t_natts;
		xlrec.t_oid = tup->t_data->t_oid;
		xlrec.t_hoff = tup->t_data->t_hoff;
		xlrec.mask = tup->t_data->t_infomask;
		
		XLogRecPtr recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_INSERT,
1392 1393 1394
			(char*) xlrec, SizeOfHeapInsert, 
			(char*) tup->t_data + offsetof(HeapTupleHeaderData, t_bits), 
			tup->t_len - offsetof(HeapTupleHeaderData, t_bits));
V
Vadim B. Mikheev 已提交
1395

1396 1397
		PageSetLSN(BufferGetPage(buffer), recptr);
		PageSetSUI(BufferGetPage(buffer), ThisStartUpID);
V
Vadim B. Mikheev 已提交
1398 1399 1400
	}
#endif

J
TOAST  
Jan Wieck 已提交
1401
	LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
1402
	WriteBuffer(buffer);
V
Vadim B. Mikheev 已提交
1403

1404
	if (IsSystemRelationName(RelationGetRelationName(relation)))
H
 
Hiroshi Inoue 已提交
1405
		RelationMark4RollbackHeapTuple(relation, tup);
1406

1407
	return tup->t_data->t_oid;
1408 1409
}

V
Vadim B. Mikheev 已提交
1410 1411
/*
 *	heap_delete		- delete a tuple
1412
 */
1413
int
V
Vadim B. Mikheev 已提交
1414
heap_delete(Relation relation, ItemPointer tid, ItemPointer ctid)
1415
{
B
Bruce Momjian 已提交
1416 1417 1418 1419 1420
	ItemId		lp;
	HeapTupleData tp;
	PageHeader	dp;
	Buffer		buffer;
	int			result;
1421

1422
	tp.tableOid = relation->rd_id;
V
Vadim B. Mikheev 已提交
1423
	/* increment access statistics */
1424 1425 1426 1427 1428
	IncrHeapAccessStat(local_delete);
	IncrHeapAccessStat(global_delete);

	Assert(ItemPointerIsValid(tid));

V
Vadim B. Mikheev 已提交
1429
	buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(tid));
1430

V
Vadim B. Mikheev 已提交
1431
	if (!BufferIsValid(buffer))
1432
		elog(ERROR, "heap_delete: failed ReadBuffer");
1433

V
Vadim B. Mikheev 已提交
1434
	LockBuffer(buffer, BUFFER_LOCK_EXCLUSIVE);
1435

V
Vadim B. Mikheev 已提交
1436 1437
	dp = (PageHeader) BufferGetPage(buffer);
	lp = PageGetItemId(dp, ItemPointerGetOffsetNumber(tid));
1438
	tp.t_datamcxt = NULL;
1439 1440 1441
	tp.t_data = (HeapTupleHeader) PageGetItem((Page) dp, lp);
	tp.t_len = ItemIdGetLength(lp);
	tp.t_self = *tid;
B
Bruce Momjian 已提交
1442

V
Vadim B. Mikheev 已提交
1443 1444
l1:
	result = HeapTupleSatisfiesUpdate(&tp);
B
Bruce Momjian 已提交
1445

V
Vadim B. Mikheev 已提交
1446
	if (result == HeapTupleInvisible)
1447
	{
V
Vadim B. Mikheev 已提交
1448 1449 1450
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
		ReleaseBuffer(buffer);
		elog(ERROR, "heap_delete: (am)invalid tid");
1451
	}
V
Vadim B. Mikheev 已提交
1452
	else if (result == HeapTupleBeingUpdated)
1453
	{
B
Bruce Momjian 已提交
1454
		TransactionId xwait = tp.t_data->t_xmax;
V
Vadim B. Mikheev 已提交
1455

B
Bruce Momjian 已提交
1456
		/* sleep until concurrent transaction ends */
V
Vadim B. Mikheev 已提交
1457 1458 1459 1460 1461 1462
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
		XactLockTableWait(xwait);

		LockBuffer(buffer, BUFFER_LOCK_EXCLUSIVE);
		if (TransactionIdDidAbort(xwait))
			goto l1;
1463 1464 1465 1466 1467

		/*
		 * xwait is committed but if xwait had just marked the tuple for
		 * update then some other xaction could update this tuple before
		 * we got to this point.
1468 1469 1470
		 */
		if (tp.t_data->t_xmax != xwait)
			goto l1;
V
Vadim B. Mikheev 已提交
1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489
		if (!(tp.t_data->t_infomask & HEAP_XMAX_COMMITTED))
		{
			tp.t_data->t_infomask |= HEAP_XMAX_COMMITTED;
			SetBufferCommitInfoNeedsSave(buffer);
		}
		/* if tuple was marked for update but not updated... */
		if (tp.t_data->t_infomask & HEAP_MARKED_FOR_UPDATE)
			result = HeapTupleMayBeUpdated;
		else
			result = HeapTupleUpdated;
	}
	if (result != HeapTupleMayBeUpdated)
	{
		Assert(result == HeapTupleSelfUpdated || result == HeapTupleUpdated);
		if (ctid != NULL)
			*ctid = tp.t_data->t_ctid;
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
		ReleaseBuffer(buffer);
		return result;
1490 1491
	}

V
Vadim B. Mikheev 已提交
1492 1493 1494 1495
#ifdef XLOG
	/* XLOG stuff */
	{
		xl_heap_delete	xlrec;
1496 1497 1498
		xlrec.target.node = relation->rd_node;
		xlrec.target.cid = GetCurrentCommandId();
		xlrec.target.tid = tp.t_self;
V
Vadim B. Mikheev 已提交
1499
		XLogRecPtr recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_DELETE,
1500
			(char*) xlrec, SizeOfHeapDelete, NULL, 0);
V
Vadim B. Mikheev 已提交
1501

1502 1503
		PageSetLSN(dp, recptr);
		PageSetSUI(dp, ThisStartUpID);
V
Vadim B. Mikheev 已提交
1504 1505 1506
	}
#endif

V
Vadim B. Mikheev 已提交
1507
	/* store transaction information of xact deleting the tuple */
1508 1509
	TransactionIdStore(GetCurrentTransactionId(), &(tp.t_data->t_xmax));
	tp.t_data->t_cmax = GetCurrentCommandId();
B
Bruce Momjian 已提交
1510 1511
	tp.t_data->t_infomask &= ~(HEAP_XMAX_COMMITTED |
							 HEAP_XMAX_INVALID | HEAP_MARKED_FOR_UPDATE);
1512

J
TOAST  
Jan Wieck 已提交
1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
#ifdef TUPLE_TOASTER_ACTIVE
	/* ----------
	 * If the relation has toastable attributes, we need to delete
	 * no longer needed items there too.
	 * ----------
	 */
	if (HeapTupleHasExtended(&tp))
		heap_tuple_toast_attrs(relation, NULL, &(tp));
#endif

V
Vadim B. Mikheev 已提交
1523 1524 1525
	LockBuffer(buffer, BUFFER_LOCK_UNLOCK);

	/* invalidate caches */
1526
	RelationInvalidateHeapTuple(relation, &tp);
1527

V
Vadim B. Mikheev 已提交
1528
	WriteBuffer(buffer);
1529

V
Vadim B. Mikheev 已提交
1530
	return HeapTupleMayBeUpdated;
1531 1532
}

V
Vadim B. Mikheev 已提交
1533
/*
1534
 *	heap_update - replace a tuple
1535 1536
 */
int
1537
heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
1538
			ItemPointer ctid)
1539
{
B
Bruce Momjian 已提交
1540 1541 1542
	ItemId		lp;
	HeapTupleData oldtup;
	PageHeader	dp;
V
Vadim B. Mikheev 已提交
1543
	Buffer		buffer, newbuf;
B
Bruce Momjian 已提交
1544
	int			result;
1545

1546
	newtup->tableOid = relation->rd_id;
V
Vadim B. Mikheev 已提交
1547
	/* increment access statistics */
1548 1549 1550 1551 1552 1553 1554
	IncrHeapAccessStat(local_replace);
	IncrHeapAccessStat(global_replace);

	Assert(ItemPointerIsValid(otid));

	buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(otid));
	if (!BufferIsValid(buffer))
1555
		elog(ERROR, "amreplace: failed ReadBuffer");
V
Vadim B. Mikheev 已提交
1556
	LockBuffer(buffer, BUFFER_LOCK_EXCLUSIVE);
1557

V
Vadim B. Mikheev 已提交
1558
	dp = (PageHeader) BufferGetPage(buffer);
1559 1560
	lp = PageGetItemId(dp, ItemPointerGetOffsetNumber(otid));

1561
	oldtup.t_datamcxt = NULL;
1562 1563 1564
	oldtup.t_data = (HeapTupleHeader) PageGetItem(dp, lp);
	oldtup.t_len = ItemIdGetLength(lp);
	oldtup.t_self = *otid;
1565

V
Vadim B. Mikheev 已提交
1566 1567
l2:
	result = HeapTupleSatisfiesUpdate(&oldtup);
B
Bruce Momjian 已提交
1568

V
Vadim B. Mikheev 已提交
1569
	if (result == HeapTupleInvisible)
1570
	{
V
Vadim B. Mikheev 已提交
1571
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
1572
		ReleaseBuffer(buffer);
1573
		elog(ERROR, "heap_update: (am)invalid tid");
1574
	}
V
Vadim B. Mikheev 已提交
1575
	else if (result == HeapTupleBeingUpdated)
1576
	{
B
Bruce Momjian 已提交
1577
		TransactionId xwait = oldtup.t_data->t_xmax;
V
Vadim B. Mikheev 已提交
1578 1579 1580 1581 1582 1583 1584 1585

		/* sleep untill concurrent transaction ends */
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
		XactLockTableWait(xwait);

		LockBuffer(buffer, BUFFER_LOCK_EXCLUSIVE);
		if (TransactionIdDidAbort(xwait))
			goto l2;
1586 1587 1588 1589 1590

		/*
		 * xwait is committed but if xwait had just marked the tuple for
		 * update then some other xaction could update this tuple before
		 * we got to this point.
1591 1592 1593
		 */
		if (oldtup.t_data->t_xmax != xwait)
			goto l2;
V
Vadim B. Mikheev 已提交
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610
		if (!(oldtup.t_data->t_infomask & HEAP_XMAX_COMMITTED))
		{
			oldtup.t_data->t_infomask |= HEAP_XMAX_COMMITTED;
			SetBufferCommitInfoNeedsSave(buffer);
		}
		/* if tuple was marked for update but not updated... */
		if (oldtup.t_data->t_infomask & HEAP_MARKED_FOR_UPDATE)
			result = HeapTupleMayBeUpdated;
		else
			result = HeapTupleUpdated;
	}
	if (result != HeapTupleMayBeUpdated)
	{
		Assert(result == HeapTupleSelfUpdated || result == HeapTupleUpdated);
		if (ctid != NULL)
			*ctid = oldtup.t_data->t_ctid;
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
1611
		ReleaseBuffer(buffer);
V
Vadim B. Mikheev 已提交
1612
		return result;
1613 1614 1615
	}

	/* XXX order problems if not atomic assignment ??? */
1616 1617 1618 1619 1620
	newtup->t_data->t_oid = oldtup.t_data->t_oid;
	TransactionIdStore(GetCurrentTransactionId(), &(newtup->t_data->t_xmin));
	newtup->t_data->t_cmin = GetCurrentCommandId();
	StoreInvalidTransactionId(&(newtup->t_data->t_xmax));
	newtup->t_data->t_infomask &= ~(HEAP_XACT_MASK);
1621
	newtup->t_data->t_infomask |= (HEAP_XMAX_INVALID | HEAP_UPDATED);
1622

1623 1624 1625
#ifdef TUPLE_TOASTER_ACTIVE
	/* ----------
	 * If this relation is enabled for toasting, let the toaster
1626 1627 1628 1629
	 * delete any no-longer-needed entries and create new ones to
	 * make the new tuple fit again.  Also, if there are already-
	 * toasted values from some other relation, the toaster must
	 * fix them.
1630 1631 1632
	 * ----------
	 */
	if (HeapTupleHasExtended(&oldtup) || 
1633 1634
		HeapTupleHasExtended(newtup) ||
		(MAXALIGN(newtup->t_len) > TOAST_TUPLE_THRESHOLD))
1635 1636 1637
		heap_tuple_toast_attrs(relation, newtup, &oldtup);
#endif

V
Vadim B. Mikheev 已提交
1638 1639 1640 1641 1642
	/* Find buffer for new tuple */

	if ((unsigned) MAXALIGN(newtup->t_len) <= PageGetFreeSpace((Page) dp))
		newbuf = buffer;
	else
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665
	{
#ifdef XLOG
		/* 
		 * We have to unlock old tuple buffer before extending table
		 * file but have to keep lock on the old tuple. To avoid second
		 * XLOG log record we use xact mngr hook to unlock old tuple
		 * without reading log if xact will abort before update is logged.
		 * In the event of crash prio logging, TQUAL routines will see
		 * HEAP_XMAX_UNLOGGED flag...
		 */
		_locked_tuple = *otid;
		XactPushRollback(_heap_unlock_tuple, (void*) &_locked_tuple);
#endif
		TransactionIdStore(GetCurrentTransactionId(), &(oldtup.t_data->t_xmax));
		oldtup.t_data->t_cmax = GetCurrentCommandId();
		oldtup.t_data->t_infomask &= ~(HEAP_XMAX_COMMITTED |
								 HEAP_XMAX_INVALID | HEAP_MARKED_FOR_UPDATE);
		oldtup.t_data->t_infomask |= HEAP_XMAX_UNLOGGED;
		LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
		newbuf = RelationGetBufferForTuple(relation, newtup->t_len);
		/* this seems to be deadlock free... */
		LockBuffer(buffer, BUFFER_LOCK_EXCLUSIVE);
	}
V
Vadim B. Mikheev 已提交
1666 1667 1668 1669 1670 1671

	/* NO ELOG(ERROR) from here till changes are logged */

	/* insert new tuple */
	RelationPutHeapTuple(relation, newbuf, newtup);

1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
	if (buffer == newbuf)
	{
		TransactionIdStore(GetCurrentTransactionId(), &(oldtup.t_data->t_xmax));
		oldtup.t_data->t_cmax = GetCurrentCommandId();
		oldtup.t_data->t_infomask &= ~(HEAP_XMAX_COMMITTED |
								 HEAP_XMAX_INVALID | HEAP_MARKED_FOR_UPDATE);
	}
	else
	{
		oldtup.t_data->t_infomask &= ~HEAP_XMAX_UNLOGGED;
#ifdef XLOG
		XactPopRollback();
#endif
	}
V
Vadim B. Mikheev 已提交
1686

V
Vadim B. Mikheev 已提交
1687 1688 1689 1690 1691
	/* record address of new tuple in t_ctid of old one */
	oldtup.t_data->t_ctid = newtup->t_self;

#ifdef XLOG
	/* XLOG stuff */
1692
	{
V
Vadim B. Mikheev 已提交
1693
		xl_heap_update	xlrec;
1694 1695 1696 1697
		xlrec.target.node = relation->rd_node;
		xlrec.target.cid = GetCurrentCommandId();
		xlrec.target.tid = oldtup.t_self;
		xlrec.newtid.tid = newtup->t_self;
V
Vadim B. Mikheev 已提交
1698 1699 1700 1701 1702
		xlrec.t_natts = newtup->t_data->t_natts;
		xlrec.t_hoff = newtup->t_data->t_hoff;
		xlrec.mask = newtup->t_data->t_infomask;
		
		XLogRecPtr recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_UPDATE,
1703 1704 1705
			(char*) xlrec, SizeOfHeapUpdate, 
			(char*) newtup->t_data + offsetof(HeapTupleHeaderData, t_bits), 
			newtup->t_len - offsetof(HeapTupleHeaderData, t_bits));
B
Bruce Momjian 已提交
1706

V
Vadim B. Mikheev 已提交
1707 1708
		if (newbuf != buffer)
		{
1709 1710
			PageSetLSN(BufferGetPage(newbuf), recptr);
			PageSetSUI(BufferGetPage(newbuf), ThisStartUpID);
V
Vadim B. Mikheev 已提交
1711
		}
1712 1713
		PageSetLSN(BufferGetPage(buffer), recptr);
		PageSetSUI(BufferGetPage(buffer), ThisStartUpID);
1714
	}
V
Vadim B. Mikheev 已提交
1715
#endif
1716

V
Vadim B. Mikheev 已提交
1717 1718 1719 1720 1721
	if (newbuf != buffer)
	{
		LockBuffer(newbuf, BUFFER_LOCK_UNLOCK);
		WriteBuffer(newbuf);
	}
V
Vadim B. Mikheev 已提交
1722
	LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
V
Vadim B. Mikheev 已提交
1723
	WriteBuffer(buffer);
V
Vadim B. Mikheev 已提交
1724 1725

	/* invalidate caches */
1726
	RelationInvalidateHeapTuple(relation, &oldtup);
V
Vadim B. Mikheev 已提交
1727
	RelationMark4RollbackHeapTuple(relation, newtup);
1728

V
Vadim B. Mikheev 已提交
1729 1730 1731 1732 1733 1734 1735 1736 1737
	return HeapTupleMayBeUpdated;
}

/*
 *	heap_mark4update		- mark a tuple for update
 */
int
heap_mark4update(Relation relation, HeapTuple tuple, Buffer *buffer)
{
B
Bruce Momjian 已提交
1738 1739 1740 1741
	ItemPointer tid = &(tuple->t_self);
	ItemId		lp;
	PageHeader	dp;
	int			result;
V
Vadim B. Mikheev 已提交
1742

1743
	tuple->tableOid = relation->rd_id;
V
Vadim B. Mikheev 已提交
1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756
	/* increment access statistics */
	IncrHeapAccessStat(local_mark4update);
	IncrHeapAccessStat(global_mark4update);

	*buffer = ReadBuffer(relation, ItemPointerGetBlockNumber(tid));

	if (!BufferIsValid(*buffer))
		elog(ERROR, "heap_mark4update: failed ReadBuffer");

	LockBuffer(*buffer, BUFFER_LOCK_EXCLUSIVE);

	dp = (PageHeader) BufferGetPage(*buffer);
	lp = PageGetItemId(dp, ItemPointerGetOffsetNumber(tid));
1757
	tuple->t_datamcxt = NULL;
V
Vadim B. Mikheev 已提交
1758 1759
	tuple->t_data = (HeapTupleHeader) PageGetItem((Page) dp, lp);
	tuple->t_len = ItemIdGetLength(lp);
B
Bruce Momjian 已提交
1760

V
Vadim B. Mikheev 已提交
1761 1762
l3:
	result = HeapTupleSatisfiesUpdate(tuple);
B
Bruce Momjian 已提交
1763

V
Vadim B. Mikheev 已提交
1764 1765 1766 1767 1768 1769 1770 1771
	if (result == HeapTupleInvisible)
	{
		LockBuffer(*buffer, BUFFER_LOCK_UNLOCK);
		ReleaseBuffer(*buffer);
		elog(ERROR, "heap_mark4update: (am)invalid tid");
	}
	else if (result == HeapTupleBeingUpdated)
	{
B
Bruce Momjian 已提交
1772
		TransactionId xwait = tuple->t_data->t_xmax;
V
Vadim B. Mikheev 已提交
1773 1774 1775 1776 1777 1778 1779 1780

		/* sleep untill concurrent transaction ends */
		LockBuffer(*buffer, BUFFER_LOCK_UNLOCK);
		XactLockTableWait(xwait);

		LockBuffer(*buffer, BUFFER_LOCK_EXCLUSIVE);
		if (TransactionIdDidAbort(xwait))
			goto l3;
1781 1782 1783 1784 1785

		/*
		 * xwait is committed but if xwait had just marked the tuple for
		 * update then some other xaction could update this tuple before
		 * we got to this point.
1786 1787 1788
		 */
		if (tuple->t_data->t_xmax != xwait)
			goto l3;
V
Vadim B. Mikheev 已提交
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802
		if (!(tuple->t_data->t_infomask & HEAP_XMAX_COMMITTED))
		{
			tuple->t_data->t_infomask |= HEAP_XMAX_COMMITTED;
			SetBufferCommitInfoNeedsSave(*buffer);
		}
		/* if tuple was marked for update but not updated... */
		if (tuple->t_data->t_infomask & HEAP_MARKED_FOR_UPDATE)
			result = HeapTupleMayBeUpdated;
		else
			result = HeapTupleUpdated;
	}
	if (result != HeapTupleMayBeUpdated)
	{
		Assert(result == HeapTupleSelfUpdated || result == HeapTupleUpdated);
1803
		tuple->t_self = tuple->t_data->t_ctid;
V
Vadim B. Mikheev 已提交
1804 1805 1806 1807
		LockBuffer(*buffer, BUFFER_LOCK_UNLOCK);
		return result;
	}

V
Vadim B. Mikheev 已提交
1808 1809 1810 1811 1812 1813 1814 1815
#ifdef XLOG
	/*
	 * XLOG stuff: no logging is required as long as we have no
	 * savepoints. For savepoints private log could be used...
	 */
	((PageHeader) BufferGetPage(*buffer))->pd_sui = ThisStartUpID;
#endif

V
Vadim B. Mikheev 已提交
1816 1817 1818 1819 1820 1821 1822 1823 1824
	/* store transaction information of xact marking the tuple */
	TransactionIdStore(GetCurrentTransactionId(), &(tuple->t_data->t_xmax));
	tuple->t_data->t_cmax = GetCurrentCommandId();
	tuple->t_data->t_infomask &= ~(HEAP_XMAX_COMMITTED | HEAP_XMAX_INVALID);
	tuple->t_data->t_infomask |= HEAP_MARKED_FOR_UPDATE;

	LockBuffer(*buffer, BUFFER_LOCK_UNLOCK);

	WriteNoReleaseBuffer(*buffer);
1825

V
Vadim B. Mikheev 已提交
1826
	return HeapTupleMayBeUpdated;
1827 1828 1829
}

/* ----------------
1830
 *		heap_markpos	- mark scan position
1831
 *
1832 1833 1834 1835 1836 1837
 *		Note:
 *				Should only one mark be maintained per scan at one time.
 *		Check if this can be done generally--say calls to get the
 *		next/previous tuple and NEVER pass struct scandesc to the
 *		user AM's.  Now, the mark is sent to the executor for safekeeping.
 *		Probably can store this info into a GENERAL scan structure.
1838
 *
1839 1840 1841
 *		May be best to change this call to store the marked position
 *		(up to 2?) in the scan structure itself.
 *		Fix to use the proper caching structure.
1842 1843 1844
 * ----------------
 */
void
1845
heap_markpos(HeapScanDesc scan)
1846
{
1847 1848 1849 1850 1851 1852 1853 1854 1855 1856

	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_markpos);
	IncrHeapAccessStat(global_markpos);

	/* Note: no locking manipulations needed */

1857
	if (scan->rs_ptup.t_data == NULL &&
1858
		BufferIsUnknown(scan->rs_pbuf))
1859
	{							/* == NONTUP */
1860 1861 1862 1863 1864 1865 1866 1867
		scan->rs_ptup = scan->rs_ctup;
		heapgettup(scan->rs_rd,
				   &(scan->rs_ptup),
				   -1,
				   &scan->rs_pbuf,
				   scan->rs_snapshot,
				   scan->rs_nkeys,
				   scan->rs_key);
1868 1869

	}
1870
	else if (scan->rs_ntup.t_data == NULL &&
1871
			 BufferIsUnknown(scan->rs_nbuf))
1872
	{							/* == NONTUP */
1873 1874 1875 1876 1877 1878 1879 1880
		scan->rs_ntup = scan->rs_ctup;
		heapgettup(scan->rs_rd,
				   &(scan->rs_ntup),
				   1,
				   &scan->rs_nbuf,
				   scan->rs_snapshot,
				   scan->rs_nkeys,
				   scan->rs_key);
1881 1882 1883 1884 1885 1886
	}

	/* ----------------
	 * Should not unpin the buffer pages.  They may still be in use.
	 * ----------------
	 */
1887 1888
	if (scan->rs_ptup.t_data != NULL)
		scan->rs_mptid = scan->rs_ptup.t_self;
1889
	else
1890
		ItemPointerSetInvalid(&scan->rs_mptid);
1891 1892
	if (scan->rs_ctup.t_data != NULL)
		scan->rs_mctid = scan->rs_ctup.t_self;
1893
	else
1894
		ItemPointerSetInvalid(&scan->rs_mctid);
1895 1896
	if (scan->rs_ntup.t_data != NULL)
		scan->rs_mntid = scan->rs_ntup.t_self;
1897
	else
1898
		ItemPointerSetInvalid(&scan->rs_mntid);
1899 1900 1901
}

/* ----------------
1902
 *		heap_restrpos	- restore position to marked location
1903
 *
1904 1905 1906 1907 1908
 *		Note:  there are bad side effects here.  If we were past the end
 *		of a relation when heapmarkpos is called, then if the relation is
 *		extended via insert, then the next call to heaprestrpos will set
 *		cause the added tuples to be visible when the scan continues.
 *		Problems also arise if the TID's are rearranged!!!
1909
 *
1910 1911 1912
 *		Now pins buffer once for each valid tuple pointer (rs_ptup,
 *		rs_ctup, rs_ntup) referencing it.
 *		 - 01/13/94
1913 1914
 *
 * XXX	might be better to do direct access instead of
1915
 *		using the generality of heapgettup().
1916 1917 1918 1919 1920 1921 1922
 *
 * XXX It is very possible that when a scan is restored, that a tuple
 * XXX which previously qualified may fail for time range purposes, unless
 * XXX some form of locking exists (ie., portals currently can act funny.
 * ----------------
 */
void
1923
heap_restrpos(HeapScanDesc scan)
1924
{
1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935
	/* ----------------
	 *	increment access statistics
	 * ----------------
	 */
	IncrHeapAccessStat(local_restrpos);
	IncrHeapAccessStat(global_restrpos);

	/* XXX no amrestrpos checking that ammarkpos called */

	/* Note: no locking manipulations needed */

1936
	unpinscan(scan);
1937 1938

	/* force heapgettup to pin buffer for each loaded tuple */
1939 1940 1941
	scan->rs_pbuf = InvalidBuffer;
	scan->rs_cbuf = InvalidBuffer;
	scan->rs_nbuf = InvalidBuffer;
1942

1943
	if (!ItemPointerIsValid(&scan->rs_mptid))
1944 1945
	{
		scan->rs_ptup.t_datamcxt = NULL;
1946
		scan->rs_ptup.t_data = NULL;
1947
	}
1948 1949
	else
	{
1950
		scan->rs_ptup.t_self = scan->rs_mptid;
1951
		scan->rs_ptup.t_datamcxt = NULL;
1952 1953 1954 1955 1956 1957 1958 1959
		scan->rs_ptup.t_data = (HeapTupleHeader) 0x1;	/* for heapgettup */
		heapgettup(scan->rs_rd,
				   &(scan->rs_ptup),
				   0,
				   &(scan->rs_pbuf),
				   false,
				   0,
				   (ScanKey) NULL);
1960 1961
	}

1962
	if (!ItemPointerIsValid(&scan->rs_mctid))
1963 1964
	{
		scan->rs_ctup.t_datamcxt = NULL;
1965
		scan->rs_ctup.t_data = NULL;
1966
	}
1967 1968
	else
	{
1969
		scan->rs_ctup.t_self = scan->rs_mctid;
1970
		scan->rs_ctup.t_datamcxt = NULL;
1971 1972 1973 1974 1975 1976 1977 1978
		scan->rs_ctup.t_data = (HeapTupleHeader) 0x1;	/* for heapgettup */
		heapgettup(scan->rs_rd,
				   &(scan->rs_ctup),
				   0,
				   &(scan->rs_cbuf),
				   false,
				   0,
				   (ScanKey) NULL);
1979 1980
	}

1981
	if (!ItemPointerIsValid(&scan->rs_mntid))
1982 1983
	{
		scan->rs_ntup.t_datamcxt = NULL;
1984
		scan->rs_ntup.t_data = NULL;
1985
	}
1986 1987
	else
	{
1988
		scan->rs_ntup.t_datamcxt = NULL;
1989 1990 1991 1992 1993 1994 1995 1996 1997
		scan->rs_ntup.t_self = scan->rs_mntid;
		scan->rs_ntup.t_data = (HeapTupleHeader) 0x1;	/* for heapgettup */
		heapgettup(scan->rs_rd,
				   &(scan->rs_ntup),
				   0,
				   &scan->rs_nbuf,
				   false,
				   0,
				   (ScanKey) NULL);
1998
	}
1999
}
2000 2001 2002 2003 2004

#ifdef XLOG
void heap_redo(XLogRecPtr lsn, XLogRecord *record)
{
	uint8	info = record->xl_info & ~XLR_INFO_MASK;
2005

2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
	if (info == XLOG_HEAP_INSERT)
		heap_xlog_insert(true, lsn, record);
	else if (info == XLOG_HEAP_DELETE)
		heap_xlog_delete(true, lsn, record);
	else if (info == XLOG_HEAP_UPDATE)
		heap_xlog_update(true, lsn, record);
	else if (info == XLOG_HEAP_MOVE)
		heap_xlog_move(true, lsn, record);
	else
		elog(STOP, "heap_redo: unknown op code %u", info);
}

2018
void heap_xlog_delete(bool redo, XLogRecPtr lsn, XLogRecord *record)
2019
{
2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
	xl_heap_delete *xlrec = (xl_heap_delete*) XLogRecGetData(record);
	Relation		reln = XLogOpenRelation(redo, RM_HEAP_ID, xlrec->target.node);

	if (!RelationIsValid(reln))
		return;
	Buffer buffer = XLogReadBuffer(false, reln, 
						ItemPointerGetBlockNumber(&(xlrec->target.tid)));
	if (!BufferIsValid(buffer))
		return;

	Page page = (Page) BufferGetPage(buffer);
	if (PageIsNew((PageHeader) page))
	{
		PageInit(page, BufferGetPageSize(buffer), 0);
		PageSetLSN(page, lsn);
		PageSetSUI(page, ThisStartUpID);
		UnlockAndWriteBuffer(buffer);
		return;
	}

	if (redo)
	{
		if (XLByteLE(lsn, PageGetLSN(page)))	/* changes are applied */
		{
			UnlockAndReleaseBuffer(buffer);
			return;
		}
	}
	else if (XLByteLT(PageGetLSN(page), lsn))	/* changes are not applied ?! */
		elog(STOP, "heap_delete_undo: bad page LSN");

	OffsetNumber	offnum = ItemPointerGetOffsetNumber(&(xlrec->target.tid));
	ItemId			lp = PageGetItemId(page, offnum);

	if (!ItemIdIsUsed(lp) || ItemIdDeleted(lp))
	{
		if (redo)
			elog(STOP, "heap_delete_redo: unused/deleted target tuple");
		if (!InRecovery)
			elog(STOP, "heap_delete_undo: unused/deleted target tuple in rollback");
		if (ItemIdDeleted(lp))
		{
			lp->lp_flags &= ~LP_USED;
			PageRepairFragmentation(page);
			UnlockAndWriteBuffer(buffer);
		}
		else
			UnlockAndReleaseBuffer(buffer);
		return;
	}
	HeapTupleHeader	htup = (HeapTupleHeader) PageGetItem(page, lp);

	if (redo)
	{
		htup->t_xmax = record->xl_xid;
		htup->t_cmax = xlrec->target.cid;
		htup->t_infomask &= ~(HEAP_XMAX_INVALID | HEAP_MARKED_FOR_UPDATE);
		htup->t_infomask |= HEAP_XMAX_COMMITTED;
		PageSetLSN(page, lsn);
		PageSetSUI(page, ThisStartUpID);
		UnlockAndWriteBuffer(buffer);
		return;
	}

	/* undo... is it our tuple ? */
	if (htup->t_xmax != record->xl_xid || htup->t_cmax != xlrec->target.cid)
	{
		if (!InRecovery)
			elog(STOP, "heap_delete_undo: invalid target tuple in rollback");
		UnlockAndReleaseBuffer(buffer);
		return;
	}
	else	/* undo DELETE */
	{
		htup->t_infomask |= HEAP_XMAX_INVALID;
		UnlockAndWriteBuffer(buffer);
		return;
	}

2099 2100 2101 2102
}

void heap_xlog_insert(bool redo, XLogRecPtr lsn, XLogRecord *record)
{
2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
	xl_heap_insert *xlrec = (xl_heap_insert*) XLogRecGetData(record);
	Relation		reln = XLogOpenRelation(redo, RM_HEAP_ID, xlrec->target.node);

	if (!RelationIsValid(reln))
		return;
	Buffer buffer = XLogReadBuffer((redo) ? true : false, reln, 
						ItemPointerGetBlockNumber(&(xlrec->target.tid)));
	if (!BufferIsValid(buffer))
		return;

	Page page = (Page) BufferGetPage(buffer);
	if (PageIsNew((PageHeader) page))
	{
		PageInit(page, BufferGetPageSize(buffer), 0);
		if (!redo)
		{
			PageSetLSN(page, lsn);
			PageSetSUI(page, ThisStartUpID);
			UnlockAndWriteBuffer(buffer);
			return;
		}
	}

	if (redo)
	{
		if (XLByteLE(lsn, PageGetLSN(page)))	/* changes are applied */
		{
			UnlockAndReleaseBuffer(buffer);
			return;
		}

		char			tbuf[MaxTupleSize];
		HeapTupleHeader	htup = (HeapTupleHeader) tbuf;
		uint32			newlen = record->xl_len - SizeOfHeapInsert;

		memcpy(tbuf + offsetof(HeapTupleHeaderData, t_bits), 
			(char*)xlrec + SizeOfHeapInsert, newlen);
		newlen += offsetof(HeapTupleHeaderData, t_bits);
		htup->t_oid = xlrec->t_oid;
		htup->t_natts = xlrec->t_natts;
		htup->t_hoff = xlrec->t_hoff;
		htup->t_xmin = record->xl_xid;
		htup->t_cmin = xlrec->target.cid;
		htup->t_infomask = HEAP_XMAX_INVALID | HEAP_XMIN_COMMITTED | xlrec->mask;
		
		PageManagerModeSet(OverwritePageManagerMode);
		OffsetNumber offnum = PageAddItem(page, htup, newlen, 
			ItemPointerGetOffsetNumber(&(xlrec->target.tid)), LP_USED);
		PageManagerModeSet(ShufflePageManagerMode);
		if (offnum == InvalidOffsetNumber)
			elog(STOP, "heap_insert_redo: failed to add tuple");
		PageSetLSN(page, lsn);
		PageSetSUI(page, ThisStartUpID);	/* prev sui */
		UnlockAndWriteBuffer(buffer);
		return;
	}

	/* undo insert */
	if (XLByteLT(PageGetLSN(page), lsn))	/* changes are not applied ?! */
		elog(STOP, "heap_insert_undo: bad page LSN");

	OffsetNumber	offnum = ItemPointerGetOffsetNumber(&(xlrec->target.tid));
	ItemId			lp = PageGetItemId(page, offnum);

	if (!ItemIdIsUsed(lp) || ItemIdDeleted(lp))
	{
		if (!InRecovery)
			elog(STOP, "heap_insert_undo: unused/deleted target tuple in rollback");
		if (ItemIdDeleted(lp))
		{
			lp->lp_flags &= ~LP_USED;
			PageRepairFragmentation(page);
			UnlockAndWriteBuffer(buffer);
		}
		else
			UnlockAndReleaseBuffer(buffer);
		return;
	}
	HeapTupleHeader	htup = (HeapTupleHeader) PageGetItem(page, lp);

	/* is it our tuple ? */
	if (htup->t_xmin != record->xl_xid || htup->t_cmin != xlrec->target.cid)
	{
		if (!InRecovery)
			elog(STOP, "heap_insert_undo: invalid target tuple in rollback");
		UnlockAndReleaseBuffer(buffer);
		return;
	}

	if (InRecovery || BufferIsUpdatable(buffer))
	{
		lp->lp_flags &= ~LP_USED;
		PageRepairFragmentation(page);
		UnlockAndWriteBuffer(buffer);
	}
	else	/* we can't delete tuple right now */
	{
		lp->lp_flags |= LP_DELETE;	/* mark for deletion */
		MarkBufferForCleanup(buffer, PageCleanup);
	}

}

void heap_xlog_update(bool redo, XLogRecPtr lsn, XLogRecord *record)
{
	xl_heap_update *xlrec = (xl_heap_update*) XLogRecGetData(record);
	Relation		reln = XLogOpenRelation(redo, RM_HEAP_ID, xlrec->target.node);

	if (!RelationIsValid(reln))
		return;
	Buffer			buffer;
	Page			page;
	OffsetNumber	offnum;
	ItemId			lp;
	HeapTupleHeader	htup;

	/* 
	 * Currently UPDATE is DELETE + INSERT and so code below are near
	 * exact sum of code in heap_xlog_delete & heap_xlog_insert. We could
	 * re-structure code better, but keeping in mind upcoming overwriting
	 * smgr separate heap_xlog_update code seems to be Good Thing.
	 */

	/* Deal with old tuple version */

	buffer = XLogReadBuffer(false, reln, 
					ItemPointerGetBlockNumber(&(xlrec->target.tid)));
	if (!BufferIsValid(buffer))
		goto newt;

	page = (Page) BufferGetPage(buffer);
	if (PageIsNew((PageHeader) page))
	{
		PageInit(page, BufferGetPageSize(buffer), 0);
		PageSetLSN(page, lsn);
		PageSetSUI(page, ThisStartUpID);
		UnlockAndWriteBuffer(buffer);
		goto newt;
	}

	if (redo)
	{
		if (XLByteLE(lsn, PageGetLSN(page)))	/* changes are applied */
		{
			UnlockAndReleaseBuffer(buffer);
			goto newt;
		}
	}
	else if (XLByteLT(PageGetLSN(page), lsn))	/* changes are not applied ?! */
		elog(STOP, "heap_update_undo: bad old tuple page LSN");

	offnum = ItemPointerGetOffsetNumber(&(xlrec->target.tid));
	lp = PageGetItemId(page, offnum);

	if (!ItemIdIsUsed(lp) || ItemIdDeleted(lp))
	{
		if (redo)
			elog(STOP, "heap_update_redo: unused/deleted old tuple");
		if (!InRecovery)
			elog(STOP, "heap_update_undo: unused/deleted old tuple in rollback");
		if (ItemIdDeleted(lp))
		{
			lp->lp_flags &= ~LP_USED;
			PageRepairFragmentation(page);
			UnlockAndWriteBuffer(buffer);
		}
		else
			UnlockAndReleaseBuffer(buffer);
		goto newt;
	}
	htup = (HeapTupleHeader) PageGetItem(page, lp);

	if (redo)
	{
		htup->t_xmax = record->xl_xid;
		htup->t_cmax = xlrec->target.cid;
		htup->t_infomask &= ~(HEAP_XMAX_INVALID | HEAP_MARKED_FOR_UPDATE);
		htup->t_infomask |= HEAP_XMAX_COMMITTED;
		PageSetLSN(page, lsn);
		PageSetSUI(page, ThisStartUpID);
		UnlockAndWriteBuffer(buffer);
		goto newt;
	}

	/* undo... is it our tuple ? */
	if (htup->t_xmax != record->xl_xid || htup->t_cmax != xlrec->target.cid)
	{
		if (!InRecovery)
			elog(STOP, "heap_update_undo: invalid old tuple in rollback");
		UnlockAndReleaseBuffer(buffer);
	}
	else	/* undo */
	{
		htup->t_infomask |= HEAP_XMAX_INVALID;
		UnlockAndWriteBuffer(buffer);
	}

	/* Deal with new tuple */

newt:;

	buffer = XLogReadBuffer((redo) ? true : false, reln, 
					ItemPointerGetBlockNumber(&(xlrec->newtid)));
	if (!BufferIsValid(buffer))
		return;

	page = (Page) BufferGetPage(buffer);
	if (PageIsNew((PageHeader) page))
	{
		PageInit(page, BufferGetPageSize(buffer), 0);
		if (!redo)
		{
			PageSetLSN(page, lsn);
			PageSetSUI(page, ThisStartUpID);
			UnlockAndWriteBuffer(buffer);
			return;
		}
	}

	if (redo)
	{
		if (XLByteLE(lsn, PageGetLSN(page)))	/* changes are applied */
		{
			UnlockAndReleaseBuffer(buffer);
			return;
		}

		char			tbuf[MaxTupleSize];
		uint32			newlen = record->xl_len - SizeOfHeapUpdate;

		htup = (HeapTupleHeader) tbuf;
		memcpy(tbuf + offsetof(HeapTupleHeaderData, t_bits), 
			(char*)xlrec + SizeOfHeapUpdate, newlen);
		newlen += offsetof(HeapTupleHeaderData, t_bits);
		htup->t_oid = xlrec->t_oid;
		htup->t_natts = xlrec->t_natts;
		htup->t_hoff = xlrec->t_hoff;
		htup->t_xmin = record->xl_xid;
		htup->t_cmin = xlrec->target.cid;
		htup->t_infomask = HEAP_XMAX_INVALID | HEAP_XMIN_COMMITTED | xlrec->mask;
		
		PageManagerModeSet(OverwritePageManagerMode);
		OffsetNumber offnum = PageAddItem(page, htup, newlen, 
			ItemPointerGetOffsetNumber(&(xlrec->newtid)), LP_USED);
		PageManagerModeSet(ShufflePageManagerMode);
		if (offnum == InvalidOffsetNumber)
			elog(STOP, "heap_update_redo: failed to add tuple");
		PageSetLSN(page, lsn);
		PageSetSUI(page, ThisStartUpID);	/* prev sui */
		UnlockAndWriteBuffer(buffer);
		return;
	}

	/* undo */
	if (XLByteLT(PageGetLSN(page), lsn))	/* changes are not applied ?! */
		elog(STOP, "heap_update_undo: bad new tuple page LSN");

	offnum = ItemPointerGetOffsetNumber(&(xlrec->newtid));
	lp = PageGetItemId(page, offnum);

	if (!ItemIdIsUsed(lp) || ItemIdDeleted(lp))
	{
		if (!InRecovery)
			elog(STOP, "heap_update_undo: unused/deleted new tuple in rollback");
		if (ItemIdDeleted(lp))
		{
			lp->lp_flags &= ~LP_USED;
			PageRepairFragmentation(page);
			UnlockAndWriteBuffer(buffer);
		}
		else
			UnlockAndReleaseBuffer(buffer);
		return;
	}
	htup = (HeapTupleHeader) PageGetItem(page, lp);

	/* is it our tuple ? */
	if (htup->t_xmin != record->xl_xid || htup->t_cmin != xlrec->target.cid)
	{
		if (!InRecovery)
			elog(STOP, "heap_update_undo: invalid new tuple in rollback");
		UnlockAndReleaseBuffer(buffer);
		return;
	}

	if (InRecovery || BufferIsUpdatable(buffer))
	{
		lp->lp_flags &= ~LP_USED;
		PageRepairFragmentation(page);
		UnlockAndWriteBuffer(buffer);
	}
	else	/* we can't delete tuple right now */
	{
		lp->lp_flags |= LP_DELETE;	/* mark for deletion */
		MarkBufferForCleanup(buffer, PageCleanup);
	}

2400 2401
}

2402

2403
#endif	/* XLOG */