1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00

This patch adds support for inet[] arrays to the /contrib/array module.

Neil Conway
This commit is contained in:
Bruce Momjian
2002-08-04 04:25:02 +00:00
parent 0b15c25225
commit ce3d087010
3 changed files with 102 additions and 28 deletions

View File

@ -34,6 +34,11 @@ int32 array_all_int4le(ArrayType *array, int4 value);
int32 array_oideq(ArrayType *array, Oid value);
int32 array_all_oidne(ArrayType *array, Oid value);
int32 array_ineteq(ArrayType *array, Oid value);
int32 array_all_ineteq(ArrayType *array, Oid value);
int32 array_inetne(ArrayType *array, Oid value);
int32 array_all_inetne(ArrayType *array, Oid value);
#endif
/*