~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/suite/mysql_migrate/t/large_data.test

  • Committer: Lee Bieber
  • Date: 2011-03-12 19:26:59 UTC
  • mfrom: (2231.1.2 build)
  • Revision ID: kalebral@gmail.com-20110312192659-7gea5egdp0y06nfk
Merge Patrick - add suite to test drizzledump
Merge Patrick - 732061: need a way to execute dtr test cases with the slave plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# mysql_migrate.blob_type
 
2
# test migration of a randgen-generated database
 
3
# contains 5 tables of varying size and composition
 
4
# no blobs/texts used for size constraints 
 
5
 
 
6
let $datafile = $DRIZZLETEST_VARDIR/std_data_ln/mysqlmigrate_large_data.dat;
 
7
let $database = drizzledump_migrate_test;
 
8
 
 
9
--source suite/mysql_migrate/include/drizzledump_migrate.inc
 
10
 
 
11
--echo test our tables:
 
12
--echo test table1
 
13
eval SHOW CREATE TABLE $database.dump_table1;
 
14
eval SELECT * FROM $database.dump_table1;
 
15
 
 
16
--echo test table2 
 
17
eval SHOW CREATE TABLE $database.dump_table2;
 
18
eval SELECT * FROM $database.dump_table2;
 
19
 
 
20
--echo test table3 
 
21
eval SHOW CREATE TABLE $database.dump_table3;
 
22
eval SELECT * FROM $database.dump_table3;
 
23
 
 
24
--source suite/mysql_migrate/include/mysql_cleanup.inc
 
25
 
 
26
eval DROP SCHEMA $database;