diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-05-29 18:53:37 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-05-29 18:53:37 -0600 |
commit | 7a8520640a93758684dfa2cd859ba591f8923ee1 (patch) | |
tree | 42f41e1efa80a528b784080d3adbf953e1712214 /mysql-test/t/count_distinct2.test | |
parent | 020160f83f62d6171c57a4021e21e68049c2a4e8 (diff) | |
download | mariadb-git-7a8520640a93758684dfa2cd859ba591f8923ee1.tar.gz |
count(distinct) cleanup
mysql-test/t/count_distinct2.test:
make default NULL in tree->MyISAM test to make sure restore_record()
does not give a bad surprise
sql/item_sum.cc:
cleanup according to Monty's suggestions
sql/item_sum.h:
cleanup according to Monty's suggestions
Diffstat (limited to 'mysql-test/t/count_distinct2.test')
-rw-r--r-- | mysql-test/t/count_distinct2.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/count_distinct2.test b/mysql-test/t/count_distinct2.test index 2447a7c3611..33d4cf54278 100644 --- a/mysql-test/t/count_distinct2.test +++ b/mysql-test/t/count_distinct2.test @@ -45,7 +45,7 @@ select count(distinct n2), n1 from t1 group by n1; drop table t1; # test the converstion from tree to MyISAM -create table t1 (n int); +create table t1 (n int default NULL); let $1=5000; while ($1) { |