For example: ``` SELECT c1 FROM t WHERE c1 > 0 LIMIT 2 ``` If pushdown_filters is enabled, the `c1>0` condition doesn't need to be kept in a FilterExec; the row_filter will perform the exact filtering.