MDEV-26698: Incorrect row number upon INSERT .. SELECT from the same
table: rows are counted twice Analysis: When the table we are trying to insert into and the SELECT table are same for INSERT ... SELECT, rows from the SELECT table are copied into internal temporary table and then to the INSERT table. We only want to count the rows when we start inserting into the table. Fix: Reset the counter to 1 before starting to copy from internal temporary table to select table and then increment the counter.
Showing
This diff is collapsed.
This diff is collapsed.
Please register or sign in to comment