diff options
author | unknown <anjuta@arthur.local> | 2006-06-01 12:34:44 +0300 |
---|---|---|
committer | unknown <anjuta@arthur.local> | 2006-06-01 12:34:44 +0300 |
commit | 21383ebdc09634d7097a93b93311da7000780004 (patch) | |
tree | 10eb7910fd2359d5b3c6457f3f9070b48a9eab20 /include/my_global.h | |
parent | ee080848174591a18741c54e0ac3191cc7ab2e8d (diff) | |
download | mariadb-git-21383ebdc09634d7097a93b93311da7000780004.tar.gz |
Fixed Bug#19479:mysqldump creates invalid dump.
Only check for FN_DEVCHAR in filenames if FN_DEVCHAR is defined.
This allows to use table names with ":" on non windows platforms.
On Windows platform get an error if you use table name that contains FN_DEVCHAR
include/config-win.h:
Moved FN_DEVCHAR to config-win.h
include/my_global.h:
Moved FN_DEVCHAR to config-win.h
mysql-test/r/create.result:
Added testcase for Bug#19479:mysqldump creates invalid dump
BitKeeper/etc/ignore:
Added sql/share/iso639-2.txt sql/share/fixerrmsg.pl to the ignore list
mysql-test/t/create.test:
Added testcase for Bug#19479:mysqldump creates invalid dump
mysys/mf_fn_ext.c:
Added checking of BASKSLASH_MBTAIL as dirname_part depends on it.
Fixed cast and indentation.
sql/table.cc:
Only check for FN_DEVCHAR in filenames if FN_DEVCHAR is defined.
This allows to use table names with ":" on non windows platforms.
On Windows platform get an error if you use table name that contains FN_DEVCHAR
Diffstat (limited to 'include/my_global.h')
-rw-r--r-- | include/my_global.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/my_global.h b/include/my_global.h index 7adf4845984..e7205c94c18 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -599,7 +599,6 @@ typedef SOCKET_SIZE_TYPE size_socket; #define FN_HOMELIB '~' /* ~/ is used as abbrev for home dir */ #define FN_CURLIB '.' /* ./ is used as abbrev for current dir */ #define FN_PARENTDIR ".." /* Parent directory; Must be a string */ -#define FN_DEVCHAR ':' #ifndef FN_LIBCHAR #ifdef __EMX__ |