diff options
author | unknown <monty@mashka.mysql.fi> | 2002-12-27 21:39:35 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2002-12-27 21:39:35 +0200 |
commit | d78c9adb55a7f43bc234cfbf818ce8183ec73daf (patch) | |
tree | 80868d909a3253f702316058295646695044c0d3 /mysql-test/r/group_by.result | |
parent | 22611051945dc581414895086bd114dd597f69c7 (diff) | |
download | mariadb-git-d78c9adb55a7f43bc234cfbf818ce8183ec73daf.tar.gz |
Fixed max_key_length when using UNIQUE keys.
This fixed a bug in GROUP BY on a BLOB column with NULL values.
myisam/mi_create.c:
Fixed max_key_length when using UNIQUE keys.
myisam/mi_unique.c:
Simple optimization
Make different CRC for keys with null and empty strings.
mysql-test/r/group_by.result:
Updated results
mysql-test/t/group_by.test:
Test of bug
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index 0b720bc3d97..3bd3eeb5efd 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -102,3 +102,11 @@ pid c1id c2id value id active id active 1 4 NULL 4 4 Yes NULL NULL max(value) 4 +a count(*) +NULL 9 + 3 +b 1 +a count(*) +NULL 9 + 3 +b 1 |