summaryrefslogtreecommitdiff
path: root/mysql-test/t/group_by.test
diff options
context:
space:
mode:
authorserg@serg.mylan <>2005-09-09 12:15:25 +0200
committerserg@serg.mylan <>2005-09-09 12:15:25 +0200
commitf16bb5da7e381f71a975e4a55165f1c68b7455f8 (patch)
tree8b241868ec97e06a6b78625db7753db277046546 /mysql-test/t/group_by.test
parentb69f49c0d5e8982f4eac0e5a6153231dd0186436 (diff)
downloadmariadb-git-f16bb5da7e381f71a975e4a55165f1c68b7455f8.tar.gz
aftermerge
Diffstat (limited to 'mysql-test/t/group_by.test')
-rw-r--r--mysql-test/t/group_by.test10
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/t/group_by.test b/mysql-test/t/group_by.test
index 043adb97c64..60b6ced9d6a 100644
--- a/mysql-test/t/group_by.test
+++ b/mysql-test/t/group_by.test
@@ -575,16 +575,6 @@ CREATE TABLE t1 (id varchar(20) NOT NULL);
INSERT INTO t1 VALUES ('trans1'), ('trans2');
CREATE TABLE t2 (id varchar(20) NOT NULL, err_comment blob NOT NULL);
INSERT INTO t2 VALUES ('trans1', 'a problem');
-#
-# BUG#12695: Item_func_isnull::update_used_tables
-# did not update const_item_cache
-#
-create table t1(f1 varchar(5) key);
-insert into t1 values (1),(2);
-select sql_buffer_result max(f1) is null from t1;
-select sql_buffer_result max(f1)+1 from t1;
-drop table t1;
-
SELECT COUNT(DISTINCT(t1.id)), LEFT(err_comment, 256) AS comment
FROM t1 LEFT JOIN t2 ON t1.id=t2.id GROUP BY comment;