Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeadie committed Jun 19, 2024
1 parent 76cc142 commit afbe620
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions crates/duckdb/src/vtab/arrow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -873,14 +873,8 @@ mod test {

#[test]
fn test_utf8_roundtrip() -> Result<(), Box<dyn Error>> {
check_rust_primitive_array_roundtrip(
StringArray::from(vec![Some("foo"), None, Some("bar")]),
StringArray::from(vec![Some("foo"), None, Some("bar")]),
)?;
check_rust_primitive_array_roundtrip(
LargeStringArray::from(vec![Some("foo"), None, Some("bar")]),
LargeStringArray::from(vec![Some("foo"), None, Some("bar")]),
)?;
check_generic_array_roundtrip(StringArray::from(vec![Some("foo"), None, Some("bar")]))?;

Check failure on line 876 in crates/duckdb/src/vtab/arrow.rs

View workflow job for this annotation

GitHub Actions / Test x86_64-pc-windows-msvc

mismatched types
check_generic_array_roundtrip(LargeStringArray::from(vec![Some("foo"), None, Some("bar")]))?;

Check failure on line 877 in crates/duckdb/src/vtab/arrow.rs

View workflow job for this annotation

GitHub Actions / Test x86_64-pc-windows-msvc

mismatched types
Ok(())
}

Expand Down

0 comments on commit afbe620

Please sign in to comment.