~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/outfile.test

  • Committer: patrick crews
  • Date: 2010-10-25 23:13:58 UTC
  • mto: (1878.8.1 drizzle1)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: gleebix@gmail.com-20101025231358-avbpaqukx1gybznv
Updated tests to use variable vardir rather than a hard-coded one

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
disable_query_log;
2
2
# Server are started in "var/master-data/local", so "../../tmp" will be "var/tmp"
3
 
eval set @tmpdir="../../tmp";
 
3
eval set @tmpdir="$DRIZZLETEST_VARDIR/tmp";
4
4
enable_query_log;
5
5
 
6
6
#
14
14
create table t1 (`a` blob);
15
15
insert into t1 values("hello world"),("Hello mars"),(NULL);
16
16
disable_query_log;
17
 
eval select * into outfile "../../tmp/outfile-test.1" from t1;
 
17
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
18
eval select * into outfile "$DRIZZLETEST_VARDIR/tmp/outfile-test.1" from t1;
18
19
enable_query_log;
19
20
select load_file(concat(@tmpdir,"/outfile-test.1"));
20
21
disable_query_log;
21
 
eval select * into dumpfile "../../tmp/outfile-test.2" from t1 limit 1;
 
22
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
23
eval select * into dumpfile "$DRIZZLETEST_VARDIR/tmp/outfile-test.2" from t1 limit 1;
22
24
enable_query_log;
23
25
select load_file(concat(@tmpdir,"/outfile-test.2"));
24
26
disable_query_log;
25
 
eval select * into dumpfile "../../tmp/outfile-test.3" from t1 where a is null;
 
27
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
28
eval select * into dumpfile "$DRIZZLETEST_VARDIR/tmp/outfile-test.3" from t1 where a is null;
26
29
enable_query_log;
27
30
select load_file(concat(@tmpdir,"/outfile-test.3"));
28
31
 
29
32
# the following should give errors
30
33
 
31
34
disable_query_log;
32
 
--error ER_FILE_EXISTS_ERROR
33
 
eval select * into outfile "../../tmp/outfile-test.1" from t1;
34
 
 
35
 
--error ER_FILE_EXISTS_ERROR
36
 
eval select * into dumpfile "../../tmp/outfile-test.2" from t1;
37
 
 
38
 
--error ER_FILE_EXISTS_ERROR
39
 
eval select * into dumpfile "../../tmp/outfile-test.3" from t1;
 
35
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
36
--error ER_FILE_EXISTS_ERROR
 
37
eval select * into outfile "$DRIZZLETEST_VARDIR/tmp/outfile-test.1" from t1;
 
38
 
 
39
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
40
--error ER_FILE_EXISTS_ERROR
 
41
eval select * into dumpfile "$DRIZZLETEST_VARDIR/tmp/outfile-test.2" from t1;
 
42
 
 
43
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
44
--error ER_FILE_EXISTS_ERROR
 
45
eval select * into dumpfile "$DRIZZLETEST_VARDIR/tmp/outfile-test.3" from t1;
40
46
enable_query_log;
41
47
--error ER_TEXTFILE_NOT_READABLE
42
48
select load_file(concat(@tmpdir,"/outfile-test.not-exist"));
47
53
 
48
54
# Bug#8191
49
55
disable_query_log;
50
 
eval select 1 into outfile "../../tmp/outfile-test.4";
 
56
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
57
eval select 1 into outfile "$DRIZZLETEST_VARDIR/tmp/outfile-test.4";
51
58
enable_query_log;
52
59
--replace_result $DRIZZLE_TEST_DIR DRIZZLE_TEST_DIR
53
60
select load_file(concat(@tmpdir,"/outfile-test.4"));
58
65
#
59
66
 
60
67
CREATE TABLE t1 (a INT);
61
 
EXPLAIN 
62
 
  SELECT *
63
 
  INTO OUTFILE '../../tmp/t1.txt'
 
68
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
69
eval EXPLAIN SELECT * INTO OUTFILE '$DRIZZLETEST_VARDIR/tmp/t1.txt' 
64
70
  FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\r\n'
65
71
  FROM t1;
66
72
DROP TABLE t1;
71
77
# Bug#13202  SELECT * INTO OUTFILE ... FROM data_dictionary.schemas now fails
72
78
#
73
79
disable_query_log;
74
 
eval SELECT * INTO OUTFILE "../../tmp/outfile-test.4"
 
80
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
81
eval SELECT * INTO OUTFILE "$DRIZZLETEST_VARDIR/tmp/outfile-test.4"
75
82
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
76
83
FROM data_dictionary.schemas LIMIT 0, 5;
77
84
# enable_query_log;
79
86
 
80
87
use data_dictionary;
81
88
# disable_query_log;
82
 
eval SELECT * INTO OUTFILE "../../tmp/outfile-test.5"
 
89
--replace_result $DRIZZLETEST_VARDIR DRIZZLETEST_VARDIR
 
90
eval SELECT * INTO OUTFILE "$DRIZZLETEST_VARDIR/tmp/outfile-test.5"
83
91
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
84
92
FROM schemas LIMIT 0, 5;
85
93
enable_query_log;