LucaCappelletti94 opened a new pull request, #2555: URL: https://github.com/apache/datafusion-sqlparser-rs/pull/2555
This PR lets `SQLiteDialect` accept every code point above U+007F in identifiers, including those outside the Basic Multilingual Plane. U+007F itself is no longer an identifier character, since SQLite rejects it as an unrecognized token. ```sql SELECT �; -- Previously: Expected: an expression, found: � ``` SQLite treats every byte with the high bit set as an identifier character, see 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]
