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
create table t(a year,b date);
insert into t values(2005,"2004-10-10"),(2015,"2018-03-27");
alter table t set tiflash replica 1;
select * from t where a>b;
expect
+------+------------+
| a | b |
+------+------------+
| 2005 | 2004-10-10 |
+------+------------+
but got
+------+------------+
| a | b |
+------+------------+
| 2005 | 2004-10-10 |
| 2015 | 2018-03-27 |
+------+------------+
The text was updated successfully, but these errors were encountered:
expect
but got
The text was updated successfully, but these errors were encountered: