~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to tests/t/outfile.test

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
enable_query_log;
6
6
-- source include/have_outfile.inc
7
7
 
8
 
--disable_warnings
9
 
DROP SCHEMA IF EXISTS data_dictionary;
10
 
--enable_warnings
11
 
 
12
 
CREATE SCHEMA data_dictionary;
13
 
 
14
8
#
15
9
# test of into outfile|dumpfile
16
10
#
101
95
--error 1290
102
96
eval select * into outfile "$DRIZZLE_TEST_DIR/outfile-test1" from t1;
103
97
drop table t1;
104
 
 
105
 
DROP SCHEMA data_dictionary;