diff options
author | Dmitry Lenev <Dmitry.Lenev@oracle.com> | 2011-02-15 15:04:52 +0300 |
---|---|---|
committer | Dmitry Lenev <Dmitry.Lenev@oracle.com> | 2011-02-15 15:04:52 +0300 |
commit | 1cff3f95e6e5d1244a4185cacf23dacd553ab583 (patch) | |
tree | 2fa1ef5eb397b184bf41bf7fa3bb8f8625ea61e2 /mysql-test/r/gis.result | |
parent | a7662cf0a90ee4826b52209aa880f7e710ca95f9 (diff) | |
parent | 9c89cca5e364310928bde10287a56128378c107c (diff) | |
download | mariadb-git-1cff3f95e6e5d1244a4185cacf23dacd553ab583.tar.gz |
Merged fix for bug #59888 "debug assertion when attempt to
create spatial index on char > 31 bytes". Did after-merge
fixes.
Diffstat (limited to 'mysql-test/r/gis.result')
-rw-r--r-- | mysql-test/r/gis.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/gis.result b/mysql-test/r/gis.result index 5706f076c6c..22cb6d29b2c 100644 --- a/mysql-test/r/gis.result +++ b/mysql-test/r/gis.result @@ -1034,6 +1034,14 @@ p NULL NULL drop table t1; +# +# Test for bug #59888 "debug assertion when attempt to create spatial index +# on char > 31 bytes". +# +create table t1(a char(32) not null) engine=myisam; +create spatial index i on t1 (a); +ERROR 42000: A SPATIAL index may only contain a geometrical type column +drop table t1; End of 5.1 tests CREATE TABLE t1( col0 BINARY NOT NULL, |