Re: SQL/MED - core functionality

Поиск
Список
Период
Сортировка
От Shigeru HANADA
Тема Re: SQL/MED - core functionality
Дата
Msg-id 20101126165536.9720.6989961C@metrosystems.co.jp
обсуждение исходный текст
Ответ на Re: SQL/MED - core functionality  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: SQL/MED - core functionality  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Thanks for the comments.

I'll revise the patch along the discussion.  Before starting code work,
please let me summarize the discussion.

* Generally, we should keep FDWs away from PostgreSQL internals,
such as TupleTableSlot.

* FDW should have planner hook which allows FDW to create FDW-specific
plan (FdwPlan in Heikki's proposal) for a scan on a foreign table.

* FdwPlan, a part of ForeignScan plan node, should be able to be
copied in generic way because plans would be copied into another
memory context during caching.  It might be better to represent
FdwPlan with Node or List.

* FdwExecutionState, a part of ForeignScanState, should be used
instead of ForeignScanState to remove executor details from FDW
implementation.
# ISTM that FdwExecutionState would be replace FdwReply.

Regards,
--
Shigeru Hanada




В списке pgsql-hackers по дате отправления:

Предыдущее
От: Radosław Smogura
Дата:
Сообщение: Re: [JDBC] JDBC and Binary protocol error, for some statements
Следующее
От: Pavel Stehule
Дата:
Сообщение: memory leak in libxml2 - fix