mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
Fix MERGE tables on Microsoft Windows. This a backport of the
fix from the main 5.0 tree. (Bug #10687) myisammrg/myrg_open.c: Call fn_format() if file has a path. mysys/my_getwd.c: Check for '/' even if it is not FN_LIBCHAR in has_path()
This commit is contained in:
parent
d8dbb83848
commit
55301a10b4
2 changed files with 7 additions and 2 deletions
|
@ -67,7 +67,7 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
|
||||||
while ((length=my_b_gets(&file,buff,FN_REFLEN-1)))
|
while ((length=my_b_gets(&file,buff,FN_REFLEN-1)))
|
||||||
{
|
{
|
||||||
if ((end=buff+length)[-1] == '\n')
|
if ((end=buff+length)[-1] == '\n')
|
||||||
end[-1]='\0';
|
*--end='\0';
|
||||||
if (!buff[0])
|
if (!buff[0])
|
||||||
continue; /* Skip empty lines */
|
continue; /* Skip empty lines */
|
||||||
if (buff[0] == '#')
|
if (buff[0] == '#')
|
||||||
|
@ -86,6 +86,8 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
|
||||||
sizeof(name_buff)-1-dir_length));
|
sizeof(name_buff)-1-dir_length));
|
||||||
VOID(cleanup_dirname(buff,name_buff));
|
VOID(cleanup_dirname(buff,name_buff));
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
fn_format(buff, buff, "", "", 0);
|
||||||
if (!(isam=mi_open(buff,mode,(handle_locking?HA_OPEN_WAIT_IF_LOCKED:0))))
|
if (!(isam=mi_open(buff,mode,(handle_locking?HA_OPEN_WAIT_IF_LOCKED:0))))
|
||||||
goto err;
|
goto err;
|
||||||
if (!m_info) /* First file */
|
if (!m_info) /* First file */
|
||||||
|
|
|
@ -208,7 +208,10 @@ int test_if_hard_path(register const char *dir_name)
|
||||||
|
|
||||||
my_bool has_path(const char *name)
|
my_bool has_path(const char *name)
|
||||||
{
|
{
|
||||||
return test(strchr(name, FN_LIBCHAR))
|
return test(strchr(name, FN_LIBCHAR))
|
||||||
|
#if FN_LIBCHAR != '/'
|
||||||
|
|| test(strchr(name,'/'))
|
||||||
|
#endif
|
||||||
#ifdef FN_DEVCHAR
|
#ifdef FN_DEVCHAR
|
||||||
|| test(strchr(name, FN_DEVCHAR))
|
|| test(strchr(name, FN_DEVCHAR))
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue