summaryrefslogtreecommitdiff
path: root/sql/ha_heap.h
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2001-10-23 10:52:51 +0200
committerserg@serg.mysql.com <>2001-10-23 10:52:51 +0200
commit6f669e6bf8286a00eec272fb2ff1139be71892d4 (patch)
tree6f045be38734a0b7be25eee3c7755b68e6152904 /sql/ha_heap.h
parenta88a9842aa61e31e07dda8bc506f7f43e0636292 (diff)
downloadmariadb-git-6f669e6bf8286a00eec272fb2ff1139be71892d4.tar.gz
HA_NO_FULLTEXT_KEY and an appropriate error message
Diffstat (limited to 'sql/ha_heap.h')
-rw-r--r--sql/ha_heap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_heap.h b/sql/ha_heap.h
index 1a6e8d9393c..6b7e9c6c626 100644
--- a/sql/ha_heap.h
+++ b/sql/ha_heap.h
@@ -33,9 +33,9 @@ class ha_heap: public handler
const char *table_type() const { return "HEAP"; }
const char **bas_ext() const;
ulong option_flag() const
- { return (HA_READ_RND_SAME | HA_NO_INDEX | HA_ONLY_WHOLE_INDEX |
+ { return (HA_READ_RND_SAME | HA_NO_INDEX | HA_ONLY_WHOLE_INDEX |
HA_WRONG_ASCII_ORDER | HA_KEYPOS_TO_RNDPOS | HA_NO_BLOBS |
- HA_REC_NOT_IN_SEQ); }
+ HA_REC_NOT_IN_SEQ | HA_NO_FULLTEXT_KEY); }
uint max_record_length() const { return HA_MAX_REC_LENGTH; }
uint max_keys() const { return MAX_KEY; }
uint max_key_parts() const { return MAX_REF_PARTS; }