You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this query, there is a predicate `substring('123', a, 1) = '1'`.
88
+
In this query, there is a predicate `truncate(a, " ") = '1'`.
89
89
90
-
From the `explain` results, we can see that the predicate is not pushed down to TiKV for calculation. This is because the TiKV coprocessor does not support the built-in function `substring`.
90
+
From the `explain` results, you can see that the predicate is not pushed down to TiKV for calculation. This is because the TiKV coprocessor does not support the built-in function `truncate`.
91
91
92
92
### Case 5: predicates of inner tables on the outer join can't be pushed down
0 commit comments