diff options
author | gkodinov/kgeorge@magare.gmz <> | 2007-03-14 11:54:20 +0200 |
---|---|---|
committer | gkodinov/kgeorge@magare.gmz <> | 2007-03-14 11:54:20 +0200 |
commit | 8c1f70aef6ed0abc70da2892d6c2b53f04d63265 (patch) | |
tree | 93d3582284d2660c83188dd608398a443fc4a994 /sql/field.cc | |
parent | 946745e1f7ce568fdaef6266e8a11da23fa21b1d (diff) | |
download | mariadb-git-8c1f70aef6ed0abc70da2892d6c2b53f04d63265.tar.gz |
Bug #26794:
Different set of conditions is used to verify
the validity of index definitions over a GEOMETRY
column in ALTER TABLE and CREATE TABLE.
The difference was on how sub-keys notion validity
is checked.
Fixed by extending the CREATE TABLE condition to
support the cases allowed in ALTER TABLE.
Made the SHOW CREATE TABLE not to display spatial
indexes using the sub-key notion.
Diffstat (limited to 'sql/field.cc')
-rw-r--r-- | sql/field.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/field.cc b/sql/field.cc index 981a877783f..0f8103b4046 100644 --- a/sql/field.cc +++ b/sql/field.cc @@ -1011,6 +1011,7 @@ bool Field::type_can_have_key_part(enum enum_field_types type) case MYSQL_TYPE_BLOB: case MYSQL_TYPE_VAR_STRING: case MYSQL_TYPE_STRING: + case MYSQL_TYPE_GEOMETRY: return TRUE; default: return FALSE; |