mirror of
https://github.com/MariaDB/server.git
synced 2025-08-29 00:08:14 +03:00
Remove extra '/' after mysql_real_data_home
Add missing parameter to strxnmov() that caused some INTO OUTFILE commands to core dump mysql-test/mysql-test-run.sh: Ensure that clients used the supplied --socket argument mysql-test/r/lowercase_table.result: Remove tables used in other tests that may affect this one mysql-test/r/rename.result: Remove tables used in other tests that may affect this one mysql-test/t/lowercase_table.test: Remove tables used in other tests that may affect this one mysql-test/t/rename.test: Remove tables used in other tests that may affect this one sql/item_cmpfunc.cc: Remove not relevant comment sql/sql_class.cc: Add missing parameter to strxnmov() that caused some INTO OUTFILE commands to core dump sql/sql_load.cc: Remove extra '/' after mysql_real_data_home sql/sql_table.cc: Remove extra '/' after mysql_real_data_home
This commit is contained in:
@@ -1579,7 +1579,7 @@ static int prepare_for_restore(THD* thd, TABLE_LIST* table,
|
||||
reg_ext))
|
||||
DBUG_RETURN(-1); // protect buffer overflow
|
||||
|
||||
my_snprintf(dst_path, sizeof(dst_path), "%s/%s/%s",
|
||||
my_snprintf(dst_path, sizeof(dst_path), "%s%s/%s",
|
||||
mysql_real_data_home, db, table_name);
|
||||
|
||||
if (lock_and_wait_for_table_name(thd,table))
|
||||
|
Reference in New Issue
Block a user