GitHub user fhueske opened a pull request:
https://github.com/apache/flink/pull/4962
[FLINK-8002] [table] Fix join window boundary for LESS_THAN and
GREATER_THAN predicates.
## What is the purpose of the change
Fix the computation of join window boundaries for LESS_THAN and
GREATER_THAN predicates if the time attribute of the right input is referenced
on the left side of the predicate.
## Brief change log
- check which input is referenced on which side of the predicate to
determine whether to add or subtract 1 from the boundary.
## Verifying this change
- `JoinTest` was extended to verify the computation of the boundaries.
## Does this pull request potentially affect one of the following parts:
- Dependencies (does it add or upgrade a dependency): **no**
- The public API, i.e., is any changed class annotated with
`@Public(Evolving)`: **no**
- The serializers: **no**
- The runtime per-record code paths (performance sensitive): **no**
- Anything that affects deployment or recovery: JobManager (and its
components), Checkpointing, Yarn/Mesos, ZooKeeper: **no**
- The S3 file system connector: **no**
## Documentation
- Does this pull request introduce a new feature? **no**
- If yes, how is the feature documented? **n/a**
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/fhueske/flink tableJoinBoundaryFix
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/flink/pull/4962.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #4962
----
commit e2ca2627c1c3fdcc09bfd20b670d287942185eb0
Author: Fabian Hueske <[email protected]>
Date: 2017-11-06T20:22:35Z
[FLINK-8002] [table] Fix join window boundary for LESS_THAN and
GREATER_THAN predicates.
----
---