1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-02 02:53:04 +03:00

Fix for BUG#11821 manually merged

This commit is contained in:
sergefp@mysql.com
2005-07-12 17:11:24 +00:00
3 changed files with 20 additions and 2 deletions

View File

@@ -2837,3 +2837,9 @@ WHERE select_id = 0 OR select_id = 1);
values_id
1
DROP TABLE t1, t2;
create table t1 (fld enum('0','1'));
insert into t1 values ('1');
select * from (select max(fld) from t1) as foo;
max(fld)
1
drop table t1;