Hisoka-X commented on code in PR #6960:
URL: https://github.com/apache/seatunnel/pull/6960#discussion_r1631122440
##########
seatunnel-transforms-v2/src/main/java/org/apache/seatunnel/transform/filter/FilterFieldTransform.java:
##########
@@ -35,20 +35,25 @@
import lombok.extern.slf4j.Slf4j;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
+import java.util.Set;
import java.util.stream.Collectors;
@Slf4j
public class FilterFieldTransform extends AbstractCatalogSupportTransform {
public static final String PLUGIN_NAME = "Filter";
private int[] inputValueIndex;
+ private Set<Integer> inputValueIndexSet;
Review Comment:
Can we keep only one variable? Depending on the mode, the value in the
variable is kept or deleted.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]