diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2017-06-19 16:56:13 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2017-06-19 16:56:13 +0300 |
commit | 3a7201ea922f6d3373924c413fdb4b108f6208c5 (patch) | |
tree | 1dd4316340daba50d6d1f684c7137b47c7799541 /mysql-test/t/func_group.test | |
parent | 578d8bfde53c42245f2a0641e7cc2af2ed8230cc (diff) | |
parent | c73fa2d75fac7a057ae817bfaf142adb87ff2500 (diff) | |
download | mariadb-git-3a7201ea922f6d3373924c413fdb4b108f6208c5.tar.gz |
Merge 10.2 into bb-10.2-ext
Diffstat (limited to 'mysql-test/t/func_group.test')
-rw-r--r-- | mysql-test/t/func_group.test | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/t/func_group.test b/mysql-test/t/func_group.test index 4928203e603..d847f7cd5f7 100644 --- a/mysql-test/t/func_group.test +++ b/mysql-test/t/func_group.test @@ -1693,6 +1693,17 @@ DROP TABLE t1; --echo # --echo # +--echo # MDEV-13064: assertion `n < m_size' fails in Item::split_sum_func2() +--echo # + +create table t1 (i int) engine=MyISAM; +insert into t1 value (1),(2); + +select count(*)+sleep(0) from t1; + +drop table t1; + +--echo # --echo # Start of 10.3 tests --echo # |