[sqlite] SQL Syntax fault on UPDATE statement

2016-08-17 Thread flo
Hi everyone, I found a reproducible bug on the SQL UPDATE statement parsing. Here is the details. I 've try to update some data on a SQLite database with a outlandish syntax with "AND" between the columns to be update. The SQL didn't fail but the data update was incomplete. The SQLite version

Re: [sqlite] SQL Syntax fault on UPDATE statement

2016-08-17 Thread flo
Effectively, Sorry about my mistake. 2016-08-17 10:33 GMT+02:00 Richard Hipp <d...@sqlite.org>: > On 8/17/16, flo <der.nair...@gmail.com> wrote: > > > > $ sqlite3 test.db "UPDATE test SET id=0 AND name='new_name' AND age=30 > > WHERE id=1;" > >