~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/engines/funcs/r/rpl_insert.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-05-11 18:47:32 UTC
  • mto: (2.1.2 sid) (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20100511184732-jhn055kfhxze24kt
Tags: upstream-5.1.46
ImportĀ upstreamĀ versionĀ 5.1.46

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Bug#20821: INSERT DELAYED fails to write some rows to binlog
 
3
#
 
4
stop slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
reset master;
 
7
reset slave;
 
8
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
9
start slave;
 
10
CREATE SCHEMA IF NOT EXISTS mysqlslap;
 
11
USE mysqlslap;
 
12
CREATE TABLE t1 (id INT, name VARCHAR(64));
 
13
SELECT COUNT(*) FROM mysqlslap.t1;
 
14
COUNT(*)
 
15
5000
 
16
SELECT COUNT(*) FROM mysqlslap.t1;
 
17
COUNT(*)
 
18
5000
 
19
#
 
20
# Cleanup
 
21
#
 
22
USE test;
 
23
DROP SCHEMA mysqlslap;