diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-17 02:05:20 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-06-17 02:05:20 +0000 |
commit | 1f1ca182be3b7a675467c82c92e05853e67c5d3a (patch) | |
tree | 33094e5103f6d4661af7e2a4a7f82ffcaf0c04b9 /src/include/utils/builtins.h | |
parent | 2917f0a5dd041295bd7e19f6bf868827640d44b0 (diff) | |
download | postgresql-1f1ca182be3b7a675467c82c92e05853e67c5d3a.tar.gz postgresql-1f1ca182be3b7a675467c82c92e05853e67c5d3a.zip |
Make inet/cidr << and <<= operators indexable. From Alex Pilosov <alex@pilosoft.com>.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 7ffde98abf7..d02ccd1e803 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.154 2001/06/14 01:09:22 tgl Exp $ + * $Id: builtins.h,v 1.155 2001/06/17 02:05:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -527,6 +527,8 @@ extern double convert_network_to_scalar(Datum value, Oid typid); extern Datum text_cidr(PG_FUNCTION_ARGS); extern Datum text_inet(PG_FUNCTION_ARGS); extern Datum inet_set_masklen(PG_FUNCTION_ARGS); +extern Datum network_scan_first(Datum in); +extern Datum network_scan_last(Datum in); /* mac.c */ extern Datum macaddr_in(PG_FUNCTION_ARGS); |