mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Cleanup of tests
Fixed bug with ALTER TABLE on HEAP tables
This commit is contained in:
@ -1096,10 +1096,7 @@ void str_to_file(const char* fname, char* str, int size)
|
||||
void reject_dump(const char* record_file, char* buf, int size)
|
||||
{
|
||||
char reject_file[FN_REFLEN];
|
||||
if (strlen(record_file) >= FN_REFLEN-8)
|
||||
die("too long path name for reject");
|
||||
strmov(strmov(reject_file, record_file),".reject");
|
||||
str_to_file(reject_file, buf, size);
|
||||
str_to_file(fn_format(reject_file, record_file,"",".reject",2), buf, size);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user