gknz opened a new pull request, #759: URL: https://github.com/apache/wayang/pull/759
The executeSinkStage method from the PR #750 declared filterTasks and joinTasks as Collection<JdbcFilterOperator> and Collection<JdbcJoinOperator<?>> respectively, but passed them to createSqlString() which expects Collection<JdbcExecutionOperator>. Java generics are invariant so this caused a compilation failure. Fixed by makingg both local variable declarations to Collection<JdbcExecutionOperator>, matching the existing pattern in the adjacent executeQueryStage method. -- 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]
