Skip to content

Commit

Permalink
Update tests so they pass after arrow upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Sep 5, 2024
1 parent dc177d2 commit a5bfedd
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions datafusion/substrait/tests/cases/roundtrip_logical_plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -716,29 +716,14 @@ async fn all_type_literal() -> Result<()> {
date32_col = arrow_cast('2020-01-01', 'Date32') AND
binary_col = arrow_cast('binary', 'Binary') AND
large_binary_col = arrow_cast('large_binary', 'LargeBinary') AND
view_binary_col = arrow_cast(arrow_cast('binary_view', 'Binary'), 'BinaryView') AND
view_binary_col = arrow_cast('binary_view', 'BinaryView') AND
utf8_col = arrow_cast('utf8', 'Utf8') AND
large_utf8_col = arrow_cast('large_utf8', 'LargeUtf8') AND
view_utf8_col = arrow_cast('utf8_view', 'Utf8View');",
)
.await
}

/// Arrow-cast does not currently handle direct casting from utf8 to binaryView.
#[tokio::test]
async fn binaryview_type_literal_needs_casting_fix() -> Result<()> {
let err = roundtrip_all_types(
"select * from data where
view_binary_col = arrow_cast('binary_view', 'BinaryView');",
)
.await;

assert!(
matches!(err, Err(e) if e.to_string().contains("Unsupported CAST from Utf8 to BinaryView"))
);
Ok(())
}

#[tokio::test]
async fn roundtrip_literal_list() -> Result<()> {
roundtrip("SELECT [[1,2,3], [], NULL, [NULL]] FROM data").await
Expand Down

0 comments on commit a5bfedd

Please sign in to comment.