1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-18 17:42:25 +03:00

Fix for breakage of C-coded SRFs, from Joe Conway.

This commit is contained in:
Tom Lane
2002-08-30 19:56:49 +00:00
parent e2d156fa6e
commit 549928d99b
4 changed files with 31 additions and 5 deletions

View File

@ -9,7 +9,7 @@
*
* Copyright (c) 2002, PostgreSQL Global Development Group
*
* $Id: funcapi.h,v 1.6 2002/08/29 17:14:33 tgl Exp $
* $Id: funcapi.h,v 1.7 2002/08/30 19:56:49 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -147,8 +147,12 @@ extern TupleTableSlot *TupleDescGetSlot(TupleDesc tupdesc);
extern AttInMetadata *TupleDescGetAttInMetadata(TupleDesc tupdesc);
extern HeapTuple BuildTupleFromCStrings(AttInMetadata *attinmeta, char **values);
/*
* Note we pass shouldFree = false; this is needed because the tuple will
* typically be in a shorter-lived memory context than the TupleTableSlot.
*/
#define TupleGetDatum(_slot, _tuple) \
PointerGetDatum(ExecStoreTuple(_tuple, _slot, InvalidBuffer, true))
PointerGetDatum(ExecStoreTuple(_tuple, _slot, InvalidBuffer, false))
/*----------