~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/tests/t/innodb_replication_log.test

  • Committer: Lee Bieber
  • Date: 2011-02-11 20:30:05 UTC
  • mfrom: (2157.1.3 build)
  • Revision ID: kalebral@gmail.com-20110211203005-757o1y2yf78dxzqr
Merge Stewart - 716848: drizzleimport displays wrong program_name
Merge Stewart - update README file
Merge Andrew and Joe - Exposes the InnoDB SYS_REPLICATION_LOG to data_dictionary so that it is fast and fixes many issues we have been having

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--disable_warnings
 
2
drop table if exists t1;
 
3
--enable_warnings
 
4
 
 
5
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
 
6
set global transaction_message_threshold=2000000;
 
7
 
 
8
create table t1 (a int primary key);
 
9
insert into t1 values (1),(2),(3);
 
10
 
 
11
show create table data_dictionary.INNODB_REPLICATION_LOG;
 
12
select count(*) >= 3 from data_dictionary.INNODB_REPLICATION_LOG;
 
13
 
 
14
drop table t1;