[
https://issues.apache.org/jira/browse/BEAM-10960?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Brian Hulette updated BEAM-10960:
---------------------------------
Fix Version/s: 2.26.0
> DropFields transform doesn't maintain the original order of fields
> ------------------------------------------------------------------
>
> Key: BEAM-10960
> URL: https://issues.apache.org/jira/browse/BEAM-10960
> Project: Beam
> Issue Type: Bug
> Components: sdk-java-core
> Reporter: Piotr Szuberski
> Assignee: Piotr Szuberski
> Priority: P2
> Fix For: 2.26.0
>
> Time Spent: 0.5h
> Remaining Estimate: 0h
>
> DropFields complement method is supposed to maintain the schema's original
> order but there is Set used instead of List.
> Set<String> fieldNamesToSelect = Sets.newHashSet();
> should be
> List<String> fieldNamesToSelect = newArrayList();
--
This message was sent by Atlassian Jira
(v8.3.4#803005)