Commit 5c8bbf9d authored by unknown's avatar unknown

fix for an error in the merge from 3.23

parent bd98fae4
...@@ -63,7 +63,12 @@ nothing 2 ...@@ -63,7 +63,12 @@ nothing 2
one 1 one 1
two 1 two 1
drop table t1; drop table t1;
drop table if exists t1;
create table t1 (row int not null, col int not null, val varchar(255) not null);
insert into t1 values (1,1,'orange'),(1,2,'large'),(2,1,'yellow'),(2,2,'medium'),(3,1,'green'),(3,2,'small');
select max(case col when 1 then val else null end) as color from t1 group by row;
color color
orange orange
yellow yellow
green green
drop table if exists t1;
...@@ -30,8 +30,8 @@ insert into t1 values(1),(2),(3),(4); ...@@ -30,8 +30,8 @@ insert into t1 values(1),(2),(3),(4);
select case a when 1 then 2 when 2 then 3 else 0 end as fcase, count(*) from t1 group by fcase; select case a when 1 then 2 when 2 then 3 else 0 end as fcase, count(*) from t1 group by fcase;
select case a when 1 then "one" when 2 then "two" else "nothing" end as fcase, count(*) from t1 group by fcase; select case a when 1 then "one" when 2 then "two" else "nothing" end as fcase, count(*) from t1 group by fcase;
drop table t1; drop table t1;
drop table if exists t; drop table if exists t1;
create table t1 (row int not null, col int not null, val varchar(255) not null); create table t1 (row int not null, col int not null, val varchar(255) not null);
insert into t1 values (1,1,'orange'),(1,2,'large'),(2,1,'yellow'),(2,2,'medium'),(3,1,'green'),(3,2,'small'); insert into t1 values (1,1,'orange'),(1,2,'large'),(2,1,'yellow'),(2,2,'medium'),(3,1,'green'),(3,2,'small');
select max(case col when 1 then val else null end) as color from t1 group by row; select max(case col when 1 then val else null end) as color from t1 group by row;
drop table if exists t; drop table if exists t1;
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