You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When enabling chrono-tz feature, there are compilation error:
error[E0061]: this function takes 0 arguments but 2 arguments were supplied
--> arrow/src/compute/kernels/cast.rs:5646:21
|
5646 | let mut b = PrimitiveDictionaryBuilder::new(keys_builder, values_builder);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ------------ -------------- argument of type `arrow_array::builder::PrimitiveBuilder<arrow_array::types::Int32Type>` unexpected
| |
| argument of type `arrow_array::builder::PrimitiveBuilder<K>` unexpected
|
note: associated function defined here
--> /Users/liangchi/repos/arrow-rs/arrow-array/src/builder/primitive_dictionary_builder.rs:108:12
|
108 | pub fn new() -> Self {
| ^^^
help: remove the extra arguments
|
5646 | let mut b = PrimitiveDictionaryBuilder::new();
| ~~
error[E0061]: this function takes 0 arguments but 2 arguments were supplied
--> arrow/src/compute/kernels/cast.rs:5658:21
|
5658 | let mut b = StringDictionaryBuilder::new(keys_builder, values_builder);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ------------ -------------- argument of type `arrow_array::builder::GenericStringBuilder<i32>` unexpected
| |
| argument of type `arrow_array::builder::PrimitiveBuilder<K>` unexpected
|
To Reproduce
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered:
Describe the bug
When enabling
chrono-tz
feature, there are compilation error:To Reproduce
Expected behavior
Additional context
The text was updated successfully, but these errors were encountered: