twalthr commented on pull request #13298:
URL: https://github.com/apache/flink/pull/13298#issuecomment-694702382
@SteNicholas are you sure that this PR implements the intended behavior? I
quickly checked
```
table.limit(2).limit(2) --> Sort(order = None, offset = 0, fetch = 2, child
= Table)
table.orderBy($("word")).limit(2).limit(2) --> Sort(order = None, offset =
0, fetch = 2, child = Table)
```
So always only one SortOperation is created, not subsequent ones. Is that
intended?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]