mirror of
https://github.com/MariaDB/server.git
synced 2025-07-05 10:58:16 +02:00

With MSAN the following test behavious where observed: * funcs_1.myisam_views-big - normal big test for non-debug * innodb_gis.rtree_purge - normal big test with MSAN * main.alter_table_lock - very quick - unclear why disabled * main.cte_recursive - slow on Debug only * main.join_cache_notasan - special MSAN handing for returning OOM added * main.sum_distinct-big - 90 seconds on non-debug - still big however * maria.max_length - normal big test with MSAN * perfschema.statement_digest_long_query - overflows stack on debug Timingsi (on old memory constrained hardware): non-debug: funcs_1.myisam_views-big w2 [ pass ] 78564 innodb_gis.rtree_purge '16k' w2 [ pass ] 5784 innodb_gis.rtree_purge '32k' w2 [ pass ] 5242 innodb_gis.rtree_purge '4k' w1 [ pass ] 8303 innodb_gis.rtree_purge '64k' w1 [ pass ] 6348 innodb_gis.rtree_purge '8k' w2 [ pass ] 5870 main.alter_table_lock w1 [ pass ] 41 main.cte_recursive w1 [ pass ] 15485 main.join_cache_notasan w1 [ pass ] 39 main.sum_distinct-big w2 [ pass ] 96256 maria.max_length w1 [ pass ] 92990 perfschema.statement_digest_long_query w2 [ pass ] 8 debug: funcs_1.myisam_views-big w1 [ skipped ] Can't be run WITH_MSAN and CMAKE_BUILD_TYPE=Debug innodb_gis.rtree_purge '16k' w2 [ pass ] 109788 innodb_gis.rtree_purge '32k' w2 [ pass ] 62361 innodb_gis.rtree_purge '4k' w1 [ pass ] 89423 innodb_gis.rtree_purge '64k' w1 [ pass ] 72082 innodb_gis.rtree_purge '8k' w1 [ pass ] 98452 main.alter_table_lock w2 [ pass ] 38 main.cte_recursive w2 [ pass ] 180047 main.join_cache_notasan w1 [ pass ] 166 main.sum_distinct-big w1 [ skipped ] Can't be run WITH_MSAN and CMAKE_BUILD_TYPE=Debug maria.max_length w1 [ skipped ] Can't be run WITH_MSAN and CMAKE_BUILD_TYPE=Debug perfschema.statement_digest_long_query w1 [ skipped ] Can't be run WITH_MSAN and CMAKE_BUILD_TYPE=Debug
112 lines
3.1 KiB
Text
112 lines
3.1 KiB
Text
#
|
|
# Various tests for SUM(DISTINCT ...)
|
|
#
|
|
|
|
--source include/big_test.inc
|
|
# Test will take more than one hour with valgrind
|
|
--source include/not_valgrind.inc
|
|
--source include/not_msan_with_debug.inc
|
|
--source include/have_innodb.inc
|
|
--source include/have_sequence.inc
|
|
|
|
set @save_tmp_table_size=@@tmp_table_size;
|
|
set @save_max_heap_table_size=@@max_heap_table_size;
|
|
|
|
#
|
|
# Test the case when distinct values doesn't fit in memory and
|
|
# filesort is used (see uniques.cc:merge_walk)
|
|
#
|
|
|
|
set default_storage_engine=MYISAM;
|
|
|
|
CREATE TABLE t1 (id INTEGER);
|
|
CREATE TABLE t2 (id INTEGER);
|
|
|
|
INSERT INTO t1 SELECT b.seq FROM seq_1_to_128,seq_1_to_1024 b;
|
|
|
|
# Just test that AVG(DISTINCT) is there
|
|
SELECT AVG(DISTINCT id) FROM t1 GROUP BY id % 13;
|
|
SELECT SUM(DISTINCT id)/COUNT(DISTINCT id) FROM t1 GROUP BY id % 13;
|
|
|
|
INSERT INTO t1 SELECT b.seq FROM seq_1_to_128,seq_1025_to_16384 b;
|
|
INSERT INTO t2 SELECT b.seq FROM seq_1_to_128 a,seq_1_to_16384 b
|
|
ORDER by (a.seq*0+b.seq)*rand();
|
|
|
|
# SELECT '++++++++++++++++++++++++++++++++++++++++++++++++++';
|
|
|
|
SELECT SUM(DISTINCT id) sm FROM t1;
|
|
SELECT SUM(DISTINCT id) sm FROM t2;
|
|
SELECT SUM(DISTINCT id) sm FROM t1 group by id % 13;
|
|
|
|
# this limit for max_heap_table_size is set to force testing the case, when
|
|
# all distinct sum values can not fit in memory and must be stored in a
|
|
# temporary table
|
|
|
|
SET max_heap_table_size=16384;
|
|
|
|
# to check that max_heap_table_size was actually set (hard limit for minimum
|
|
# max_heap_table_size is set in mysqld.cc):
|
|
|
|
SHOW variables LIKE 'max_heap_table_size';
|
|
|
|
SELECT SUM(DISTINCT id) sm FROM t1;
|
|
SELECT SUM(DISTINCT id) sm FROM t2;
|
|
SELECT SUM(DISTINCT id) sm FROM t1 GROUP BY id % 13;
|
|
|
|
--echo #
|
|
--echo # Bug mdev-4063: SUM(DISTINCT...) with small'max_heap_table_size
|
|
--echo # (bug #56927)
|
|
--echo #
|
|
|
|
SET max_heap_table_size=default;
|
|
|
|
INSERT INTO t1 SELECT b.seq FROM seq_1_to_128,seq_16385_to_32768 b;
|
|
TRUNCATE t2;
|
|
INSERT INTO t2 SELECT b.seq FROM seq_1_to_128 a,seq_1_to_32768 b
|
|
ORDER BY (a.seq*0+b.seq)*rand();
|
|
|
|
SELECT SUM(DISTINCT id) sm FROM t2;
|
|
|
|
SET max_heap_table_size=16384;
|
|
|
|
SELECT SUM(DISTINCT id) sm FROM t2;
|
|
|
|
DROP TABLE t1;
|
|
DROP TABLE t2;
|
|
|
|
SET @@tmp_table_size=@save_tmp_table_size;
|
|
SET @@max_heap_table_size=@save_max_heap_table_size;
|
|
|
|
--echo #
|
|
--echo # MDEV-4311: COUNT(DISTINCT...) requiring a file for UNIQUE (bug #68749)
|
|
--echo #
|
|
CREATE TABLE t2 (id INTEGER) ENGINE=InnoDB;
|
|
|
|
--disable_view_protocol
|
|
BEGIN;
|
|
INSERT INTO t2 SELECT b.seq FROM seq_1_to_128 a, seq_1_to_16384 b
|
|
ORDER BY b.seq*rand();
|
|
INSERT INTO t2 VALUE(NULL);
|
|
|
|
--echo # With default tmp_table_size / max_heap_table_size
|
|
SELECT SQL_NO_CACHE count(DISTINCT id) sm FROM t2;
|
|
|
|
set @@tmp_table_size=1024*256;
|
|
|
|
--echo # With reduced tmp_table_size
|
|
SELECT SQL_NO_CACHE count(DISTINCT id) sm FROM t2;
|
|
|
|
set @@tmp_table_size=@save_tmp_table_size;
|
|
SET @@max_heap_table_size=1024*256;
|
|
|
|
--echo # With reduced max_heap_table_size
|
|
SELECT SQL_NO_CACHE count(DISTINCT id) sm FROM t2;
|
|
|
|
SET @@max_heap_table_size=@save_max_heap_table_size;
|
|
|
|
--echo # Back to default tmp_table_size / max_heap_table_size
|
|
SELECT SQL_NO_CACHE count(DISTINCT id) sm FROM t2;
|
|
COMMIT;
|
|
--enable_view_protocol
|
|
|
|
DROP TABLE t2;
|