mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
A "fix" for problem discovered in BUG#8510: remove ONLY_FULL_GROUP_BY mode from ANSI mode, as currently
ONLY_FULL_GROUP_BY mode is overly restrictive. mysql-test/r/ansi.result: A "fix" for problem discovered in BUG#8510: remove ONLY_FULL_GROUP_BY mode from ANSI mode. mysql-test/t/ansi.test: A "fix" for problem discovered in BUG#8510: remove ONLY_FULL_GROUP_BY mode from ANSI mode. sql/set_var.cc: A "fix" for problem discovered in BUG#8510: remove ONLY_FULL_GROUP_BY mode from ANSI mode.
This commit is contained in:
@ -19,7 +19,8 @@ SELECT 'A' || 'B';
|
||||
|
||||
CREATE TABLE t1 (id INT, id2 int);
|
||||
SELECT id,NULL,1,1.1,'a' FROM t1 GROUP BY id;
|
||||
--error 1055
|
||||
#No --error 1055 error due to temporary fix for BUG#8510:
|
||||
#ONLY_FULL_GROUP_BY is overly restrictive, so remove it from ANSI mode.
|
||||
SELECT id FROM t1 GROUP BY id2;
|
||||
drop table t1;
|
||||
|
||||
|
Reference in New Issue
Block a user