diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-03-28 15:11:53 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2015-03-28 15:11:53 +0200 |
commit | 3a20b0e7b6dae48cd6be1257e9017663f1402b91 (patch) | |
tree | 32c7a1dde32f9486fe64a0685f9fa948e259c43c /src/include/utils/inet.h | |
parent | 16bbb96a2b48d0f525b7fb2f6a001b16719467a9 (diff) | |
download | postgresql-3a20b0e7b6dae48cd6be1257e9017663f1402b91.tar.gz postgresql-3a20b0e7b6dae48cd6be1257e9017663f1402b91.zip |
Add index-only scan support to inet GiST opclass.
Andreas Karlsson
Diffstat (limited to 'src/include/utils/inet.h')
-rw-r--r-- | src/include/utils/inet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/utils/inet.h b/src/include/utils/inet.h index 66946886c72..2d2bae4cbe6 100644 --- a/src/include/utils/inet.h +++ b/src/include/utils/inet.h @@ -123,6 +123,7 @@ extern int bitncommon(const unsigned char *l, const unsigned char *r, int n); /* * GiST support functions in network_gist.c */ +extern Datum inet_gist_fetch(PG_FUNCTION_ARGS); extern Datum inet_gist_consistent(PG_FUNCTION_ARGS); extern Datum inet_gist_union(PG_FUNCTION_ARGS); extern Datum inet_gist_compress(PG_FUNCTION_ARGS); |