From 7bf914e157f801a57568f10fa00df9a709344e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vicen=C8=9Biu=20Ciorbaru?= Date: Sun, 5 Mar 2017 14:50:03 +0200 Subject: [PATCH] rpl_extra_col_slave_tokudb changes result set Probably the result is due to a bug fixed on their server. Restoring old behaviour for now. --- .../mysql-test/rpl/r/rpl_extra_col_slave_tokudb.result | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/storage/tokudb/mysql-test/rpl/r/rpl_extra_col_slave_tokudb.result b/storage/tokudb/mysql-test/rpl/r/rpl_extra_col_slave_tokudb.result index 81e91eabfcc..910b3074c98 100644 --- a/storage/tokudb/mysql-test/rpl/r/rpl_extra_col_slave_tokudb.result +++ b/storage/tokudb/mysql-test/rpl/r/rpl_extra_col_slave_tokudb.result @@ -228,10 +228,9 @@ set @b1 = concat(@b1,@b1); INSERT INTO t9 () VALUES(1,@b1,'Kyle'),(2,@b1,'JOE'),(3,@b1,'QA'); select * from t9; a b c d e f g h i -1 b1b1b1b1b1b1b1b1 Kyle CURRENT_TIMESTAMP 0 NULL NULL -2 b1b1b1b1b1b1b1b1 JOE CURRENT_TIMESTAMP 0 NULL NULL -3 b1b1b1b1b1b1b1b1 QA CURRENT_TIMESTAMP 0 NULL NULL -include/assert.inc [The values of column 'd' should have non-zero timetsamp.] +1 b1b1b1b1b1b1b1b1 Kyle 0000-00-00 00:00:00 0 NULL NULL +2 b1b1b1b1b1b1b1b1 JOE 0000-00-00 00:00:00 0 NULL NULL +3 b1b1b1b1b1b1b1b1 QA 0000-00-00 00:00:00 0 NULL NULL DROP TABLE t9; *** Create t10 on slave *** STOP SLAVE;