# # MDEV-3934 Assertion `((keypart_map+1) & keypart_map) == 0' failed in _mi_pack_key with an index on a POINT column # CREATE TABLE t1 ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, point_data POINT NOT NULL, PRIMARY KEY (id), KEY idx_point_data(point_data) ) ENGINE=MyISAM; INSERT t1 (point_data) VALUES (GeomFromText('Point(37.0248492 23.8512726)')), (GeomFromText('Point(38.0248492 23.8512726)')); SELECT id FROM t1 WHERE ST_Contains(point_data, GeomFromText('Point(38.0248492 23.8512726)')); DROP TABLE t1; # # MDEV-60 Support for Spatial Reference systems for the GIS data. # show create procedure mysql.AddGeometryColumn; show create procedure mysql.DropGeometryColumn; create table t1 (a int, b int); call mysql.AddGeometryColumn('', 'test', 't1', 'c', 10); show create table t1; call mysql.DropGeometryColumn('', 'test', 't1', 'c'); show create table t1; call mysql.DropGeometryColumn('', 'test', 't1', 'b'); show create table t1; drop table t1; create user foo@localhost; grant execute on mysql.* to foo@localhost; connect (foo, localhost, foo); --error ER_TABLEACCESS_DENIED_ERROR call mysql.AddGeometryColumn('', 'mysql', 'proc', 'c', 10); disconnect foo; connection default; drop user foo@localhost;