summaryrefslogtreecommitdiff
path: root/include/myisam.h
diff options
context:
space:
mode:
authormonty@mysql.com <>2003-12-30 13:14:21 +0200
committermonty@mysql.com <>2003-12-30 13:14:21 +0200
commitc1dd070ba73952d0c18c8ca01a9cbf322fcab26e (patch)
treefd8d2c5fbe95830a7705bcaa0f893bd209830ffb /include/myisam.h
parent57d481320038ecb9e270ac17b98ed59bb7c3f80a (diff)
downloadmariadb-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 'include/myisam.h')
-rw-r--r--include/myisam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/myisam.h b/include/myisam.h
index 11dae5f59ba..87a40b50c73 100644
--- a/include/myisam.h
+++ b/include/myisam.h
@@ -91,7 +91,7 @@ typedef struct st_mi_isaminfo /* Struct from h_info */
typedef struct st_mi_create_info
{
- char *index_file_name, *data_file_name; /* If using symlinks */
+ const char *index_file_name, *data_file_name; /* If using symlinks */
ha_rows max_rows;
ha_rows reloc_rows;
ulonglong auto_increment;