619
619
create table t1 (a int, b decimal(13, 3));
620
620
insert into t1 values (1, 0.123);
621
622
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
622
623
eval select a, (select max(b) from t1) into outfile "$DRIZZLETEST_VARDIR/subselect.out.file.1" from t1;