diff options
author | monty@mysql.com <> | 2003-12-30 13:14:21 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2003-12-30 13:14:21 +0200 |
commit | c1dd070ba73952d0c18c8ca01a9cbf322fcab26e (patch) | |
tree | fd8d2c5fbe95830a7705bcaa0f893bd209830ffb /sql/ha_myisam.h | |
parent | 57d481320038ecb9e270ac17b98ed59bb7c3f80a (diff) | |
download | mariadb-git-c1dd070ba73952d0c18c8ca01a9cbf322fcab26e.tar.gz |
Some small portability fixes.
Added support for lower_case_table_names=2, which is to be used on case insensitive file systems.
This tells MySQL to preserve the used case of filenames and database names to make it esier to move files between cases sensitive can case insensitive file systems (like Windows and Linux)
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index 215608f8f0a..212850d8f28 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -46,7 +46,8 @@ 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_FILE_BASED), enable_activate_all_index(1) {} ~ha_myisam() {} |