Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,20 @@ protected GenericData.Record writeAndRead(

return Iterables.getOnlyElement(records);
}

// Empty struct read is not supported for Parquet
@Override
public void testEmptyStructProjection() throws Exception {}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These tests was added for Avro. When empty struct was supported. But it is not yet supported for parquet. Since both avro and parquet now use the common class. Ignoring the tests for parquet.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, This class uses (extends) TestReadProjection from api module now. Instead of duplicated local copy.


@Override
public void testEmptyStructRequiredProjection() throws Exception {}

@Override
public void testRequiredEmptyStructInRequiredStruct() throws Exception {}

@Override
public void testEmptyNestedStructProjection() throws Exception {}

@Override
public void testEmptyNestedStructRequiredProjection() throws Exception {}
}
Loading