diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-11-10 20:13:27 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-11-10 20:13:27 +0000 |
commit | a2100230087b702e42d30a1e6a95e3192ffb16ff (patch) | |
tree | cb74c5df0cb0fbcbf02de45e87184c5c73ac161b /src/include/utils/builtins.h | |
parent | d7f8ffa781aeb33062d59541a497c2cacac73f0e (diff) |
Adjust INET/CIDR display conventions and reimplement some INET/CIDR
functions, per recent discussions on pghackers. For now, I have called
the verbose-display formatting function text(), but will reconsider if
enough people object.
initdb forced.
Diffstat (limited to 'src/include/utils/builtins.h')
-rw-r--r-- | src/include/utils/builtins.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/builtins.h b/src/include/utils/builtins.h index 446c33cc420..f6a4055bb1d 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.140 2000/10/24 20:16:47 petere Exp $ + * $Id: builtins.h,v 1.141 2000/11/10 20:13:26 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -504,6 +504,7 @@ extern Datum network_netmask(PG_FUNCTION_ARGS); extern Datum network_masklen(PG_FUNCTION_ARGS); extern Datum network_broadcast(PG_FUNCTION_ARGS); extern Datum network_host(PG_FUNCTION_ARGS); +extern Datum network_show(PG_FUNCTION_ARGS); /* mac.c */ extern Datum macaddr_in(PG_FUNCTION_ARGS); |