mirror of
https://github.com/MariaDB/server.git
synced 2025-05-11 13:21:44 +03:00
they are ignored to a new test suite "innodb_plugin". Remove a hack in mtr that was deployed to run the builtin InnoDB tests against the InnoDB Plugin. Also detect if a test is an 'innodb plugin test' and if so then transparently replace the builtin InnoDB with the InnoDB Plugin.
14 lines
516 B
Plaintext
14 lines
516 B
Plaintext
create table bug47777(c2 linestring not null, primary key (c2(1))) engine=innodb;
|
|
insert into bug47777 values (geomfromtext('linestring(1 2,3 4,5 6,7 8,9 10)'));
|
|
select count(*) from bug47777 where c2 =geomfromtext('linestring(1 2,3 4,5 6,7 8,9 10)');
|
|
count(*)
|
|
1
|
|
update bug47777 set c2=GeomFromText('POINT(1 1)');
|
|
select count(*) from bug47777 where c2 =geomfromtext('linestring(1 2,3 4,5 6,7 8,9 10)');
|
|
count(*)
|
|
0
|
|
select count(*) from bug47777 where c2 = GeomFromText('POINT(1 1)');
|
|
count(*)
|
|
1
|
|
drop table bug47777;
|