diff options
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index 222977e5106..85ec79d94a1 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -359,7 +359,7 @@ A 4 B 4 a 1 b 1 -SET SQL_BIG_TABLES=1; +SET BIG_TABLES=1; SELECT a FROM t1 GROUP BY a; a NULL @@ -398,7 +398,7 @@ A 4 B 4 a 1 b 1 -SET SQL_BIG_TABLES=0; +SET BIG_TABLES=0; drop table t1; CREATE TABLE t1 ( `a` char(193) default NULL, @@ -515,7 +515,7 @@ a count(*) NULL 9 3 b 1 -set option sql_big_tables=1; +set big_tables=1; select a,count(*) from t1 group by a; a count(*) NULL 9 @@ -1918,7 +1918,7 @@ DROP TABLE t1; # Bug#11765254 (58200): Assertion failed: param.sort_length when grouping # by functions # -SET SQL_BIG_TABLES=1; +SET BIG_TABLES=1; CREATE TABLE t1(a INT); INSERT INTO t1 VALUES (0),(0); SELECT 1 FROM t1 GROUP BY IF(`a`,'',''); @@ -1945,7 +1945,7 @@ Warning 1292 Truncated incorrect INTEGER value: 'jxW<' Warning 1292 Truncated incorrect INTEGER value: 'K' Warning 1292 Truncated incorrect INTEGER value: 'jxW<' DROP TABLE t1; -SET SQL_BIG_TABLES=0; +SET BIG_TABLES=0; # End of 5.1 tests # # LP bug#694450 Wrong result with non-standard GROUP BY + ORDER BY |