diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-01-21 22:40:16 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-01-21 22:40:16 +0000 |
commit | 7311da9ec48d6ed918cdede7be3c67817107301b (patch) | |
tree | eac999e02ce97e47fe796935c73bfb38692e9d8c /contrib/array/array_iterator.h | |
parent | cdbaec771c5c0b77a4a130a3726e6ea043c59eed (diff) | |
download | postgresql-7311da9ec48d6ed918cdede7be3c67817107301b.tar.gz postgresql-7311da9ec48d6ed918cdede7be3c67817107301b.zip |
i have made minor changes to array_iterator to make it work with
pgsql-6.3.2. I think array_iterator is a great thing to have!!!
With best regards,
Tobias Gabele
Diffstat (limited to 'contrib/array/array_iterator.h')
-rw-r--r-- | contrib/array/array_iterator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/array/array_iterator.h b/contrib/array/array_iterator.h index 458ec5916d8..5eab8d985b3 100644 --- a/contrib/array/array_iterator.h +++ b/contrib/array/array_iterator.h @@ -24,5 +24,6 @@ int32 array_int4lt(ArrayType *array, int4 value); int32 array_all_int4lt(ArrayType *array, int4 value); int32 array_int4le(ArrayType *array, int4 value); int32 array_all_int4le(ArrayType *array, int4 value); - +int32 array_oideq(ArrayType *array, Oid value); +int32 array_all_oidne(ArrayType *array, Oid value); #endif |