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 d795302 commit 602e148Copy full SHA for 602e148
src/tokenizer.rs
@@ -2019,8 +2019,8 @@ impl<'a> Tokenizer<'a> {
2019
} else if dialect_of!(self is SnowflakeDialect) {
2020
if let Some(next) = chars.next() {
2021
s.push(next);
2022
- if let Some(next) = chars.peek() {
2023
- if *next == settings.quote_style {
+ if let Some(next) = chars.next() {
+ if next == settings.quote_style {
2024
num_consecutive_quotes += 1;
2025
} else {
2026
num_consecutive_quotes = 0;
0 commit comments