mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
bug# 17082 Client hangs when creating tables with partition
This bug was only on Windows but we updated the call to create_temporary_file to match what is being done in other areas of MySQL
This commit is contained in:
@@ -2397,8 +2397,9 @@ char *generate_partition_syntax(partition_info *part_info,
|
|||||||
DBUG_ENTER("generate_partition_syntax");
|
DBUG_ENTER("generate_partition_syntax");
|
||||||
|
|
||||||
write_part_state= (part_info->part_state && !part_info->part_state_len);
|
write_part_state= (part_info->part_state && !part_info->part_state_len);
|
||||||
if (unlikely(((fptr= create_temp_file(path,mysql_tmpdir,"psy", O_RDWR,
|
if (unlikely(((fptr= create_temp_file(path,mysql_tmpdir,"psy",
|
||||||
MYF(MY_WME)))) < 0))
|
O_RDWR | O_BINARY | O_TRUNC |
|
||||||
|
O_TEMPORARY, MYF(MY_WME)))) < 0))
|
||||||
DBUG_RETURN(NULL);
|
DBUG_RETURN(NULL);
|
||||||
#ifndef __WIN__
|
#ifndef __WIN__
|
||||||
unlink(path);
|
unlink(path);
|
||||||
|
Reference in New Issue
Block a user