summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSachin <sachin.setiya@mariadb.com>2019-09-01 20:05:07 +0530
committerSachin <sachin.setiya@mariadb.com>2019-09-02 14:58:50 +0530
commit57929f76138091be8c316830cc2d909e8ca88d82 (patch)
treefcdee183597ccf79e76b6694e490796f190d82e5
parentd39df82ff4b62d7c4b697531f0424dab883c68bf (diff)
downloadmariadb-git-bb-10.4-7409.tar.gz
19708 compatibilitybb-10.4-7409
-rw-r--r--mysql-test/std_data/rpl/19708-compatibility.binlogbin0 -> 1025 bytes
-rw-r--r--mysql-test/suite/binlog/r/mdev-19708_compatibility.result5
-rw-r--r--mysql-test/suite/binlog/t/mdev-19708_compatibility.test13
3 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/std_data/rpl/19708-compatibility.binlog b/mysql-test/std_data/rpl/19708-compatibility.binlog
new file mode 100644
index 00000000000..755edc30e41
--- /dev/null
+++ b/mysql-test/std_data/rpl/19708-compatibility.binlog
Binary files differ
diff --git a/mysql-test/suite/binlog/r/mdev-19708_compatibility.result b/mysql-test/suite/binlog/r/mdev-19708_compatibility.result
new file mode 100644
index 00000000000..a15e89e9de8
--- /dev/null
+++ b/mysql-test/suite/binlog/r/mdev-19708_compatibility.result
@@ -0,0 +1,5 @@
+select * from t1 order by a;
+a b
+1 1
+2 2
+drop table t1;
diff --git a/mysql-test/suite/binlog/t/mdev-19708_compatibility.test b/mysql-test/suite/binlog/t/mdev-19708_compatibility.test
new file mode 100644
index 00000000000..6d6a85df56f
--- /dev/null
+++ b/mysql-test/suite/binlog/t/mdev-19708_compatibility.test
@@ -0,0 +1,13 @@
+--source include/have_binlog_format_row.inc
+--exec $MYSQL_BINLOG $MYSQL_TEST_DIR/std_data/rpl/19708-compatibility.binlog > $MYSQLTEST_VARDIR/tmp/19708.binlog
+
+# data in binlog
+#CREATE TABLE t1(a INT UNSIGNED, b char);
+#SET GLOBAL binlog_row_metadata = MINIMAL;
+#INSERT INTO t1 VALUES(1, 1);
+#SET GLOBAL binlog_row_metadata = FULL;
+#INSERT INTO t1 VALUES(2, 2);
+--exec $MYSQL test < $MYSQLTEST_VARDIR/tmp/19708.binlog;
+select * from t1 order by a;
+drop table t1;
+--remove_file $MYSQLTEST_VARDIR/tmp/19708.binlog