summaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
authorDavid Rowley2019-06-05 06:28:38 +0000
committerDavid Rowley2019-06-05 06:28:38 +0000
commit56b3b3838284f53c83556592e60688522155f57f (patch)
tree7a47099711def269892733512fc5afbeb2ee8a2b /src/backend
parentf7e954ad1cf99a65b1785d999058898a6d56e014 (diff)
Fix incorrect index behavior in COPY FROM with partitioned tables
86b85044e rewrote how COPY FROM works to allow multiple tuple buffers to exist to once thus allowing multi-inserts to be used in more cases with partitioned tables. That commit neglected to update the estate's es_result_relation_info when flushing the insert buffer to the partition making it possible for the index tuples to be added into an index on the wrong partition. Fix this and also add an Assert in ExecInsertIndexTuples to help ensure that we never make this mistake again. Reported-by: Haruka Takatsuka Author: Ashutosh Sharma Discussion: https://postgr.es/m/15832-b1bf336a4ee246b5@postgresql.org
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/commands/copy.c3
-rw-r--r--src/backend/executor/execIndexing.c3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c
index eca0be1ff96..2593732c16e 100644
--- a/src/backend/commands/copy.c
+++ b/src/backend/commands/copy.c
@@ -2446,6 +2446,9 @@ CopyMultiInsertBufferFlush(CopyMultiInsertInfo *miinfo,
ResultRelInfo *resultRelInfo = buffer->resultRelInfo;
TupleTableSlot **slots = buffer->slots;
+ /* Set es_result_relation_info to the ResultRelInfo we're flushing. */
+ estate->es_result_relation_info = resultRelInfo;
+
/*
* Print error context information correctly, if one of the operations
* below fail.
diff --git a/src/backend/executor/execIndexing.c b/src/backend/executor/execIndexing.c
index c41c5f45e7e..40bd8049f05 100644
--- a/src/backend/executor/execIndexing.c
+++ b/src/backend/executor/execIndexing.c
@@ -299,6 +299,9 @@ ExecInsertIndexTuples(TupleTableSlot *slot,
indexInfoArray = resultRelInfo->ri_IndexRelationInfo;
heapRelation = resultRelInfo->ri_RelationDesc;
+ /* Sanity check: slot must belong to the same rel as the resultRelInfo. */
+ Assert(slot->tts_tableOid == RelationGetRelid(heapRelation));
+
/*
* We will use the EState's per-tuple context for evaluating predicates
* and index expressions (creating it if it's not already there).