Make sure these boxes are checked before submitting your issue - thank you!
LATEST MASTER
UPDATE statement to work in SqlLap
I get the message The query returned no data without errors but changes not reflected in the table
run similar statement
UPDATE table1 SET column1 = "test";
note all other statements work fine such as ALTER, DROP ....etc except UPDATE
@aboganas I believe this is due to the transaction isolation level of the database.
I didn't change anything on the database, it only stopped working with the latest master. I also tried with mysql, MariaDB, and sqlite all show same behavior
Here is even more weird behavior.
If I run UPDATE and SELECT statements together, it shows the values are updated, if I rerun the SELECT statement it shows the values are not updated.
Here is an example

COMMIT;
Most helpful comment
COMMIT;