We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
similar to
1 parent fb979bf commit 0a9a46fCopy full SHA for 0a9a46f
1 file changed
datafusion/sql/src/unparser/expr.rs
@@ -1723,16 +1723,6 @@ mod tests {
1723
}),
1724
r#"a NOT ILIKE 'foo' ESCAPE 'o'"#,
1725
),
1726
- (
1727
- Expr::SimilarTo(Like {
1728
- negated: false,
1729
- expr: Box::new(col("a")),
1730
- pattern: Box::new(lit("foo")),
1731
- escape_char: Some('o'),
1732
- case_insensitive: false,
1733
- }),
1734
- r#"a LIKE 'foo' ESCAPE 'o'"#,
1735
- ),
1736
(
1737
Expr::SimilarTo(Like {
1738
negated: false,
0 commit comments