There is an issue with the "where" condition for ANTLR Parser implementation.
tinysql> select A,B from T2;
+---+---------+
| A | B |
+---+---------+
| 1 | 'Alice' |
| 2 | 'Bob' |
+---+---------+
tinysql> update T2 SET A=1 where A=2;
1 row updated.
tinysql> select A,B from T2;
+---+---------+
| A | B |
+---+---------+
| 1 | 'Alice' |
| 2 | 'Bob' |
+---+---------+