1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

merging fix

This commit is contained in:
holyfoot/hf@mysql.com/hfmain.(none)
2007-11-24 14:57:09 +04:00
parent d6e94bc994
commit 7094295d99
2 changed files with 2 additions and 2 deletions

View File

@@ -742,7 +742,7 @@ select geomfromtext(col9,col89) as a from t1;
a
NULL
DROP TABLE t1;
create table t1(col1 geometry not null,col15 geometrycollection not
create table t1(col1 geometry default null,col15 geometrycollection not
null,spatial index(col15),index(col1(15)))engine=myisam;
insert into t1 set col15 = GeomFromText('POINT(6 5)');
insert into t1 set col15 = GeomFromText('POINT(6 5)');

View File

@@ -443,7 +443,7 @@ DROP TABLE t1;
# Bug #30284 spatial key corruption
#
create table t1(col1 geometry not null,col15 geometrycollection not
create table t1(col1 geometry default null,col15 geometrycollection not
null,spatial index(col15),index(col1(15)))engine=myisam;
insert into t1 set col15 = GeomFromText('POINT(6 5)');
insert into t1 set col15 = GeomFromText('POINT(6 5)');