When I run alter table
for partitioning on innodb table I got this error on Mysql 5.7:
Foreign keys are not yet supported in conjunction with partitioning
knowing that I already drop foreign key
of this table, and drop foreign key
where the id of this table is.
here is my table schema now:
| record | CREATE TABLE `record` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`altitude` smallint(6) DEFAULT NULL,
`counter` double DEFAULT NULL,
`datetime` datetime NOT NULL,
`details` longtext,
`deviation` smallint(6) DEFAULT NULL,
`engine` tinyint(1) DEFAULT NULL,
`event` smallint(6) DEFAULT NULL,
`fuel_level` double DEFAULT NULL,
`gsm_level` int(11) DEFAULT NULL,
`latitude` double NOT NULL,
`longitude` double NOT NULL,
`satellite` smallint(6) DEFAULT NULL,
`speed` smallint(6) DEFAULT NULL,
`time` time NOT NULL,
`treated` tinyint(1) NOT NULL DEFAULT '0',
`id_driver` bigint(20) DEFAULT NULL,
`id_vehicle_device` bigint(20) NOT NULL,
PRIMARY KEY (`id`),
KEY `FK_ai9y9d52lx1xvtaiv3w0x60a5` (`id_driver`),
KEY `FK_ilwlg0mt87bxyemx4tov1elni` (`id_vehicle_device`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
From Restrictions and Limitations on Partitioning: