Commit 1dad067f authored by unknown's avatar unknown

having.test:

  After merge fix for bug#18739


mysql-test/t/having.test:
  After merge fix for bug#18739
parent ccee4036
......@@ -401,7 +401,7 @@ create table t1(f1 int);
select f1 from t1 having max(f1)=f1;
select f1 from t1 group by f1 having max(f1)=f1;
set session sql_mode='ONLY_FULL_GROUP_BY';
--error 1461
--error 1463
select f1 from t1 having max(f1)=f1;
select f1 from t1 group by f1 having max(f1)=f1;
set session sql_mode='';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment