File tree 1 file changed +2
-8
lines changed
1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change 9
9
*
10
10
*
11
11
* IDENTIFICATION
12
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.83 2001/03/22 03:59:52 momjian Exp $
12
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/nabstime.c,v 1.84 2001/04/26 21:52:17 tgl Exp $
13
13
*
14
14
* NOTES
15
15
*
@@ -432,14 +432,11 @@ nabstimeout(PG_FUNCTION_ARGS)
432
432
433
433
/*
434
434
* AbsoluteTimeIsBefore -- true iff time1 is before time2.
435
- * AbsoluteTimeIsBefore -- true iff time1 is after time2.
435
+ * AbsoluteTimeIsAfter -- true iff time1 is after time2.
436
436
*/
437
437
bool
438
438
AbsoluteTimeIsBefore (AbsoluteTime time1 , AbsoluteTime time2 )
439
439
{
440
- Assert (AbsoluteTimeIsValid (time1 ));
441
- Assert (AbsoluteTimeIsValid (time2 ));
442
-
443
440
if (time1 == CURRENT_ABSTIME )
444
441
time1 = GetCurrentTransactionStartTime ();
445
442
@@ -453,9 +450,6 @@ AbsoluteTimeIsBefore(AbsoluteTime time1, AbsoluteTime time2)
453
450
bool
454
451
AbsoluteTimeIsAfter (AbsoluteTime time1 , AbsoluteTime time2 )
455
452
{
456
- Assert (AbsoluteTimeIsValid (time1 ));
457
- Assert (AbsoluteTimeIsValid (time2 ));
458
-
459
453
if (time1 == CURRENT_ABSTIME )
460
454
time1 = GetCurrentTransactionStartTime ();
461
455
You can’t perform that action at this time.
0 commit comments