Commit 7d2ae99
gepa
Fix compilation error in JdbcExecutor.executeSinkStage
The executeSinkStage method introduced in #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 widening both local variable
declarations to Collection<JdbcExecutionOperator>, matching the existing
pattern in the adjacent executeQueryStage method.1 parent 4d8d5b7 commit 7d2ae99
1 file changed
Lines changed: 2 additions & 2 deletions
File tree
- wayang-platforms/wayang-jdbc-template/src/main/java/org/apache/wayang/jdbc/execution
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
129 | 129 | | |
130 | 130 | | |
131 | 131 | | |
132 | | - | |
| 132 | + | |
133 | 133 | | |
134 | | - | |
| 134 | + | |
135 | 135 | | |
136 | 136 | | |
137 | 137 | | |
| |||
0 commit comments