~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_binlog_grant.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
-- source include/have_innodb.inc
 
3
-- source include/not_embedded.inc
 
4
-- source include/have_binlog_format_mixed_or_statement.inc
 
5
 
 
6
let $VERSION=`select version()`;
 
7
 
 
8
# Bug #21975: grant/revoke statements in transaction
 
9
# used to disappear from binlog upon rallback.
 
10
# Now GRANT/REVOKE do implicitly commit
 
11
# transaction
 
12
 
 
13
--disable_warnings
 
14
drop database if exists d1;
 
15
--enable_warnings
 
16
create database d1;
 
17
use d1;
 
18
create table t (s1 int) engine=innodb;
 
19
set @@autocommit=0;
 
20
start transaction;
 
21
insert into t values (1);
 
22
grant select on t to x@y;
 
23
#
 
24
# There is no active transaction here
 
25
#
 
26
rollback;
 
27
show grants for x@y;
 
28
source include/show_binlog_events.inc;
 
29
start transaction;
 
30
insert into t values (2);
 
31
revoke select on t from x@y;
 
32
#
 
33
# There is no active transaction here
 
34
#
 
35
commit;
 
36
select * from t;
 
37
show grants for x@y;
 
38
source include/show_binlog_events.inc;
 
39
drop user x@y;
 
40
drop database d1;