~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/subselect3.test

  • Committer: Monty Taylor
  • Date: 2010-06-16 22:09:44 UTC
  • mto: (1627.2.5 build)
  • mto: This revision was merged to the branch mainline in revision 1628.
  • Revision ID: mordred@inaugust.com-20100616220944-dlpupc1e45iehyfy
Fixed the visibility header to match the project name.

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