summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.h
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2003-04-08 20:39:50 +0300
committerunknown <Sinisa@sinisa.nasamreza.org>2003-04-08 20:39:50 +0300
commit7786126befbe83a3779af4846e62a1e49c682596 (patch)
tree740935f87302ff7678bc5aa364edfcb5afe5bece /sql/ha_myisam.h
parentf4216c526bcd7b3e68249f4349f856a8dfcc7f73 (diff)
downloadmariadb-git-7786126befbe83a3779af4846e62a1e49c682596.tar.gz
a fix for a crashing bug when attempting to create InnoDB table
with GEOMETRY field type.
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r--sql/ha_myisam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h
index 5dc294b3b9f..154429ecc0d 100644
--- a/sql/ha_myisam.h
+++ b/sql/ha_myisam.h
@@ -46,7 +46,7 @@ class ha_myisam: public handler
ha_myisam(TABLE *table): handler(table), file(0),
int_table_flags(HA_READ_RND_SAME | HA_KEYPOS_TO_RNDPOS | HA_LASTKEY_ORDER |
HA_NULL_KEY | HA_CAN_FULLTEXT | HA_CAN_SQL_HANDLER |
- HA_DUPP_POS | HA_BLOB_KEY | HA_AUTO_PART_KEY),
+ HA_DUPP_POS | HA_BLOB_KEY | HA_AUTO_PART_KEY | HA_HAS_GEOMETRY),
enable_activate_all_index(1)
{}
~ha_myisam() {}