Hello, I have a question about ScanTableSource.
If I implement a custom table source that implements ScanTableSource and SupportsFilterPushDown, but the filter push down is only applied for simple expressions (ie: not function calls) will Flink still apply the filter later?
Basically are filter push downs hints for the source, and filters applied by flink again to make sure? or are they assumed to have been applied and thus Flink doesn’t do further filtering afterward.