~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/subselect3.test

  • Committer: Brian Aker
  • Date: 2010-09-09 21:45:53 UTC
  • mto: (1756.1.2 build) (1768.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1757.
  • Revision ID: brian@tangent.org-20100909214553-e687rmf5zk9478on
Force unique to just use memory and let the OS handle paging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
618
618
 
619
619
create table t1 (a int, b decimal(13, 3)); 
620
620
insert into t1 values (1, 0.123);
621
 
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
622
 
eval select a, (select max(b) from t1) into outfile "$DRIZZLETEST_VARDIR/subselect.out.file.1" from t1;
 
621
select a, (select max(b) from t1) into outfile "subselect.out.file.1" from t1;
623
622
delete from t1;
624
 
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
625
 
eval load data infile "$DRIZZLETEST_VARDIR/subselect.out.file.1" into table t1;
 
623
load data infile "subselect.out.file.1" into table t1;
626
624
select * from t1;
627
625
drop table t1;
628
626