LucaCappelletti94 opened a new pull request, #2554: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2554
This PR lets `SQLiteDialect` accept `$` after the first character of an identifier, as SQLite does. A leading `$` still starts a parameter. ```sql SELECT a$ FROM t; CREATE TABLE t(a$ INT); INSERT INTO t$ VALUES (1); -- Previously: Expected: end of statement, found: $ ``` SQLite's identifier characters are listed in its [tokenizer requirements](https://www.sqlite.org/draft/tokenreq.html). -- 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]
