aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/time/tqual.c
blob: 366bcf0431e176bf38929ddde65b09c4acf7432a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
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
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
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
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
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
/*-------------------------------------------------------------------------
 *
 * tqual.c--
 *	  POSTGRES time qualification code.
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
 *	  $Header: /cvsroot/pgsql/src/backend/utils/time/tqual.c,v 1.7 1997/09/08 21:49:37 momjian Exp $
 *
 *-------------------------------------------------------------------------
 */

/* #define TQUALDEBUG	1 */

#include "postgres.h"

#include "access/htup.h"
#include "access/xact.h"
#include "storage/bufmgr.h"
#include "access/transam.h"
#include "utils/elog.h"
#include "utils/palloc.h"
#include "utils/nabstime.h"

#include "utils/tqual.h"

static AbsoluteTime TimeQualGetEndTime(TimeQual qual);
static AbsoluteTime TimeQualGetSnapshotTime(TimeQual qual);
static AbsoluteTime TimeQualGetStartTime(TimeQual qual);
static bool TimeQualIncludesNow(TimeQual qual);
static bool TimeQualIndicatesDisableValidityChecking(TimeQual qual);
static bool TimeQualIsLegal(TimeQual qual);
static bool TimeQualIsRanged(TimeQual qual);
static bool TimeQualIsSnapshot(TimeQual qual);
static bool TimeQualIsValid(TimeQual qual);

/*
 * TimeQualMode --
 *		Mode indicator for treatment of time qualifications.
 */
typedef uint16 TimeQualMode;

#define TimeQualAt		0x1
#define TimeQualNewer	0x2
#define TimeQualOlder	0x4
#define TimeQualAll		0x8

#define TimeQualMask	0xf

#define TimeQualEvery	0x0
#define TimeQualRange	(TimeQualNewer | TimeQualOlder)
#define TimeQualAllAt	(TimeQualAt | TimeQualAll)

typedef struct TimeQualData
{
	AbsoluteTime start;
	AbsoluteTime end;
	TimeQualMode mode;
} TimeQualData;

typedef TimeQualData *InternalTimeQual;

static TimeQualData SelfTimeQualData;
TimeQual	SelfTimeQual = (Pointer) &SelfTimeQualData;

extern bool PostgresIsInitialized;

/*
 * XXX Transaction system override hacks start here
 */
#ifndef GOODAMI

static TransactionId HeapSpecialTransactionId = InvalidTransactionId;
static CommandId HeapSpecialCommandId = FirstCommandId;

void
setheapoverride(bool on)
{
	if (on)
	{
		TransactionIdStore(GetCurrentTransactionId(),
						   &HeapSpecialTransactionId);
		HeapSpecialCommandId = GetCurrentCommandId();
	}
	else
	{
		HeapSpecialTransactionId = InvalidTransactionId;
	}
}

/* static */
bool
heapisoverride()
{
	if (!TransactionIdIsValid(HeapSpecialTransactionId))
	{
		return (false);
	}

	if (!TransactionIdEquals(GetCurrentTransactionId(),
							 HeapSpecialTransactionId) ||
		GetCurrentCommandId() != HeapSpecialCommandId)
	{
		HeapSpecialTransactionId = InvalidTransactionId;

		return (false);
	}
	return (true);
}

#endif							/* !defined(GOODAMI) */
/*
 * XXX Transaction system override hacks end here
 */

static bool HeapTupleSatisfiesItself(HeapTuple tuple);
static bool HeapTupleSatisfiesNow(HeapTuple tuple);
static bool
HeapTupleSatisfiesSnapshotInternalTimeQual(HeapTuple tuple,
										   InternalTimeQual qual);
static bool
HeapTupleSatisfiesUpperBoundedInternalTimeQual(HeapTuple tuple,
											   InternalTimeQual qual);
static bool
HeapTupleSatisfiesUpperUnboundedInternalTimeQual(HeapTuple tuple,
												 InternalTimeQual qual);



/*
 * TimeQualIsValid --
 *		True iff time qualification is valid.
 */
static bool
TimeQualIsValid(TimeQual qual)
{
	bool		hasStartTime;

	if (!PointerIsValid(qual) || qual == SelfTimeQual)
	{
		return (true);
	}

	if (((InternalTimeQual) qual)->mode & ~TimeQualMask)
	{
		return (false);
	}

	if (((InternalTimeQual) qual)->mode & TimeQualAt)
	{
		return (AbsoluteTimeIsBackwardCompatiblyValid(((InternalTimeQual) qual)->start));
	}

	hasStartTime = false;

	if (((InternalTimeQual) qual)->mode & TimeQualNewer)
	{
		if (!AbsoluteTimeIsBackwardCompatiblyValid(((InternalTimeQual) qual)->start))
		{
			return (false);
		}
		hasStartTime = true;
	}

	if (((InternalTimeQual) qual)->mode & TimeQualOlder)
	{
		if (!AbsoluteTimeIsBackwardCompatiblyValid(((InternalTimeQual) qual)->end))
		{
			return (false);
		}
		if (hasStartTime)
		{
			return ((bool) !AbsoluteTimeIsBefore(
										  ((InternalTimeQual) qual)->end,
									  ((InternalTimeQual) qual)->start));
		}
	}
	return (true);
}

/*
 * TimeQualIsLegal --
 *		True iff time qualification is legal.
 *		I.e., true iff time qualification does not intersects the future,
 *		relative to the transaction start time.
 *
 * Note:
 *		Assumes time qualification is valid.
 */
static bool
TimeQualIsLegal(TimeQual qual)
{
	Assert(TimeQualIsValid(qual));

	if (qual == NowTimeQual || qual == SelfTimeQual)
	{
		return (true);
	}

	/* TimeQualAt */
	if (((InternalTimeQual) qual)->mode & TimeQualAt)
	{
		AbsoluteTime a,
					b;

		a = ((InternalTimeQual) qual)->start;
		b = GetCurrentTransactionStartTime();

		if (AbsoluteTimeIsAfter(a, b))
			return (false);
		else
			return (true);
	}

	/* TimeQualOlder or TimeQualRange */
	if (((InternalTimeQual) qual)->mode & TimeQualOlder)
	{
		AbsoluteTime a,
					b;

		a = ((InternalTimeQual) qual)->end;
		b = GetCurrentTransactionStartTime();

		if (AbsoluteTimeIsAfter(a, b))
			return (false);
		else
			return (true);
	}

	/* TimeQualNewer */
	if (((InternalTimeQual) qual)->mode & TimeQualNewer)
	{
		AbsoluteTime a,
					b;

		a = ((InternalTimeQual) qual)->start;
		b = GetCurrentTransactionStartTime();

		if (AbsoluteTimeIsAfter(a, b))
			return (false);
		else
			return (true);
	}

	/* TimeQualEvery */
	return (true);
}

/*
 * TimeQualIncludesNow --
 *		True iff time qualification includes "now."
 *
 * Note:
 *		Assumes time qualification is valid.
 */
static bool
TimeQualIncludesNow(TimeQual qual)
{
	Assert(TimeQualIsValid(qual));

	if (qual == NowTimeQual || qual == SelfTimeQual)
	{
		return (true);
	}

	if (((InternalTimeQual) qual)->mode & TimeQualAt)
	{
		return (false);
	}
	if (((InternalTimeQual) qual)->mode & TimeQualOlder &&
		!AbsoluteTimeIsAfter(
							 ((InternalTimeQual) qual)->end,
							 GetCurrentTransactionStartTime()))
	{

		return (false);
	}
	return (true);
}

/*
 * TimeQualIncludesPast --
 *		True iff time qualification includes some time in the past.
 *
 * Note:
 *		Assumes time qualification is valid.
 *		XXX may not be needed?
 */
#ifdef NOT_USED
bool
TimeQualIncludesPast(TimeQual qual)
{
	Assert(TimeQualIsValid(qual));

	if (qual == NowTimeQual || qual == SelfTimeQual)
	{
		return (false);
	}

	/* otherwise, must check archive (setting locks as appropriate) */
	return (true);
}

#endif

/*
 * TimeQualIsSnapshot --
 *		True iff time qualification is a snapshot qualification.
 *
 * Note:
 *		Assumes time qualification is valid.
 */
static bool
TimeQualIsSnapshot(TimeQual qual)
{
	Assert(TimeQualIsValid(qual));

	if (qual == NowTimeQual || qual == SelfTimeQual)
	{
		return (false);
	}

	return ((bool) !!(((InternalTimeQual) qual)->mode & TimeQualAt));
}

/*
 * TimeQualIsRanged --
 *		True iff time qualification is a ranged qualification.
 *
 * Note:
 *		Assumes time qualification is valid.
 */
static bool
TimeQualIsRanged(TimeQual qual)
{
	Assert(TimeQualIsValid(qual));

	if (qual == NowTimeQual || qual == SelfTimeQual)
	{
		return (false);
	}

	return ((bool) !(((InternalTimeQual) qual)->mode & TimeQualAt));
}

/*
 * TimeQualIndicatesDisableValidityChecking --
 *		True iff time qualification indicates validity checking should be
 *		disabled.
 *
 * Note:
 *		XXX This should not be implemented since this does not make sense.
 */
static bool
TimeQualIndicatesDisableValidityChecking(TimeQual qual)
{
	Assert(TimeQualIsValid(qual));

	if (qual == NowTimeQual || qual == SelfTimeQual)
	{
		return (false);
	}

	if (((InternalTimeQual) qual)->mode & TimeQualAll)
	{
		return (true);
	}
	return (false);
}

/*
 * TimeQualGetSnapshotTime --
 *		Returns time for a snapshot time qual.
 *
 * Note:
 *		Assumes time qual is valid snapshot time qual.
 */
static AbsoluteTime
TimeQualGetSnapshotTime(TimeQual qual)
{
	Assert(TimeQualIsSnapshot(qual));

	return (((InternalTimeQual) qual)->start);
}

/*
 * TimeQualGetStartTime --
 *		Returns start time for a ranged time qual.
 *
 * Note:
 *		Assumes time qual is valid ranged time qual.
 */
static AbsoluteTime
TimeQualGetStartTime(TimeQual qual)
{
	Assert(TimeQualIsRanged(qual));

	return (((InternalTimeQual) qual)->start);
}

/*
 * TimeQualGetEndTime --
 *		Returns end time for a ranged time qual.
 *
 * Note:
 *		Assumes time qual is valid ranged time qual.
 */
static AbsoluteTime
TimeQualGetEndTime(TimeQual qual)
{
	Assert(TimeQualIsRanged(qual));

	return (((InternalTimeQual) qual)->end);
}

/*
 * TimeFormSnapshotTimeQual --
 *		Returns snapshot time qual for a time.
 *
 * Note:
 *		Assumes time is valid.
 */
TimeQual
TimeFormSnapshotTimeQual(AbsoluteTime time)
{
	InternalTimeQual qual;

	Assert(AbsoluteTimeIsBackwardCompatiblyValid(time));

	qual = (InternalTimeQual) palloc(sizeof *qual);

	qual->start = time;
	qual->end = INVALID_ABSTIME;
	qual->mode = TimeQualAt;

	return ((TimeQual) qual);
}

/*
 * TimeFormRangedTimeQual --
 *		Returns ranged time qual for a pair of times.
 *
 * Note:
 *		If start time is invalid, it is regarded as the epoch.
 *		If end time is invalid, it is regarded as "now."
 *		Assumes start time is before (or the same as) end time.
 */
TimeQual
TimeFormRangedTimeQual(AbsoluteTime startTime,
					   AbsoluteTime endTime)
{
	InternalTimeQual qual;

	qual = (InternalTimeQual) palloc(sizeof *qual);

	qual->start = startTime;
	qual->end = endTime;
	qual->mode = TimeQualEvery;

	if (AbsoluteTimeIsBackwardCompatiblyValid(startTime))
	{
		qual->mode |= TimeQualNewer;
	}
	if (AbsoluteTimeIsBackwardCompatiblyValid(endTime))
	{
		qual->mode |= TimeQualOlder;
	}

	return ((TimeQual) qual);
}

/*
 * HeapTupleSatisfiesTimeQual --
 *		True iff heap tuple satsifies a time qual.
 *
 * Note:
 *		Assumes heap tuple is valid.
 *		Assumes time qual is valid.
 *		XXX Many of the checks may be simplified and still remain correct.
 *		XXX Partial answers to the checks may be cached in an ItemId.
 */
bool
HeapTupleSatisfiesTimeQual(HeapTuple tuple, TimeQual qual)
{
/*	  extern TransactionId AmiTransactionId; */

	Assert(HeapTupleIsValid(tuple));
	Assert(TimeQualIsValid(qual));

	if (TransactionIdEquals(tuple->t_xmax, AmiTransactionId))
		return (false);

	if (qual == SelfTimeQual || heapisoverride())
	{
		return (HeapTupleSatisfiesItself(tuple));
	}

	if (qual == NowTimeQual)
	{
		return (HeapTupleSatisfiesNow(tuple));
	}

	if (!TimeQualIsLegal(qual))
	{
		elog(WARN, "HeapTupleSatisfiesTimeQual: illegal time qual");
	}

	if (TimeQualIndicatesDisableValidityChecking(qual))
	{
		elog(WARN, "HeapTupleSatisfiesTimeQual: no disabled validity checking (yet)");
	}

	if (TimeQualIsSnapshot(qual))
	{
		return (HeapTupleSatisfiesSnapshotInternalTimeQual(tuple,
											   (InternalTimeQual) qual));
	}

	if (TimeQualIncludesNow(qual))
	{
		return (HeapTupleSatisfiesUpperUnboundedInternalTimeQual(tuple,
											   (InternalTimeQual) qual));
	}

	return (HeapTupleSatisfiesUpperBoundedInternalTimeQual(tuple,
											   (InternalTimeQual) qual));
}

/*
 * HeapTupleSatisfiesItself --
 *		True iff heap tuple is valid for "itself."
 *		"{it}self" means valid as of everything that's happened
 *		in the current transaction, _including_ the current command.
 *
 * Note:
 *		Assumes heap tuple is valid.
 */
/*
 * The satisfaction of "itself" requires the following:
 *
 * ((Xmin == my-transaction &&				the row was updated by the current transaction, and
 *		(Xmax is null						it was not deleted
 *		 [|| Xmax != my-transaction)])			[or it was deleted by another transaction]
 * ||
 *
 * (Xmin is committed &&					the row was modified by a committed transaction, and
 *		(Xmax is null ||					the row has not been deleted, or
 *			(Xmax != my-transaction &&			the row was deleted by another transaction
 *			 Xmax is not committed)))			that has not been committed
 */
static bool
HeapTupleSatisfiesItself(HeapTuple tuple)
{

	/*
	 * XXX Several evil casts are made in this routine.  Casting XID to be
	 * TransactionId works only because TransactionId->data is the first
	 * (and only) field of the structure.
	 */
	if (!AbsoluteTimeIsBackwardCompatiblyValid(tuple->t_tmin))
	{
		if (TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmin) &&
			!TransactionIdIsValid((TransactionId) tuple->t_xmax))
		{
			return (true);
		}

		if (!TransactionIdDidCommit((TransactionId) tuple->t_xmin))
		{
			return (false);
		}

		tuple->t_tmin = TransactionIdGetCommitTime(tuple->t_xmin);
	}
	/* the tuple was inserted validly */

	if (AbsoluteTimeIsBackwardCompatiblyReal(tuple->t_tmax))
	{
		return (false);
	}

	if (!TransactionIdIsValid((TransactionId) tuple->t_xmax))
	{
		return (true);
	}

	if (TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmax))
	{
		return (false);
	}

	if (!TransactionIdDidCommit((TransactionId) tuple->t_xmax))
	{
		return (true);
	}

	/* by here, deleting transaction has committed */
	tuple->t_tmax = TransactionIdGetCommitTime(tuple->t_xmax);

	return (false);
}

/*
 * HeapTupleSatisfiesNow --
 *		True iff heap tuple is valid "now."
 *		"now" means valid including everything that's happened
 *		 in the current transaction _up to, but not including,_
 *		 the current command.
 *
 * Note:
 *		Assumes heap tuple is valid.
 */
/*
 * The satisfaction of "now" requires the following:
 *
 * ((Xmin == my-transaction &&				changed by the current transaction
 *	 Cmin != my-command &&					but not by this command, and
 *		(Xmax is null ||						the row has not been deleted, or
 *			(Xmax == my-transaction &&			it was deleted by the current transaction
 *			 Cmax != my-command)))				but not by this command,
 * ||										or
 *
 *	(Xmin is committed &&					the row was modified by a committed transaction, and
 *		(Xmax is null ||					the row has not been deleted, or
 *			(Xmax == my-transaction &&			the row is being deleted by this command, or
 *			 Cmax == my-command) ||
 *			(Xmax is not committed &&			the row was deleted by another transaction
 *			 Xmax != my-transaction))))			that has not been committed
 *
 * XXX
 *		CommandId stuff didn't work properly if one used SQL-functions in
 *		UPDATE/INSERT(fromSELECT)/DELETE scans: SQL-funcs call
 *		CommandCounterIncrement and made tuples changed/inserted by
 *		current command visible to command itself (so we had multiple
 *		update of updated tuples, etc).			- vadim 08/29/97
 *
 *		mao says 17 march 1993:  the tests in this routine are correct;
 *		if you think they're not, you're wrong, and you should think
 *		about it again.  i know, it happened to me.  we don't need to
 *		check commit time against the start time of this transaction
 *		because 2ph locking protects us from doing the wrong thing.
 *		if you mess around here, you'll break serializability.  the only
 *		problem with this code is that it does the wrong thing for system
 *		catalog updates, because the catalogs aren't subject to 2ph, so
 *		the serializability guarantees we provide don't extend to xacts
 *		that do catalog accesses.  this is unfortunate, but not critical.
 */
static bool
HeapTupleSatisfiesNow(HeapTuple tuple)
{
	if (AMI_OVERRIDE)
		return true;

	/*
	 * If the transaction system isn't yet initialized, then we assume
	 * that transactions committed.  We only look at system catalogs
	 * during startup, so this is less awful than it seems, but it's still
	 * pretty awful.
	 */

	if (!PostgresIsInitialized)
		return ((bool) (TransactionIdIsValid((TransactionId) tuple->t_xmin) &&
				  !TransactionIdIsValid((TransactionId) tuple->t_xmax)));

	/*
	 * XXX Several evil casts are made in this routine.  Casting XID to be
	 * TransactionId works only because TransactionId->data is the first
	 * (and only) field of the structure.
	 */
	if (!AbsoluteTimeIsBackwardCompatiblyValid(tuple->t_tmin))
	{

		if (TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmin)
			&& CommandIdGEScanCommandId(tuple->t_cmin))
		{

			return (false);
		}

		if (TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmin)
			&& !CommandIdGEScanCommandId(tuple->t_cmin))
		{

			if (!TransactionIdIsValid((TransactionId) tuple->t_xmax))
			{
				return (true);
			}

			Assert(TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmax));

			if (CommandIdGEScanCommandId(tuple->t_cmax))
			{
				return (true);
			}
		}

		/*
		 * this call is VERY expensive - requires a log table lookup.
		 */

		if (!TransactionIdDidCommit((TransactionId) tuple->t_xmin))
		{
			return (false);
		}

		/*
		 * the transaction has been committed--store the commit time _now_
		 * instead of waiting for a vacuum so we avoid the expensive call
		 * next time.
		 */
		tuple->t_tmin = TransactionIdGetCommitTime(tuple->t_xmin);
	}

	/* by here, the inserting transaction has committed */
	if (!TransactionIdIsValid((TransactionId) tuple->t_xmax))
	{
		return (true);
	}

	if (TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmax))
	{
		return (false);
	}

	if (AbsoluteTimeIsBackwardCompatiblyReal(tuple->t_tmax))
	{
		return (false);
	}

	if (!TransactionIdDidCommit((TransactionId) tuple->t_xmax))
	{
		return (true);
	}

	/* xmax transaction committed, but no tmax set.  so set it. */
	tuple->t_tmax = TransactionIdGetCommitTime(tuple->t_xmax);

	return (false);
}

/*
 * HeapTupleSatisfiesSnapshotInternalTimeQual --
 *		True iff heap tuple is valid at the snapshot time qualification.
 *
 * Note:
 *		Assumes heap tuple is valid.
 *		Assumes internal time qualification is valid snapshot qualification.
 */
/*
 * The satisfaction of Rel[T] requires the following:
 *
 * (Xmin is committed && Tmin <= T &&
 *		(Xmax is null || (Xmax is not committed && Xmax != my-transaction) ||
 *				Tmax >= T))
 */
static bool
HeapTupleSatisfiesSnapshotInternalTimeQual(HeapTuple tuple,
										   InternalTimeQual qual)
{

	/*
	 * XXX Several evil casts are made in this routine.  Casting XID to be
	 * TransactionId works only because TransactionId->data is the first
	 * (and only) field of the structure.
	 */
	if (!AbsoluteTimeIsBackwardCompatiblyValid(tuple->t_tmin))
	{

		if (!TransactionIdDidCommit((TransactionId) tuple->t_xmin))
		{
			return (false);
		}

		tuple->t_tmin = TransactionIdGetCommitTime(tuple->t_xmin);
	}

	if (AbsoluteTimeIsBefore(TimeQualGetSnapshotTime((TimeQual) qual), tuple->t_tmin))
	{
		return (false);
	}
	/* the tuple was inserted validly before the snapshot time */

	if (!AbsoluteTimeIsBackwardCompatiblyReal(tuple->t_tmax))
	{

		if (!TransactionIdIsValid((TransactionId) tuple->t_xmax) ||
			!TransactionIdDidCommit((TransactionId) tuple->t_xmax))
		{

			return (true);
		}

		tuple->t_tmax = TransactionIdGetCommitTime(tuple->t_xmax);
	}

	return ((bool)
			AbsoluteTimeIsAfter(tuple->t_tmax,
							  TimeQualGetSnapshotTime((TimeQual) qual)));
}

/*
 * HeapTupleSatisfiesUpperBoundedInternalTimeQual --
 *		True iff heap tuple is valid within a upper bounded time qualification.
 *
 * Note:
 *		Assumes heap tuple is valid.
 *		Assumes time qualification is valid ranged qualification with fixed
 *		upper bound.
 */
/*
 * The satisfaction of [T1,T2] requires the following:
 *
 * (Xmin is committed && Tmin <= T2 &&
 *		(Xmax is null || (Xmax is not committed && Xmax != my-transaction) ||
 *				T1 is null || Tmax >= T1))
 */
static bool
HeapTupleSatisfiesUpperBoundedInternalTimeQual(HeapTuple tuple,
											   InternalTimeQual qual)
{

	/*
	 * XXX Several evil casts are made in this routine.  Casting XID to be
	 * TransactionId works only because TransactionId->data is the first
	 * (and only) field of the structure.
	 */
	if (!AbsoluteTimeIsBackwardCompatiblyValid(tuple->t_tmin))
	{

		if (!TransactionIdDidCommit((TransactionId) tuple->t_xmin))
		{
			return (false);
		}

		tuple->t_tmin = TransactionIdGetCommitTime(tuple->t_xmin);
	}

	if (AbsoluteTimeIsBefore(TimeQualGetEndTime((TimeQual) qual), tuple->t_tmin))
	{
		return (false);
	}
	/* the tuple was inserted validly before the range end */

	if (!AbsoluteTimeIsBackwardCompatiblyValid(TimeQualGetStartTime((TimeQual) qual)))
	{
		return (true);
	}

	if (!AbsoluteTimeIsBackwardCompatiblyReal(tuple->t_tmax))
	{

		if (!TransactionIdIsValid((TransactionId) tuple->t_xmax) ||
			!TransactionIdDidCommit((TransactionId) tuple->t_xmax))
		{

			return (true);
		}

		tuple->t_tmax = TransactionIdGetCommitTime(tuple->t_xmax);
	}

	return ((bool) AbsoluteTimeIsAfter(tuple->t_tmax,
								 TimeQualGetStartTime((TimeQual) qual)));
}

/*
 * HeapTupleSatisfiesUpperUnboundedInternalTimeQual --
 *		True iff heap tuple is valid within a upper bounded time qualification.
 *
 * Note:
 *		Assumes heap tuple is valid.
 *		Assumes time qualification is valid ranged qualification with no
 *		upper bound.
 */
/*
 * The satisfaction of [T1,] requires the following:
 *
 * ((Xmin == my-transaction && Cmin != my-command &&
 *		(Xmax is null || (Xmax == my-transaction && Cmax != my-command)))
 * ||
 *
 * (Xmin is committed &&
 *		(Xmax is null || (Xmax == my-transaction && Cmax == my-command) ||
 *				(Xmax is not committed && Xmax != my-transaction) ||
 *				T1 is null || Tmax >= T1)))
 */
static bool
HeapTupleSatisfiesUpperUnboundedInternalTimeQual(HeapTuple tuple,
												 InternalTimeQual qual)
{
	if (!AbsoluteTimeIsBackwardCompatiblyValid(tuple->t_tmin))
	{

		if (TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmin) &&
			CommandIdGEScanCommandId(tuple->t_cmin))
		{

			return (false);
		}

		if (TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmin) &&
			!CommandIdGEScanCommandId(tuple->t_cmin))
		{

			if (!TransactionIdIsValid((TransactionId) tuple->t_xmax))
			{
				return (true);
			}

			Assert(TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmax));

			return ((bool) !CommandIdGEScanCommandId(tuple->t_cmax));
		}

		if (!TransactionIdDidCommit((TransactionId) tuple->t_xmin))
		{
			return (false);
		}

		tuple->t_tmin = TransactionIdGetCommitTime(tuple->t_xmin);
	}
	/* the tuple was inserted validly */

	if (!AbsoluteTimeIsBackwardCompatiblyValid(TimeQualGetStartTime((TimeQual) qual)))
	{
		return (true);
	}

	if (!AbsoluteTimeIsBackwardCompatiblyReal(tuple->t_tmax))
	{

		if (!TransactionIdIsValid((TransactionId) tuple->t_xmax))
		{
			return (true);
		}

		if (TransactionIdIsCurrentTransactionId((TransactionId) tuple->t_xmax))
		{
			return (CommandIdGEScanCommandId(tuple->t_cmin));
			/* it looks like error					  ^^^^ */
		}

		if (!TransactionIdDidCommit((TransactionId) tuple->t_xmax))
		{
			return (true);
		}

		tuple->t_tmax = TransactionIdGetCommitTime(tuple->t_xmax);
	}

	return ((bool) AbsoluteTimeIsAfter(tuple->t_tmax,
								 TimeQualGetStartTime((TimeQual) qual)));
}