MDEV-12078 Using spatial index changes type from point to geometry
In get_mm_tree we have to change Field_geom::geom_type to GEOMETRY as we have to let storing all types of the spatial features in the field. So now we restore the original geom_type as it's done.
This commit is contained in:
parent
6b99859fff
commit
a06f2f430f
@ -60,3 +60,25 @@ fid AsText(g)
|
|||||||
45 LINESTRING(51 51,60 60)
|
45 LINESTRING(51 51,60 60)
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
End of 5.5 tests.
|
End of 5.5 tests.
|
||||||
|
CREATE TABLE t1 (
|
||||||
|
coordinate point NOT NULL,
|
||||||
|
SPATIAL KEY coordinate (coordinate)
|
||||||
|
) ENGINE=Aria DEFAULT CHARSET=ascii PAGE_CHECKSUM=1;
|
||||||
|
SHOW COLUMNS FROM t1;
|
||||||
|
Field Type Null Key Default Extra
|
||||||
|
coordinate point NO MUL NULL
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(0 0)"));
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(10 0)"));
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(10 10)"));
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(0 10)"));
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(5 5)"));
|
||||||
|
SELECT astext(coordinate) FROM t1 WHERE ST_Intersects(ST_LineFromText("LINESTRING(0 0, 10 0, 10 10, 0 10)"), coordinate);
|
||||||
|
astext(coordinate)
|
||||||
|
POINT(0 0)
|
||||||
|
POINT(10 0)
|
||||||
|
POINT(10 10)
|
||||||
|
POINT(0 10)
|
||||||
|
SHOW COLUMNS FROM t1;
|
||||||
|
Field Type Null Key Default Extra
|
||||||
|
coordinate point NO MUL NULL
|
||||||
|
DROP TABLE t1;
|
||||||
|
@ -62,3 +62,25 @@ SELECT fid, AsText(g) FROM t1 WHERE ST_Within(g,
|
|||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
|
||||||
--echo End of 5.5 tests.
|
--echo End of 5.5 tests.
|
||||||
|
|
||||||
|
#
|
||||||
|
# MDEV-12078 Using spatial index changes type from point to geometry.
|
||||||
|
#
|
||||||
|
CREATE TABLE t1 (
|
||||||
|
coordinate point NOT NULL,
|
||||||
|
SPATIAL KEY coordinate (coordinate)
|
||||||
|
) ENGINE=Aria DEFAULT CHARSET=ascii PAGE_CHECKSUM=1;
|
||||||
|
|
||||||
|
SHOW COLUMNS FROM t1;
|
||||||
|
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(0 0)"));
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(10 0)"));
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(10 10)"));
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(0 10)"));
|
||||||
|
INSERT INTO t1 (coordinate) VALUES(ST_PointFromText("POINT(5 5)"));
|
||||||
|
|
||||||
|
SELECT astext(coordinate) FROM t1 WHERE ST_Intersects(ST_LineFromText("LINESTRING(0 0, 10 0, 10 10, 0 10)"), coordinate);
|
||||||
|
|
||||||
|
SHOW COLUMNS FROM t1;
|
||||||
|
|
||||||
|
DROP TABLE t1;
|
||||||
|
@ -7949,8 +7949,10 @@ static SEL_TREE *get_full_func_mm_tree(RANGE_OPT_PARAM *param,
|
|||||||
DBUG_ENTER("get_full_func_mm_tree");
|
DBUG_ENTER("get_full_func_mm_tree");
|
||||||
|
|
||||||
#ifdef HAVE_SPATIAL
|
#ifdef HAVE_SPATIAL
|
||||||
|
Field::geometry_type sav_geom_type;
|
||||||
if (field_item->field->type() == MYSQL_TYPE_GEOMETRY)
|
if (field_item->field->type() == MYSQL_TYPE_GEOMETRY)
|
||||||
{
|
{
|
||||||
|
sav_geom_type= ((Field_geom*) field_item->field)->geom_type;
|
||||||
/* We have to be able to store all sorts of spatial features here */
|
/* We have to be able to store all sorts of spatial features here */
|
||||||
((Field_geom*) field_item->field)->geom_type= Field::GEOM_GEOMETRY;
|
((Field_geom*) field_item->field)->geom_type= Field::GEOM_GEOMETRY;
|
||||||
}
|
}
|
||||||
@ -7982,6 +7984,13 @@ static SEL_TREE *get_full_func_mm_tree(RANGE_OPT_PARAM *param,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef HAVE_SPATIAL
|
||||||
|
if (field_item->field->type() == MYSQL_TYPE_GEOMETRY)
|
||||||
|
{
|
||||||
|
((Field_geom*) field_item->field)->geom_type= sav_geom_type;
|
||||||
|
}
|
||||||
|
#endif /*HAVE_SPATIAL*/
|
||||||
DBUG_RETURN(ftree);
|
DBUG_RETURN(ftree);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user