diff options
author | unknown <serg@serg.mylan> | 2005-09-09 12:43:25 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-09-09 12:43:25 +0200 |
commit | 1a3313500221fc87ea333ab94bd5c70751dca711 (patch) | |
tree | 3eedb4d5b47f6df5cf24307de5e1cb736f44f0fa /mysql-test/t/group_by.test | |
parent | 7d512b157cd5c8346b32a961b4b32682418f8c60 (diff) | |
parent | ec16a3d6be59b8817eeb217b429d5b1afeecfd2b (diff) | |
download | mariadb-git-1a3313500221fc87ea333ab94bd5c70751dca711.tar.gz |
merged
Diffstat (limited to 'mysql-test/t/group_by.test')
-rw-r--r-- | mysql-test/t/group_by.test | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/mysql-test/t/group_by.test b/mysql-test/t/group_by.test index 29ffa20024f..bf557029a55 100644 --- a/mysql-test/t/group_by.test +++ b/mysql-test/t/group_by.test @@ -575,23 +575,12 @@ 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'); - SELECT COUNT(DISTINCT(t1.id)), LEFT(err_comment, 256) AS comment FROM t1 LEFT JOIN t2 ON t1.id=t2.id GROUP BY comment; DROP TABLE t1, t2; # -# 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; - -# # Bug #12266 GROUP BY expression on DATE column produces result with # reduced length # |