beyond1920 commented on a change in pull request #17733:
URL: https://github.com/apache/flink/pull/17733#discussion_r749961893
##########
File path:
flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/planner/plan/utils/WindowJoinUtil.scala
##########
@@ -60,7 +61,11 @@ object WindowJoinUtil extends Logging {
* ends equality of input tables, else false.
*/
def satisfyWindowJoin(join: FlinkLogicalJoin): Boolean = {
- excludeWindowStartEqualityAndEndEqualityFromJoinInfoPairs(join) match {
+ satisfyWindowJoin(join, join.getLeft, join.getRight)
Review comment:
ditto
##########
File path:
flink-table/flink-table-planner/src/main/scala/org/apache/flink/table/planner/plan/utils/TemporalJoinUtil.scala
##########
@@ -424,10 +425,14 @@ object TemporalJoinUtil {
* else false.
*/
def satisfyTemporalJoin(join: FlinkLogicalJoin): Boolean = {
+ satisfyTemporalJoin(join, join.getLeft, join.getRight)
Review comment:
ditto
--
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]