diff options
author | Alexander Korotkov <akorotkov@postgresql.org> | 2024-03-21 23:00:40 +0200 |
---|---|---|
committer | Alexander Korotkov <akorotkov@postgresql.org> | 2024-03-21 23:00:40 +0200 |
commit | c35a3fb5e067fc95f13206418e3785d2cb059da1 (patch) | |
tree | cc2405cdee74e4550943374264c0ede23aaf9d18 /src/backend/executor/nodeModifyTable.c | |
parent | 02eb07ea89d27f1d05a5055bf779042d2953b4e7 (diff) | |
download | postgresql-c35a3fb5e067fc95f13206418e3785d2cb059da1.tar.gz postgresql-c35a3fb5e067fc95f13206418e3785d2cb059da1.zip |
Allow table AM tuple_insert() method to return the different slot
This allows table AM to return a native tuple slot even if
VirtualTupleTableSlot is given as an input. Native tuple slots have knowledge
about system attributes, which could be accessed in the future.
table_multi_insert() method already can modify the input 'slots' array.
Discussion: https://postgr.es/m/CAPpHfdurb9ycV8udYqM%3Do0sPS66PJ4RCBM1g-bBpvzUfogY0EA%40mail.gmail.com
Reviewed-by: Matthias van de Meent, Mark Dilger, Pavel Borisov
Reviewed-by: Nikita Malakhov, Japin Li
Diffstat (limited to 'src/backend/executor/nodeModifyTable.c')
-rw-r--r-- | src/backend/executor/nodeModifyTable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c index 4abfe82f7fb..5568dd7b957 100644 --- a/src/backend/executor/nodeModifyTable.c +++ b/src/backend/executor/nodeModifyTable.c @@ -1125,9 +1125,9 @@ ExecInsert(ModifyTableContext *context, else { /* insert the tuple normally */ - table_tuple_insert(resultRelationDesc, slot, - estate->es_output_cid, - 0, NULL); + slot = table_tuple_insert(resultRelationDesc, slot, + estate->es_output_cid, + 0, NULL); /* insert index entries for tuple */ if (resultRelInfo->ri_NumIndices > 0) |