[COMMITTERS] pgsql: Add a direct function call mechanism using the caller'scontext.
В списке pgsql-committers по дате отправления:
| От | Andrew Dunstan |
|---|---|
| Тема | [COMMITTERS] pgsql: Add a direct function call mechanism using the caller'scontext. |
| Дата | |
| Msg-id | E1cqJOQ-0000Jz-V7@gemulon.postgresql.org обсуждение исходный текст |
| Список | pgsql-committers |
Add a direct function call mechanism using the caller's context. The current DirectFunctionCall functions use NULL as the flinfo in initializing the FunctionCallInfoData for the call. That means the called function has no fn_mcxt or fn_extra to work with, and attempting to do so will result in an access violation. These functions instead use the provided flinfo, which will usually be the caller's own flinfo. The caller needs to ensure that it doesn't use the fn_extra in way that is incompatible with the way the called function will use it. The called function should not rely on anything else in the provided context, as it will be relevant to the caller, not the callee. Original code from Tom Lane. Discussion: https://postgr.es/m/db2b70a4-78d7-294a-a315-8e7f506c5978@2ndQuadrant.com Branch ------ master Details ------- http://git.postgresql.org/pg/commitdiff/29bf5016835a2c2c23786f7cda347716c083d95f Modified Files -------------- src/backend/utils/fmgr/fmgr.c | 50 +++++++++++++++++++++++++++++++++++++++++++ src/include/fmgr.h | 13 +++++++++++ 2 files changed, 63 insertions(+)
В списке pgsql-committers по дате отправления:
Сайт использует файлы cookie для корректной работы и повышения удобства. Нажимая кнопку «Принять» или продолжая пользоваться сайтом, вы соглашаетесь на их использование в соответствии с Политикой в отношении обработки cookie ООО «ППГ», в том числе на передачу данных из файлов cookie сторонним статистическим и рекламным службам. Вы можете управлять настройками cookie через параметры вашего браузера