summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_rpl/r/rpl_row_sp007_tokudb.result
blob: b783e42bd7b57d3fbc9c45ffc97af7b942ebbb9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
include/master-slave.inc
Warnings:
Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
Note	####	Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
[connection master]
CREATE PROCEDURE test.p1(IN i INT)
BEGIN
DECLARE CONTINUE HANDLER FOR sqlexception BEGIN END;
DROP TABLE IF EXISTS test.t1;
CREATE TABLE test.t1 (num INT,PRIMARY KEY(num))ENGINE=TokuDB;
START TRANSACTION;
INSERT INTO test.t1 VALUES(i);
savepoint t1_save;
INSERT INTO test.t1 VALUES (14);
ROLLBACK to savepoint t1_save;
COMMIT;
END|

< ---- Master selects-- >
-------------------------
CALL test.p1(12);
SELECT * FROM test.t1;
num
12

< ---- Slave selects-- >
------------------------
include/sync_slave_sql_with_master.inc
SELECT * FROM test.t1;
num
12

< ---- Master selects-- >
-------------------------
CALL test.p1(13);
SELECT * FROM test.t1;
num
13

< ---- Slave selects-- >
------------------------
include/sync_slave_sql_with_master.inc
SELECT * FROM test.t1;
num
13
DROP PROCEDURE test.p1;
DROP TABLE test.t1;
include/rpl_end.inc