mirror of
https://github.com/MariaDB/server.git
synced 2025-05-31 08:42:45 +03:00
parent
cdc27d597e
commit
91d5e55a90
@ -462,5 +462,7 @@ create table t1 (a geometry not null);
|
|||||||
insert into t1 values (GeomFromText('Point(1 2)'));
|
insert into t1 values (GeomFromText('Point(1 2)'));
|
||||||
insert into t1 values ('Garbage');
|
insert into t1 values ('Garbage');
|
||||||
ERROR HY000: Unknown error
|
ERROR HY000: Unknown error
|
||||||
|
insert IGNORE into t1 values ('Garbage');
|
||||||
|
ERROR HY000: Unknown error
|
||||||
alter table t1 add spatial index(a);
|
alter table t1 add spatial index(a);
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
@ -165,6 +165,8 @@ create table t1 (a geometry not null);
|
|||||||
insert into t1 values (GeomFromText('Point(1 2)'));
|
insert into t1 values (GeomFromText('Point(1 2)'));
|
||||||
-- error 1105
|
-- error 1105
|
||||||
insert into t1 values ('Garbage');
|
insert into t1 values ('Garbage');
|
||||||
|
-- error 1105
|
||||||
|
insert IGNORE into t1 values ('Garbage');
|
||||||
alter table t1 add spatial index(a);
|
alter table t1 add spatial index(a);
|
||||||
|
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user