From 41cba49e955d83f0100d17c74e31f0bc9fec4a93 Mon Sep 17 00:00:00 2001 From: Neil Conway Date: Sun, 26 Feb 2006 18:36:23 +0000 Subject: Implement the <> operator for the tid type. Original patch from Mark Kirkwood, minor improvements by Neil Conway. The regression tests have been updated and the catversion has been bumped. --- src/backend/utils/adt/tid.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/backend/utils/adt/tid.c') diff --git a/src/backend/utils/adt/tid.c b/src/backend/utils/adt/tid.c index ba33ce50ee5..0fbc569a0df 100644 --- a/src/backend/utils/adt/tid.c +++ b/src/backend/utils/adt/tid.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/adt/tid.c,v 1.49 2005/05/27 00:57:49 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/tid.c,v 1.50 2006/02/26 18:36:21 neilc Exp $ * * NOTES * input routine largely stolen from boxin(). @@ -174,7 +174,6 @@ tideq(PG_FUNCTION_ARGS) arg1->ip_posid == arg2->ip_posid); } -#ifdef NOT_USED Datum tidne(PG_FUNCTION_ARGS) { @@ -185,7 +184,6 @@ tidne(PG_FUNCTION_ARGS) BlockIdGetBlockNumber(&(arg2->ip_blkid)) || arg1->ip_posid != arg2->ip_posid); } -#endif /* * Functions to get latest tid of a specified tuple. -- cgit v1.2.3