mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-07-07 17:04:59 +00:00
code cleanup
This commit is contained in:
parent
29ea21047a
commit
9b1612fe5b
1 changed files with 4 additions and 4 deletions
|
@ -2189,7 +2189,7 @@ fn parse_pg_regex_match_ops() {
|
|||
op: op.clone(),
|
||||
right: Box::new(Expr::Value(single_quoted_string("^a").with_empty_span(),)),
|
||||
}),
|
||||
select.projection[0],
|
||||
select.projection[0]
|
||||
);
|
||||
|
||||
// Binary operator with ANY operator
|
||||
|
@ -2208,7 +2208,7 @@ fn parse_pg_regex_match_ops() {
|
|||
})),
|
||||
is_some: false,
|
||||
}),
|
||||
select.projection[0],
|
||||
select.projection[0]
|
||||
)
|
||||
}
|
||||
}
|
||||
|
@ -2231,7 +2231,7 @@ fn parse_pg_like_match_ops() {
|
|||
op: op.clone(),
|
||||
right: Box::new(Expr::Value(single_quoted_string("a_c%").with_empty_span(),)),
|
||||
}),
|
||||
select.projection[0],
|
||||
select.projection[0]
|
||||
);
|
||||
|
||||
// Binary operator with ALL operator
|
||||
|
@ -2246,7 +2246,7 @@ fn parse_pg_like_match_ops() {
|
|||
named: true,
|
||||
})),
|
||||
}),
|
||||
select.projection[0],
|
||||
select.projection[0]
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue