We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
count
Please answer these questions before submitting your issue. Thanks!
MySQL [test]> create table t1(a int primary key); Query OK, 0 rows affected (0.01 sec) MySQL [test]> explain select * from t1 where a = 1 and a = 2; +-------------------+----------+------+------------------------------------------+ | id | count | task | operator info | +-------------------+----------+------+------------------------------------------+ | TableReader_6 | 10000.00 | root | data:TableScan_5 | | └─TableScan_5 | 10000.00 | cop | table:t1, keep order:false, stats:pseudo | +-------------------+----------+------+------------------------------------------+ 2 rows in set (0.00 sec) MySQL [test]> analyze table t1; Query OK, 0 rows affected (0.02 sec) MySQL [test]> explain select * from t1 where a = 1 and a = 2; +-------------------+----------+------+------------------------------------------+ | id | count | task | operator info | +-------------------+----------+------+------------------------------------------+ | TableReader_6 | 10000.00 | root | data:TableScan_5 | | └─TableScan_5 | 10000.00 | cop | table:t1, keep order:false, stats:pseudo | +-------------------+----------+------+------------------------------------------+ 2 rows in set (0.01 sec) MySQL [test]> insert into t1 values(1); Query OK, 1 row affected (0.00 sec) MySQL [test]> explain select * from t1 where a = 1 and a = 2; +-------------------+----------+------+------------------------------------------+ | id | count | task | operator info | +-------------------+----------+------+------------------------------------------+ | TableReader_6 | 10000.00 | root | data:TableScan_5 | | └─TableScan_5 | 10000.00 | cop | table:t1, keep order:false, stats:pseudo | +-------------------+----------+------+------------------------------------------+ 2 rows in set (0.00 sec) MySQL [test]> analyze table t1; Query OK, 0 rows affected (0.00 sec) MySQL [test]> explain select * from t1 where a = 1 and a = 2; +-------------------+-------+------+----------------------------+ | id | count | task | operator info | +-------------------+-------+------+----------------------------+ | TableReader_6 | 0.00 | root | data:TableScan_5 | | └─TableScan_5 | 0.00 | cop | table:t1, keep order:false | +-------------------+-------+------+----------------------------+ 2 rows in set (0.00 sec)
count outputs should all be 0.00 for the above explain statements.
0.00
explain
count field is 10000.00.
10000.00
Three requirements to trigger this problem:
false
HistColl::ColumnIsInvalid
tidb-server -V
select tidb_version();
MySQL [test]> select tidb_version(); +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | tidb_version() | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | Release Version: v2.1.0-rc.1-18-geec6899 Git Commit Hash: eec68995689d5811f4d52846586e969652ed8ffc Git Branch: master UTC Build Time: 2018-09-02 12:04:09 GoVersion: go version go1.11rc1 linux/amd64 Race Enabled: false TiKV Min Version: 2.1.0-alpha.1-ff3dd160846b7d1aed9079c389fc188f7f5ea13e Check Table Before Drop: false | +-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ 1 row in set (0.00 sec)
The text was updated successfully, but these errors were encountered:
#7583 merged
Sorry, something went wrong.
does index scan have the same problem?
@zz-jason no, only happens on PK table scan
No branches or pull requests
Please answer these questions before submitting your issue. Thanks!
If possible, provide a recipe for reproducing the error.
count
outputs should all be0.00
for the aboveexplain
statements.count
field is10000.00
.Three requirements to trigger this problem:
false
;HistColl::ColumnIsInvalid
tidb-server -V
or runselect tidb_version();
on TiDB)?The text was updated successfully, but these errors were encountered: