postgresql/src/backend/utils/cache
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
..
catcache.c In PrepareToInvalidateCacheTuple, don't force initialization of catalog 2008-03-05 17:01:26 +00:00
inval.c Fix heap_page_prune's problem with failing to send cache invalidation 2008-03-13 18:00:32 +00:00
lsyscache.c Simplify and standardize conversions between TEXT datums and ordinary C 2008-03-25 22:42:46 +00:00
Makefile Refactor backend makefiles to remove lots of duplicate code 2008-02-19 10:30:09 +00:00
plancache.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00
relcache.c Simplify and standardize conversions between TEXT datums and ordinary C 2008-03-25 22:42:46 +00:00
syscache.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00
ts_cache.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00
typcache.c Update copyrights in source tree to 2008. 2008-01-01 19:46:01 +00:00