File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
datafusion/sql/src/unparser Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -312,6 +312,7 @@ impl Unparser<'_> {
312312 expr : Box :: new ( self . expr_to_sql_inner ( expr) ?) ,
313313 pattern : Box :: new ( self . expr_to_sql_inner ( pattern) ?) ,
314314 escape_char : escape_char. map ( |c| c. to_string ( ) ) ,
315+ any : false ,
315316 } ) ,
316317 Expr :: Like ( Like {
317318 negated,
@@ -326,13 +327,15 @@ impl Unparser<'_> {
326327 expr : Box :: new ( self . expr_to_sql_inner ( expr) ?) ,
327328 pattern : Box :: new ( self . expr_to_sql_inner ( pattern) ?) ,
328329 escape_char : escape_char. map ( |c| c. to_string ( ) ) ,
330+ any : false ,
329331 } )
330332 } else {
331333 Ok ( ast:: Expr :: Like {
332334 negated : * negated,
333335 expr : Box :: new ( self . expr_to_sql_inner ( expr) ?) ,
334336 pattern : Box :: new ( self . expr_to_sql_inner ( pattern) ?) ,
335337 escape_char : escape_char. map ( |c| c. to_string ( ) ) ,
338+ any : false ,
336339 } )
337340 }
338341 }
You can’t perform that action at this time.
0 commit comments