Parsing the following valid SQLite statement: ```sql select substring('xxx', 1, 2) ``` then dumping the parsed result as sql results in the following syntax, which is invalid in SQLite: ```sql select SUBSTRING('xxx' FROM 1 FOR 2) ```