mirror of
https://github.com/MariaDB/server.git
synced 2025-05-20 13:13:59 +03:00
ndb: removed usage of unsupported binlog table: no pk + blob
This commit is contained in:
parent
c37ddbe9ad
commit
b9d5ea5068
@ -51,8 +51,8 @@ SHOW CREATE TABLE t1;
|
||||
# Okay lets see how it holds up to table changes
|
||||
--echo --- Check that simple Alter statements are replicated correctly --
|
||||
|
||||
ALTER TABLE t1 MODIFY vc TEXT;
|
||||
ALTER TABLE t1 DROP PRIMARY KEY, ADD PRIMARY KEY(id, total);
|
||||
ALTER TABLE t1 MODIFY vc TEXT;
|
||||
|
||||
--echo --- Show the new improved table on the master ---
|
||||
|
||||
@ -117,6 +117,7 @@ SHOW CREATE TABLE t1;
|
||||
|
||||
--echo --- Check that simple Alter statements are replicated correctly ---
|
||||
|
||||
ALTER TABLE t1 ADD PRIMARY KEY(t,id);
|
||||
ALTER TABLE t1 MODIFY vc TEXT;
|
||||
|
||||
--echo --- Show the new improved table on the master ---
|
||||
@ -183,6 +184,7 @@ SHOW CREATE TABLE t1;
|
||||
|
||||
--echo --- Check that simple Alter statements are replicated correctly ---
|
||||
|
||||
ALTER TABLE t1 ADD PRIMARY KEY(id);
|
||||
ALTER TABLE t1 MODIFY vc TEXT;
|
||||
|
||||
--echo --- Show the new improved table on the master ---
|
||||
@ -240,6 +242,7 @@ SHOW CREATE TABLE t1;
|
||||
--echo --- Check that simple Alter statements are replicated correctly ---
|
||||
|
||||
ALTER TABLE t1 MODIFY vc TEXT;
|
||||
ALTER TABLE t1 ADD PRIMARY KEY(t,id);
|
||||
|
||||
--echo --- Show the new improved table on the master ---
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user