xuxiaocheng0201 commented on issue #2342:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/issues/2342#issuecomment-4475005468

   It requires double quotation marks.
   ```rust
   fn main() -> anyhow::Result<()> {
       let s = r#"CREATE TABLE table ("key" INT);"#;
       let statements = 
sqlparser::parser::Parser::parse_sql(&sqlparser::dialect::GenericDialect::default(),
 s)?;
       println!("{statements:?}");
       Ok(())
   }
   ```


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

Reply via email to