Skip to content

Commit 0a9a46f

Browse files
committed
remove redundand similar to test
1 parent fb979bf commit 0a9a46f

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

datafusion/sql/src/unparser/expr.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1723,16 +1723,6 @@ mod tests {
17231723
}),
17241724
r#"a NOT ILIKE 'foo' ESCAPE 'o'"#,
17251725
),
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-
),
17361726
(
17371727
Expr::SimilarTo(Like {
17381728
negated: false,

0 commit comments

Comments
 (0)