mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
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.
This commit is contained in:
parent
97041acf7f
commit
7bf914e157
1 changed files with 3 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue