diff options
author | Georgi Kodinov <joro@sun.com> | 2009-01-30 15:44:49 +0200 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2009-01-30 15:44:49 +0200 |
commit | 87eb2cb938382b545158987a1cc6bc170588db3a (patch) | |
tree | a6a00e2376ec5327aa29d5a5b2441a06f8d146d4 /mysql-test/r/subselect.result | |
parent | 093a6dd90e12ca41e7e415f57f5a91181bf1959e (diff) | |
parent | f7a24d72dc7a86341da4634f6d1a71f1ea77000b (diff) | |
download | mariadb-git-87eb2cb938382b545158987a1cc6bc170588db3a.tar.gz |
merged 5.1-main -> 5.1-bugteam
Diffstat (limited to 'mysql-test/r/subselect.result')
-rw-r--r-- | mysql-test/r/subselect.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/subselect.result b/mysql-test/r/subselect.result index d23dc65f8cd..aff26454b2d 100644 --- a/mysql-test/r/subselect.result +++ b/mysql-test/r/subselect.result @@ -1658,9 +1658,9 @@ SELECT DISTINCT (SELECT a) FROM t1 LIMIT 100; DROP TABLE t1; create table t1 (a int, b decimal(13, 3)); insert into t1 values (1, 0.123); -select a, (select max(b) from t1) into outfile "subselect.out.file.1" from t1; +select a, (select max(b) from t1) into outfile "../../tmp/subselect.out.file.1" from t1; delete from t1; -load data infile "subselect.out.file.1" into table t1; +load data infile "../../tmp/subselect.out.file.1" into table t1; select * from t1; a b 1 0.123 |