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 8f9793a commit 6789859Copy full SHA for 6789859
src/dialect/snowflake.rs
@@ -80,7 +80,7 @@ impl Dialect for SnowflakeDialect {
80
81
// See https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical#escape_sequences
82
fn supports_string_literal_backslash_escape(&self) -> bool {
83
- false
+ true
84
}
85
86
fn supports_within_after_array_aggregation(&self) -> bool {
src/tokenizer.rs
@@ -830,7 +830,7 @@ impl<'a> Tokenizer<'a> {
830
Self {
831
dialect,
832
query,
833
- unescape: true,
+ unescape: false,
834
835
836
0 commit comments