We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56fc202 commit 227eb17Copy full SHA for 227eb17
1 file changed
src/parser.rs
@@ -2028,6 +2028,9 @@ impl<'a> Parser<'a> {
2028
// ignore the <separator> and treat the multiple strings as
2029
// a single <literal>."
2030
Token::SingleQuotedString(s) => Ok(Some(Ident::with_quote('\'', s))),
2031
+ Token::BacktickQuotedString(s) if dialect_of!(self is BigQueryDialect) => {
2032
+ Ok(Some(Ident::with_quote('`', s)))
2033
+ }
2034
not_an_ident => {
2035
if after_as {
2036
return self.expected("an identifier after AS", not_an_ident);
0 commit comments