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
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
/* s1 */ create table t (i int);
/* s1 */insert into t values (1);
/* s1 */select*from t; /* got 1 *//* s1 */ do @a := (select*from t where i =1);
/* s2 */insert into t values (2);
/* s1 */select*from t /* got 1, should be 1, 2 */
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
The last statement should get "1, 2".
3. What did you see instead (Required)
It returns "1".
4. What is your TiDB version? (Required)
38324d3
#19106 introduced it.
The text was updated successfully, but these errors were encountered: