postgresql/src/backend/access/common
Tom Lane 220db7ccd8 Simplify and standardize conversions between TEXT datums and ordinary C
strings.  This patch introduces four support functions cstring_to_text,
cstring_to_text_with_len, text_to_cstring, and text_to_cstring_buffer, and
two macros CStringGetTextDatum and TextDatumGetCString.  A number of
existing macros that provided variants on these themes were removed.

Most of the places that need to make such conversions now require just one
function or macro call, in place of the multiple notational layers that used
to be needed.  There are no longer any direct calls of textout or textin,
and we got most of the places that were using handmade conversions via
memcpy (there may be a few still lurking, though).

This commit doesn't make any serious effort to eliminate transient memory
leaks caused by detoasting toasted text objects before they reach
text_to_cstring.  We changed PG_GETARG_TEXT_P to PG_GETARG_TEXT_PP in a few
places where it was easy, but much more could be done.

Brendan Jurd and Tom Lane
2008-03-25 22:42:46 +00:00
..
Makefile Remove another target I forgot during the refactoring 2008-02-19 11:49:12 +00:00
heaptuple.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00
indextuple.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00
printtup.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00
reloptions.c Simplify and standardize conversions between TEXT datums and ordinary C 2008-03-25 22:42:46 +00:00
scankey.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00
tupdesc.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00