diff options
author | Monty <monty@mariadb.org> | 2022-10-04 16:16:06 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2022-10-04 21:46:44 +0300 |
commit | 30f3d767ef4a8789860452127d8e04b92fadaabc (patch) | |
tree | 4a2c0b88479e3812e98bbbe849b3123f4cc0dd75 /mysql-test/main/group_min_max.test | |
parent | a35f715f440eb9ce93e4245cb1e4e5bc6f6972a2 (diff) | |
download | mariadb-git-10.7-selectivity.tar.gz |
Added test cases for preceding test10.7-selectivity
This includes all test changes from
"Changing all cost calculation to be given in milliseconds"
and forwards
Diffstat (limited to 'mysql-test/main/group_min_max.test')
-rw-r--r-- | mysql-test/main/group_min_max.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/main/group_min_max.test b/mysql-test/main/group_min_max.test index c2e9db1c7be..35ef7301ef1 100644 --- a/mysql-test/main/group_min_max.test +++ b/mysql-test/main/group_min_max.test @@ -1391,6 +1391,7 @@ SELECT a, c, COUNT(DISTINCT c, a, b) FROM t2 GROUP BY a, b, c; EXPLAIN SELECT COUNT(DISTINCT c, a, b) FROM t2 WHERE a > 5 AND b BETWEEN 10 AND 20 GROUP BY a, b, c; + SELECT COUNT(DISTINCT c, a, b) FROM t2 WHERE a > 5 AND b BETWEEN 10 AND 20 GROUP BY a, b, c; |