~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/outfile.test

  • Committer: Brian Aker
  • Date: 2010-04-05 23:46:43 UTC
  • Revision ID: brian@gaz-20100405234643-0he3xnj902rc70r8
Fixing tests to work with PBXT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
# End of 4.1 tests
69
69
 
70
70
#
71
 
# Bug#13202  SELECT * INTO OUTFILE ... FROM information_schema.schemata now fails
 
71
# Bug#13202  SELECT * INTO OUTFILE ... FROM data_dictionary.schemas now fails
72
72
#
73
73
disable_query_log;
74
74
eval SELECT * INTO OUTFILE "../tmp/outfile-test.4"
75
75
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
76
 
FROM information_schema.schemata LIMIT 0, 5;
 
76
FROM data_dictionary.schemas LIMIT 0, 5;
77
77
# enable_query_log;
78
78
--remove_file $MYSQLTEST_VARDIR/tmp/outfile-test.4
79
79
 
80
 
use information_schema;
 
80
use data_dictionary;
81
81
# disable_query_log;
82
82
eval SELECT * INTO OUTFILE "../tmp/outfile-test.4"
83
83
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
84
 
FROM schemata LIMIT 0, 5;
 
84
FROM schemas LIMIT 0, 5;
85
85
enable_query_log;
86
86
--remove_file $MYSQLTEST_VARDIR/tmp/outfile-test.4
87
87
use test;