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
Related to issue#26873
Now we don't support batchPointGet plan in the prepare plan cache. You can check it through the following steps.
Enable prepared-plan-cache.
use test
drop table if exists t;
create table t(a int primary key, b int, c int);
prepare stmt from 'select * from t where a = 2 or a = ?';
set @p = 3;
execute stmt using @p;
select @@last_plan_from_cache;
execute stmt using @p;
select @@last_plan_from_cache;
The text was updated successfully, but these errors were encountered:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.
Enhancement
Related to issue#26873
Now we don't support
batchPointGet
plan in the prepare plan cache. You can check it through the following steps.Enable prepared-plan-cache.
The text was updated successfully, but these errors were encountered: