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_myisammrg.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_myisammrg.h')
-rw-r--r-- | sql/ha_myisammrg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_myisammrg.h b/sql/ha_myisammrg.h index dd649fe8fcb..db3c20bede2 100644 --- a/sql/ha_myisammrg.h +++ b/sql/ha_myisammrg.h @@ -36,7 +36,7 @@ class ha_myisammrg: public handler { return (HA_REC_NOT_IN_SEQ | HA_READ_RND_SAME | HA_AUTO_PART_KEY | HA_KEYPOS_TO_RNDPOS | HA_LASTKEY_ORDER | - HA_NULL_KEY | HA_BLOB_KEY); + HA_NULL_KEY | HA_BLOB_KEY | HA_FILE_BASED); } ulong index_flags(uint inx) const { |