I have problem on slave replication on mysql cluster.
When I create table with select as CREATE TABLE tmp1 AS SELCT * FROM tmp2
the table can be created but the sql is not recorded in binlog and not replicated to slave.
But if I create table by definition or like as: CREATE TABLE tmp1 LIKE tmp2" OR "CREATE TABLE
tmp1(
idint(11) NOT NULL )
, the sql commands can be recorded in binlog
and will be replicated to slave.
Is there any setting on this?
My mysql cluster version is 5.6.31-ndb-7.4.12-cluster-gpl-log and my default engine is ndbcluster.