I recently changed some of my write queries that were doing INSERT OR REPLACE to UPDATE since I'm on

I recently changed some of my write queries that were doing INSERT OR REPLACE to UPDATE since I'm only updating a few fields and I have indexes that might have to recalculate. I have noticed that the UPDATE queries are getting a row_written for each field that is updated instead of 1 row_written per row.

EDIT: It was the indexes not the UPDATE statement
Was this page helpful?