diff options
author | Alexander Barkov <bar@mariadb.org> | 2016-01-27 11:42:31 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2016-01-27 11:42:31 +0400 |
commit | b404b236a2093e9bd259ed0d6c2add62dc3005d4 (patch) | |
tree | 172f2eadb6a55037f752e857070008cf73b86450 /mysql-test/t/func_str.test | |
parent | 7d39b28093b06ea67318c257057e93cf891ce896 (diff) | |
download | mariadb-git-b404b236a2093e9bd259ed0d6c2add62dc3005d4.tar.gz |
MDEV-9332 Bug after upgrade to 10.1.10
Diffstat (limited to 'mysql-test/t/func_str.test')
-rw-r--r-- | mysql-test/t/func_str.test | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/func_str.test b/mysql-test/t/func_str.test index 511f1f31736..2645417f3e5 100644 --- a/mysql-test/t/func_str.test +++ b/mysql-test/t/func_str.test @@ -1774,5 +1774,15 @@ SELECT * FROM t1 WHERE a=18446744073709551615 AND FORMAT(a,0)='18,446,744,073,70 DROP TABLE t1; --echo # +--echo # Bug#58081 Duplicate entry error when doing GROUP BY +--echo # MDEV-9332 Bug after upgrade to 10.1.10 +--echo # +SET NAMES latin1; +CREATE TABLE t1 (a INT); +INSERT INTO t1 VALUES (0),(0),(1),(0),(0); +SELECT COUNT(*) FROM t1, t1 t2 GROUP BY INSERT('', t2.a, t1.a, @@global.max_binlog_size); +DROP TABLE t1; + +--echo # --echo # End of 10.1 tests --echo # |