Re: [HACKERS] Add support for tuple routing to foreign partitions

Поиск
Список
Период
Сортировка
От Amit Langote
Тема Re: [HACKERS] Add support for tuple routing to foreign partitions
Дата
Msg-id f369a254-0834-ae7b-46f6-fa3a95bb36fa@lab.ntt.co.jp
обсуждение исходный текст
Ответ на Re: [HACKERS] Add support for tuple routing to foreign partitions  (Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp>)
Ответы Re: [HACKERS] Add support for tuple routing to foreign partitions  (Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp>)
Список pgsql-hackers
Fujita-san,

On 2018/04/05 15:02, Etsuro Fujita wrote:
> (2018/04/04 19:31), Etsuro Fujita wrote:
>> Attached is an updated version of the patch set:
>> * As before, patch foreign-routing-fdwapi-4.patch is created on top of
>> patch postgres-fdw-refactoring-4.patch and the bug-fix patch [1].
> 
> I did a bit of cleanup and comment-rewording to patch
> foreign-routing-fdwapi-4.patch.  Attached is a new version of the patch
> set.  I renamed the postgres_fdw refactoring patch but no changes to that
> patch.

I noticed that the 2nd patch (foreign-routing-fdwapi-5.patch) fails to
apply to copy.c:

Hunk #9 FAILED at 2719.
Hunk #10 succeeded at 2752 (offset -1 lines).
Hunk #11 succeeded at 2795 (offset -1 lines).
Hunk #12 succeeded at 2843 (offset -1 lines).
1 out of 12 hunks FAILED -- saving rejects to file
src/backend/commands/copy.c.rej

cat src/backend/commands/copy.c.rej
*** src/backend/commands/copy.c
--- src/backend/commands/copy.c
***************
*** 2719,2727 ****
                        resultRelInfo->ri_TrigDesc->trig_insert_before_row))
                      check_partition_constr = false;

!                 /* Check the constraints of the tuple */
!                 if (resultRelInfo->ri_RelationDesc->rd_att->constr ||
!                     check_partition_constr)
                      ExecConstraints(resultRelInfo, slot, estate, true);

                  if (useHeapMultiInsert)
--- 2730,2742 ----
                        resultRelInfo->ri_TrigDesc->trig_insert_before_row))
                      check_partition_constr = false;

!                 /*
!                  * If the target is a plain table, check the constraints of
!                  * the tuple.
!                  */
!                 if (resultRelInfo->ri_FdwRoutine == NULL &&
!                     (resultRelInfo->ri_RelationDesc->rd_att->constr ||
!                      check_partition_constr))
                      ExecConstraints(resultRelInfo, slot, estate, true);

                  if (useHeapMultiInsert)

Can you check?

Thanks,
Amit



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

Предыдущее
От: Amit Kapila
Дата:
Сообщение: Re: [HACKERS] Restrict concurrent update/delete with UPDATE ofpartition key
Следующее
От: Masahiko Sawada
Дата:
Сообщение: Re: [HACKERS] GUC for cleanup indexes threshold.