I am on docker ndb-cluster and I have a working cluster in place.
Once I want to switch from innodb engine to ndbcluster, I receive the following message for some tables:
ERROR 1067 (42000): Invalid default value for 'reg_date'
Based on this answer, I tried to appease mysql and did the following:
set sql_mode='';
Now I did the same:
alter table users ENGINE=NDBCLUSTER;
It ends up in another error:
ERROR 1005 (HY000): Can't create destination table for copying alter table
Is there any help? Can I alter the tables' engines in another way?