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/r/func_str.result | |
parent | 7d39b28093b06ea67318c257057e93cf891ce896 (diff) | |
download | mariadb-git-b404b236a2093e9bd259ed0d6c2add62dc3005d4.tar.gz |
MDEV-9332 Bug after upgrade to 10.1.10
Diffstat (limited to 'mysql-test/r/func_str.result')
-rw-r--r-- | mysql-test/r/func_str.result | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/func_str.result b/mysql-test/r/func_str.result index 9bc80613710..678b6d22028 100644 --- a/mysql-test/r/func_str.result +++ b/mysql-test/r/func_str.result @@ -4571,5 +4571,17 @@ Warnings: Note 1003 select `test`.`t1`.`a` AS `a` from `test`.`t1` where ((`test`.`t1`.`a` = 18446744073709551615) and (format(`test`.`t1`.`a`,0) = '18,446,744,073,709,551,615')) DROP TABLE t1; # +# Bug#58081 Duplicate entry error when doing GROUP BY +# MDEV-9332 Bug after upgrade to 10.1.10 +# +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); +COUNT(*) +20 +5 +DROP TABLE t1; +# # End of 10.1 tests # |