Github user DT-Priyanka commented on a diff in the pull request:
https://github.com/apache/incubator-apex-malhar/pull/147#discussion_r48467728
--- Diff:
library/src/main/java/com/datatorrent/lib/db/jdbc/JdbcPOJOOutputOperator.java
---
@@ -69,18 +69,18 @@
implements Operator.ActivationListener<OperatorContext>
{
@NotNull
- private List<FieldInfo> fieldInfos;
+ protected List<FieldInfo> fieldInfos;
- private List<Integer> columnDataTypes;
+ protected List<Integer> columnDataTypes;
@NotNull
private String tablename;
- private final transient List<JdbcPOJOInputOperator.ActiveFieldInfo>
columnFieldGetters;
+ protected final transient List<JdbcPOJOInputOperator.ActiveFieldInfo>
columnFieldGetters;
private String insertStatement;
- private transient Class<?> pojoClass;
+ protected transient Class<?> pojoClass;
--- End diff --
Same, is there need to change this access level?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---