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/include/utils/builtins.h | |
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/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index d79749a8a4f..28a70d11ce7 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.273 2006/02/11 03:32:41 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.274 2006/02/26 18:36:22 neilc Exp $ * *------------------------------------------------------------------------- */ @@ -531,6 +531,7 @@ extern Datum tidout(PG_FUNCTION_ARGS); extern Datum tidrecv(PG_FUNCTION_ARGS); extern Datum tidsend(PG_FUNCTION_ARGS); extern Datum tideq(PG_FUNCTION_ARGS); +extern Datum tidne(PG_FUNCTION_ARGS); extern Datum currtid_byreloid(PG_FUNCTION_ARGS); extern Datum currtid_byrelname(PG_FUNCTION_ARGS); |