njnu-seafish commented on code in PR #18174:
URL:
https://github.com/apache/dolphinscheduler/pull/18174#discussion_r3245306177
##########
dolphinscheduler-task-plugin/dolphinscheduler-task-sqoop/src/main/java/org/apache/dolphinscheduler/plugin/task/sqoop/generator/targets/SqlServerTargetGenerator.java:
##########
@@ -109,7 +109,7 @@ public String generate(SqoopParameters sqoopParameters,
SqoopTaskExecutionContex
}
}
- if (targetSqlServerParameter.getIsUpdate()
+ if (targetSqlServerParameter.isUpdate()
Review Comment:
> Same here.
Given the field
private boolean isUpdate;
Lombok's @Data annotation (or @Getter and @Setter individually) will
generate these two methods:
public boolean isUpdate()
public void setUpdate(boolean update)
--
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]