diff options
author | unknown <igor@rurik.mysql.com> | 2005-06-28 03:18:37 -0700 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2005-06-28 03:18:37 -0700 |
commit | 67abd491a1d5c631b0e72ea89941fafd9ac2fa34 (patch) | |
tree | c1899479c73a735ab5131308b58c7bcdff55f57e /mysql-test/r/group_by.result | |
parent | 3f499c32d44005906ad08c34011fbe96c598230a (diff) | |
download | mariadb-git-67abd491a1d5c631b0e72ea89941fafd9ac2fa34.tar.gz |
group_by.result, group_by.test:
Added a test case for bug #11414.
sql_select.cc:
Fixed bug #11414: crash on Windows with some simple
GROUP BY queries.
It happened to an allocation of an array containing
0 Copy_field elements in setup_copy_fields.
The bug had been already fixed in 5.0.
sql/sql_select.cc:
Fixed bug #11414: crash on Windows with some simple
GROUP BY queries.
It happened to an allocation of an array containing
0 Copy_field elements in setup_copy_fields.
The bug had been already fixed in 5.0.
mysql-test/t/group_by.test:
Added a test case for bug #11414.
mysql-test/r/group_by.result:
Added a test case for bug #11414.
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index 7f78b8bda9b..295663fe1d3 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -751,3 +751,9 @@ COUNT(DISTINCT(t1.id)) err_comment 1 NULL 1 a problem DROP TABLE t1, t2; +CREATE TABLE t1 (n int); +INSERT INTO t1 VALUES (1); +SELECT n+1 AS n FROM t1 GROUP BY n; +n +2 +DROP TABLE t1; |