We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of Polars.
comparing a series of empty structs panics.
use polars::prelude::*; fn main() { let dtype = DataType::Struct(vec![]); let empties = vec![AnyValue::StructOwned(Box::new((vec![], vec![]))); 3]; let s = Series::from_any_values_and_dtype("", &empties, &dtype).unwrap(); let s2 = s.clone(); assert!(s.series_equal_missing(&s2)); }
does not panic.
polars = {git = "https://github.com/pola-rs/polars.git", branch = "master", features = ["dtype-full"]}
The text was updated successfully, but these errors were encountered:
Empty structs are not supported yet.
Closing in favor of #9216
Sorry, something went wrong.
No branches or pull requests
Polars version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of Polars.
Issue description
comparing a series of empty structs panics.
Reproducible example
Expected behavior
does not panic.
Installed versions
The text was updated successfully, but these errors were encountered: