diff options
| author | Tom Lane | 2014-08-29 02:37:58 +0000 |
|---|---|---|
| committer | Tom Lane | 2014-08-29 02:37:58 +0000 |
| commit | 6c40f8316ed38a92049784b3e3d3b514ed379b5a (patch) | |
| tree | 906ae853055c894e2e2fbdc6f6a71d02ebf6b36f /src/include/utils | |
| parent | ec544a65c9090bc9da11ea384d1369fd552ca8b0 (diff) | |
Add min and max aggregates for inet/cidr data types.
Haribabu Kommi, reviewed by Muhammad Asif Naeem
Diffstat (limited to 'src/include/utils')
| -rw-r--r-- | src/include/utils/builtins.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index b0a4748dab..78cc0a0bea 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -908,6 +908,8 @@ extern Datum network_eq(PG_FUNCTION_ARGS); extern Datum network_ge(PG_FUNCTION_ARGS); extern Datum network_gt(PG_FUNCTION_ARGS); extern Datum network_ne(PG_FUNCTION_ARGS); +extern Datum network_smaller(PG_FUNCTION_ARGS); +extern Datum network_larger(PG_FUNCTION_ARGS); extern Datum hashinet(PG_FUNCTION_ARGS); extern Datum network_sub(PG_FUNCTION_ARGS); extern Datum network_subeq(PG_FUNCTION_ARGS); |
