TiFlash Bitwise Inversion function behaves differently with tidb and tikv
- Dominant language
- Go
- Stars
- 40.5k
- Forks
- 6.2k
- PR merge metrics
- PR metrics pending
Description
## Bug Report
Please answer these questions before submitting your issue. Thanks!
### 1. Minimal reproduce step (Required)
prepare data
```sql
drop table if exists t0;
CREATE TABLE t0(c0 CHAR NOT NULL );
INSERT INTO t0 VALUES ('A');
ALTER TABLE t0 SET TIFLASH REPLICA 1;
```
execute query
```sql
SELECT /*+ read_from_storage(tikv[t0]) */ * FROM t0 WHERE (~ ((BINARY ((~ (t0.c0))))));
SELECT /*+ read_from_storage(tiflash[t0]) */ * FROM t0 WHERE (~ ((BINARY ((~ (t0.c0))))));
```
### 2. What did you expect to see? (Required)
The results of the two queries are equal.
### 3. What did you see instead (Required)
Query1 result:
empty
Query2 result:

### 4. What is your TiDB version? (Required)
Release Version: v8.4.0
Edition: Community
Git Commit Hash: https://github.com/pingcap/tidb/commit/1a9f0fa25580907d3266dc3edf000ba24379a600
Git Branch: HEAD
UTC Build Time: 2024-11-07 15:18:43
GoVersion: go1.23.2
Race Enabled: false
Check Table Before Drop: false
Store: tikv
Contributor guide
Assessment
This issue has not been assessed yet.