Skip to content

Commit

Permalink
rpl_extra_col_slave_tokudb changes result set
Browse files Browse the repository at this point in the history
Probably the result is due to a bug fixed on their server. Restoring old
behaviour for now.
  • Loading branch information
cvicentiu committed Mar 5, 2017
1 parent 97041ac commit 7bf914e
Showing 1 changed file with 3 additions and 4 deletions.
Expand Up @@ -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;
Expand Down

0 comments on commit 7bf914e

Please sign in to comment.