mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Revert: Allow table AM tuple_insert() method to return the different slot
This commit reverts c35a3fb5e0
per review by Andres Freund.
Discussion: https://postgr.es/m/20240410165236.rwyrny7ihi4ddxw4%40awork3.anarazel.de
This commit is contained in:
@ -1127,9 +1127,9 @@ ExecInsert(ModifyTableContext *context,
|
||||
else
|
||||
{
|
||||
/* insert the tuple normally */
|
||||
slot = table_tuple_insert(resultRelationDesc, slot,
|
||||
estate->es_output_cid,
|
||||
0, NULL);
|
||||
table_tuple_insert(resultRelationDesc, slot,
|
||||
estate->es_output_cid,
|
||||
0, NULL);
|
||||
|
||||
/* insert index entries for tuple */
|
||||
if (resultRelInfo->ri_NumIndices > 0)
|
||||
|
Reference in New Issue
Block a user