mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-10-10 05:52:13 +00:00
Support "with" identifiers surrounded by backticks in GenericDialect
(#1010)
This commit is contained in:
parent
57090537f0
commit
9832adb376
2 changed files with 17 additions and 8 deletions
|
@ -95,7 +95,7 @@ pub trait Dialect: Debug + Any {
|
|||
/// MySQL, MS SQL, and sqlite). You can accept one of characters listed
|
||||
/// in `Word::matching_end_quote` here
|
||||
fn is_delimited_identifier_start(&self, ch: char) -> bool {
|
||||
ch == '"'
|
||||
ch == '"' || ch == '`'
|
||||
}
|
||||
/// Determine if quoted characters are proper for identifier
|
||||
fn is_proper_identifier_inside_quotes(&self, mut _chars: Peekable<Chars<'_>>) -> bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue