1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00

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
This commit is contained in:
Bruce Momjian
1999-01-21 22:40:16 +00:00
parent cdbaec771c
commit 7311da9ec4
3 changed files with 163 additions and 34 deletions

View File

@ -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