~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/subselect3.result

  • Committer: Lee Bieber
  • Date: 2010-11-04 14:34:26 UTC
  • mfrom: (1902.1.3 build)
  • Revision ID: kalebral@gmail.com-20101104143426-7j06brcd847kl52n
Merge Stewart - some very simple HailDB plugin docs.
Merge Patrick - fix bug 666548: Several tests that make use of hard-coded paths for INFILE commands are failing when test-run used with --mem
Merge Stewart - fix some warnings when making docs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
772
772
DROP TABLE t1, t2;
773
773
create table t1 (a int, b decimal(13, 3));
774
774
insert into t1 values (1, 0.123);
775
 
select a, (select max(b) from t1) into outfile "subselect.out.file.1" from t1;
 
775
select a, (select max(b) from t1) into outfile "DRIZZLETEST_VARDIR/subselect.out.file.1" from t1;
776
776
delete from t1;
777
 
load data infile "subselect.out.file.1" into table t1;
 
777
load data infile "DRIZZLETEST_VARDIR/subselect.out.file.1" into table t1;
778
778
select * from t1;
779
779
a       b
780
780
1       0.123