summaryrefslogtreecommitdiff
path: root/mysql-test/main/group_by.test
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-01-07 13:23:41 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2020-01-07 13:23:41 +0200
commitd60dcabd0ffdd23645fe272c88b87196cbbd07cb (patch)
tree3b460914bac274e09b81d07200a3847d61660b17 /mysql-test/main/group_by.test
parent8a6863002c107cb7ed84a1e36ee1c05c742105f8 (diff)
parenteda719793acd90f6157bcb825722dab674376bf4 (diff)
downloadmariadb-git-d60dcabd0ffdd23645fe272c88b87196cbbd07cb.tar.gz
Merge 10.3 into 10.4
Diffstat (limited to 'mysql-test/main/group_by.test')
-rw-r--r--mysql-test/main/group_by.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/main/group_by.test b/mysql-test/main/group_by.test
index 091a7de26fe..fdebe058043 100644
--- a/mysql-test/main/group_by.test
+++ b/mysql-test/main/group_by.test
@@ -1952,7 +1952,7 @@ drop table t1;
--echo #
CREATE TABLE t1(a int, b int);
-INSERT INTO t1 values (1, 100), (2, 200), (3, 100), (4, 200);
+INSERT INTO t1 values (1, 100), (2, 200), (3, 100), (4, 200), (5, 200);
create view v1 as select a, b+1 as x from t1;