-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect not in function behavior for rough set filter when one parameter is column type #8230
Labels
component/storage
priority/P1
The issue has P1 priority.
severity/major
type/bug
The issue is confirmed as a bug.
Comments
From execution summary, RoughSet filter bahaves incorrectly:
|
yibin87
added
component/storage
priority/P1
The issue has P1 priority.
severity/major
labels
Oct 23, 2023
introduce by #8212 |
Does not affects release-7.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
component/storage
priority/P1
The issue has P1 priority.
severity/major
type/bug
The issue is confirmed as a bug.
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
mysql> create table t1 (a int unsigned);
mysql> insert into t1 values(300);
mysql> insert into t1 values(null);
mysql> insert into t1 values(981);
mysql> alter table t1 set tiflash replica 1;
mysql> set session tidb_isolation_read_engines='tiflash';
mysql> select * from t1 where not cast(a as signed) not in (a, 88);
2. What did you expect to see? (Required)
+------+
| a |
+------+
| 300 |
| 981 |
+------+
3. What did you see instead (Required)
Empty result set.
4. What is your TiFlash version? (Required)
The text was updated successfully, but these errors were encountered: