~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/outfile.test

  • Committer: Brian Aker
  • Date: 2010-02-24 23:10:30 UTC
  • mto: (1273.13.101 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100224231030-4dwc2iwcih5cootv
createSchema() now works via SE interface.

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;