Skip to content

[R] Objects Written to Feather Not Restored Exactly #29298

@asfimport

Description

@asfimport

Rather simple - write the standard 'iris' dataset to feather, then read it back.

At first glance everything looks the same, but setting 'attrib.as.set = FALSE' to identical() will return FALSE.

Using Waldo to compare, you can see that the order of attributes is different on the restored object. "class" should be the second attribute after "names" but before "row.names".

This should be a simple fix to the 'read_feather' function to set the correct order of attributes.

iris <- iris
arrow::write_feather(iris, file <- tempfile())
iris2 <- arrow::read_feather(file)
unlink(file)
identical(iris, iris2)
#> [1] TRUE
identical(iris, iris2, attrib.as.set = FALSE)
#> [1] FALSE
waldo::compare(attributes(iris), attributes(iris2))
#> names(old): "names" "class" "row.names"
#> names(new): "names" "row.names" "class"

Environment: R4.1.1, Ubuntu 20.04
Reporter: Charlie Gao

Note: This issue was originally created as ARROW-13661. Please see the migration documentation for further details.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions