diff options
author | Neil Conway <neilc@samurai.com> | 2006-02-26 18:36:23 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-02-26 18:36:23 +0000 |
commit | 41cba49e955d83f0100d17c74e31f0bc9fec4a93 (patch) | |
tree | 530036be20f2713ff8da32ed201aa8ba12835ffa /src/backend/utils/adt/tid.c | |
parent | c5e0415a28dee8dd47ef7c37a2987c34174b8088 (diff) | |
download | postgresql-41cba49e955d83f0100d17c74e31f0bc9fec4a93.tar.gz postgresql-41cba49e955d83f0100d17c74e31f0bc9fec4a93.zip |
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.
Diffstat (limited to 'src/backend/utils/adt/tid.c')
-rw-r--r-- | src/backend/utils/adt/tid.c | 4 |
1 files changed, 1 insertions, 3 deletions
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. |