Skip to content

Commit

Permalink
don't require equivalent metadata in InspectDictEncoded
Browse files Browse the repository at this point in the history
  • Loading branch information
bkietz committed Feb 23, 2020
1 parent f46b0cc commit cb0cefd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/dataset/file_parquet_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ TEST_F(TestParquetFileFormat, InspectDictEncoded) {
ASSERT_OK_AND_ASSIGN(auto actual, format_->Inspect(*source.get()));

Schema expected_schema({field("utf8", dictionary(int32(), utf8()))});
EXPECT_EQ(*actual, expected_schema);
AssertSchemaEqual(*actual, expected_schema, /* check_metadata = */ false);
}

TEST_F(TestParquetFileFormat, IsSupported) {
Expand Down

0 comments on commit cb0cefd

Please sign in to comment.