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 54550ac commit 32bbd2fCopy full SHA for 32bbd2f
src/tokenizer.rs
@@ -2018,8 +2018,10 @@ impl<'a> Tokenizer<'a> {
2018
chars.next(); // consume next
2019
} else if dialect_of!(self is SnowflakeDialect) {
2020
s.push(ch);
2021
- s.push(*next);
2022
chars.next();
+ if let Some(_) = chars.peek() {
2023
+ s.push('Y');
2024
+ }
2025
} else {
2026
let n = match next {
2027
'0' => '\0',
0 commit comments