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_innodb.cc | |
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_innodb.cc')
-rw-r--r-- | sql/ha_innodb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc index beff8c1f515..bcd1130dcdb 100644 --- a/sql/ha_innodb.cc +++ b/sql/ha_innodb.cc @@ -3394,7 +3394,7 @@ ha_innobase::create( /* The limit probably should be REC_MAX_N_FIELDS - 3 = 1020, but we play safe here */ - return(HA_ERR_TO_BIG_ROW); + DBUG_RETURN(HA_ERR_TO_BIG_ROW); } /* Get the transaction associated with the current thd, or create one |