MySQL Forums
Forum List  »  Partitioning

Partition by range for float data type column float(12,9) in mysql server 5.6
Posted by: esha sethi
Date: May 15, 2015 11:49PM

Hello All,

Unable to create partition by range for float data type column float(12,9) in mysql server 5.6


CREATE TABLE `tbl_geodata1` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`geo_street` varchar(150) CHARACTER SET latin1 DEFAULT NULL,
`geo_town` varchar(50) CHARACTER SET latin1 DEFAULT NULL,
`geo_country` varchar(50) CHARACTER SET latin1 DEFAULT NULL,
`gps_latitude` float(12,9) NOT NULL,
`gps_longitude` float(12,9) NOT NULL,
`modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `unq_lat_long` (`gps_latitude`,`gps_longitude`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8
partition by range (gps_latitude)(
partition p1 values less than (50)
partition p2 values less than (100));


ERROR:

Sql Execution error#1659 . Response from the database:

Field 'gps_latitude' is of a not allowed type for this type of partitioning.

Please help

Options: ReplyQuote


Subject
Views
Written By
Posted
Partition by range for float data type column float(12,9) in mysql server 5.6
3279
May 15, 2015 11:49PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.