LucaCappelletti94 opened a new pull request, #2552: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2552
This PR allows `==` as an alternative to `=` in the `SET` clause of `UPDATE` statements when using `SQLiteDialect`, matching SQLite's behavior where the tokenizer treats `==` and `=` identically. ```sql UPDATE t SET a == 1; -- Previously: Expected: =, found: == ``` SQLite's tokenizer folds `==` into the same `EQ` token as `=` in all positions, including assignment. First blood of the new SQLite-specific fuzzing harness 🩸 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
