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 f53532d commit 5d8d894Copy full SHA for 5d8d894
src/tokenizer.rs
@@ -2032,11 +2032,7 @@ impl<'a> Tokenizer<'a> {
2032
s.push(*next);
2033
chars.next(); // consume next
2034
} else if dialect_of!(self is SnowflakeDialect) {
2035
- chars.next();
2036
- if let Some(next) = chars.peek() {
2037
- s.push(*next);
2038
2039
- }
+ s.push(*next);
2040
} else {
2041
let n = match next {
2042
'0' => '\0',
0 commit comments