1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-05 00:28:52 +02:00

Require type for FUNCTION_TEST_RETURN*() macros.

This allows code to run after the return type has been generated in the case where it is an expression.

No new functionality here yet, but this will be used by a future commit that audits memory usage.
This commit is contained in:
David Steele
2022-04-24 19:19:46 -04:00
parent 91bbe81059
commit 1e2b545ba4
100 changed files with 725 additions and 676 deletions

View File

@ -114,7 +114,7 @@ pgClientEscape(const String *string)
strCatChr(result, '\'');
FUNCTION_TEST_RETURN(result);
FUNCTION_TEST_RETURN(STRING, result);
}
/**********************************************************************************************************************************/