mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fix needed to support MERGE tables in different databases
This commit is contained in:
@@ -39,10 +39,10 @@ my_string my_load_path(my_string to, const char *path,
|
||||
(is_prefix((gptr) path,FN_PARENTDIR)) ||
|
||||
! own_path_prefix)
|
||||
{
|
||||
if (! my_getwd(buff,(uint) (FN_REFLEN-strlen(path)),MYF(0)))
|
||||
VOID(strcat(buff,path));
|
||||
if (! my_getwd(buff,(uint) (FN_REFLEN+2-strlen(path)),MYF(0)))
|
||||
VOID(strcat(buff,path+2));
|
||||
else
|
||||
VOID(strmov(buff,path));
|
||||
VOID(strmov(buff,path)); /* Return org file name */
|
||||
}
|
||||
else
|
||||
VOID(strxmov(buff,own_path_prefix,path,NullS));
|
||||
|
||||
Reference in New Issue
Block a user