mirror of
https://github.com/postgres/postgres.git
synced 2025-09-03 15:22:11 +03:00
Replace TupleTableSlot convention for whole-row variables and function
results with tuples as ordinary varlena Datums. This commit does not in itself do much for us, except eliminate the horrid memory leak associated with evaluation of whole-row variables. However, it lays the groundwork for allowing composite types as table columns, and perhaps some other useful features as well. Per my proposal of a few days ago.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.235 2004/03/15 03:29:22 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/include/utils/builtins.h,v 1.236 2004/04/01 21:28:46 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -384,10 +384,6 @@ extern Datum oidvectorge(PG_FUNCTION_ARGS);
|
||||
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 cstring_recv(PG_FUNCTION_ARGS);
|
||||
@@ -452,6 +448,12 @@ extern List *stringToQualifiedNameList(const char *string, const char *caller);
|
||||
extern char *format_procedure(Oid procedure_oid);
|
||||
extern char *format_operator(Oid operator_oid);
|
||||
|
||||
/* rowtypes.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);
|
||||
|
||||
/* ruleutils.c */
|
||||
extern Datum pg_get_ruledef(PG_FUNCTION_ARGS);
|
||||
extern Datum pg_get_ruledef_ext(PG_FUNCTION_ARGS);
|
||||
|
Reference in New Issue
Block a user