andygrove commented on issue #5793:
URL: 
https://github.com/apache/arrow-datafusion/issues/5793#issuecomment-1490476193

   @jdye64 It looks like the hive dialect in sqlparser-rs supports table names 
starting with digits:
   
   ```rust
   impl Dialect for HiveDialect {
   
       fn is_identifier_start(&self, ch: char) -> bool {
           ch.is_ascii_lowercase() || ch.is_ascii_uppercase() || 
ch.is_ascii_digit() || ch == '$'
       }
   ```


-- 
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]

Reply via email to