Skip to content
Closed
3 changes: 1 addition & 2 deletions dev/archery/archery/integration/datagen.py
Original file line number Diff line number Diff line change
Expand Up @@ -1568,8 +1568,7 @@ def _temp_path():

generate_custom_metadata_case()
.skip_category('Go')
.skip_category('JS')
.skip_category('Rust'), # TODO(ARROW-10259)
.skip_category('JS'),

generate_duplicate_fieldnames_case()
.skip_category('Go')
Expand Down
2 changes: 1 addition & 1 deletion rust/arrow/src/array/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2974,7 +2974,7 @@ mod tests {

#[test]
#[should_panic(
expected = "Data type List(Field { name: \"item\", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false }) is not currently supported"
expected = "Data type List(Field { name: \"item\", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: None }) is not currently supported"
)]
fn test_struct_array_builder_from_schema_unsupported_type() {
let mut fields = Vec::new();
Expand Down
Loading