2013-01-20 14:06:33 +01:00
|
|
|
#
|
|
|
|
# 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;
|
|
|
|
|
2017-10-11 09:57:26 +02:00
|
|
|
#
|
|
|
|
# MDEV-13923 Assertion `!is_set() || (m_status == DA_OK_BULK && is_bulk_op())' failed upon altering table with geometry field
|
|
|
|
#
|
|
|
|
--error ER_CANT_CREATE_GEOMETRY_OBJECT
|
|
|
|
create table t1 (p point default "qwer");
|
|
|
|
--error ER_CANT_CREATE_GEOMETRY_OBJECT
|
|
|
|
create table t1 (p point default 0);
|
|
|
|
--error ER_INVALID_DEFAULT
|
|
|
|
create table t1 (p point not null default st_geometryfromtext('point 0)'));
|
|
|
|
create table t1 (p point not null default st_geometryfromtext('point(0 0)'));
|
|
|
|
insert into t1 values(default);
|
|
|
|
select st_astext(p) from t1;
|
|
|
|
drop table t1;
|
|
|
|
|
2017-10-18 12:11:55 +02:00
|
|
|
create table t1 (p point not null default if(unix_timestamp()>10,POINT(1,1),LineString(Point(0,0),Point(1,1))));
|
2017-10-11 09:57:26 +02:00
|
|
|
set timestamp=10;
|
2017-10-18 12:11:55 +02:00
|
|
|
--error ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
|
2017-10-11 09:57:26 +02:00
|
|
|
insert into t1 values(default);
|
|
|
|
drop table t1;
|
|
|
|
SET timestamp=default;
|
|
|
|
|
2017-10-18 12:11:55 +02:00
|
|
|
create table t1 (p point not null default if(unix_timestamp()>10,POINT(1,1),LineString(Point(0,0),Point(1,1))));
|
2017-10-11 09:57:26 +02:00
|
|
|
set timestamp=10;
|
2017-10-18 12:11:55 +02:00
|
|
|
--error ER_TRUNCATED_WRONG_VALUE_FOR_FIELD
|
2017-10-11 09:57:26 +02:00
|
|
|
alter table t1 add column i int;
|
|
|
|
drop table t1;
|
|
|
|
SET timestamp=default;
|
|
|
|
|