We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3082a9 commit 77624b4Copy full SHA for 77624b4
src/tokenizer.rs
@@ -2019,6 +2019,17 @@ impl<'a> Tokenizer<'a> {
2019
} else if dialect_of!(self is SnowflakeDialect) {
2020
s.push(ch);
2021
chars.next();
2022
+ if let Some(next) = chars.peek() {
2023
+ s.push(*next);
2024
+ chars.next();
2025
2026
+ if *next == settings.quote_style {
2027
+ num_consecutive_quotes += 1;
2028
+ } else {
2029
+ num_consecutive_quotes = 0;
2030
+ }
2031
2032
2033
} else {
2034
let n = match next {
2035
'0' => '\0',
0 commit comments