~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_loaddata_simple.test

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--source include/master-slave.inc
 
2
 
 
3
CREATE TABLE t1 (word CHAR(20) NOT NULL);
 
4
LOAD DATA INFILE '../std_data_ln/words.dat' INTO TABLE t1;
 
5
SELECT * FROM t1 ORDER BY word;
 
6
sync_slave_with_master;
 
7
 
 
8
# Check
 
9
SELECT * FROM t1 ORDER BY word;
 
10
 
 
11
# Cleanup
 
12
connection master;
 
13
drop table t1;
 
14
sync_slave_with_master;