diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-08 22:19:58 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-08 22:19:58 +0000 |
commit | 45d04099df76c00d93479b2617fb9975807fdb43 (patch) | |
tree | 76c4f5495ca9479845f8c9c87a6838858856bf97 /src/include/utils/builtins.h | |
parent | f2c7a2763532b026469b5b22f91aade30ae7e98e (diff) |
Reinstate pg_type's typsend and typreceive columns. They don't do much
yet, but they're there. Also some editorial work on CREATE TYPE reference
page.
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 224240d2f97..c5971679ce4 100644 --- a/src/include/utils/builtins.h +++ b/src/include/utils/builtins.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: builtins.h,v 1.211 2003/04/08 23:20:04 tgl Exp $ + * $Id: builtins.h,v 1.212 2003/05/08 22:19:57 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -346,6 +346,8 @@ extern Datum oidvectorgt(PG_FUNCTION_ARGS); /* pseudotypes.c */ extern Datum record_in(PG_FUNCTION_ARGS); extern Datum record_out(PG_FUNCTION_ARGS); +extern Datum record_recv(PG_FUNCTION_ARGS); +extern Datum record_send(PG_FUNCTION_ARGS); extern Datum cstring_in(PG_FUNCTION_ARGS); extern Datum cstring_out(PG_FUNCTION_ARGS); extern Datum any_in(PG_FUNCTION_ARGS); |