summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/binlog/t/binlog_row_img.test
blob: a6624e7e56ed1872ad26c53ff4ad203225b237ce (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
################################################################################
#  Support binlog_row_image FULL_NODUP mode
#
#  In FULL_NODUP:
#  - before image includes all columns.
#  - after image includes only changed columns.
################################################################################

--source include/have_binlog_format_row.inc
--echo #
--echo # FULL_NODUP mode works as expected
--echo #
SET binlog_row_image = "FULL_NODUP";
--source suite/binlog/include/row_img.test

--echo #
--echo # MINIMAL mode works as expected
--echo #
SET binlog_row_image = "MINIMAL";
--source suite/binlog/include/row_img.test

--echo #
--echo # NOBLOB mode works as expected
--echo #
SET binlog_row_image = "NOBLOB";
--source suite/binlog/include/row_img.test

--echo #
--echo # FULL mode works as expected
--echo #
SET binlog_row_image = "FULL";
--source suite/binlog/include/row_img.test

RESET MASTER;