Skip to content

Commit

Permalink
fix the test fail
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmedal committed May 21, 2024
1 parent 447d8ad commit 3a9cc3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion-examples/examples/plan_to_sql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ async fn round_trip_plan_to_sql_parquest_dataframe_demo() -> Result<()> {

assert_eq!(
sql,
r#"SELECT alltypes_plain.int_col, alltypes_plain.double_col, CAST(alltypes_plain.date_string_col AS VARCHAR) FROM alltypes_plain WHERE ((alltypes_plain.id > 1) AND (alltypes_plain.tinyint_col"< alltypes_plain.double_col))"#
r#"SELECT alltypes_plain.int_col, alltypes_plain.double_col, CAST(alltypes_plain.date_string_col AS VARCHAR) FROM alltypes_plain WHERE ((alltypes_plain.id > 1) AND (alltypes_plain.tinyint_col < alltypes_plain.double_col))"#
);

Ok(())
Expand Down

0 comments on commit 3a9cc3f

Please sign in to comment.