1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2024-12-01 09:51:43 +02:00

PGPRO-692: Use .partial suffix instead of .temp

This commit is contained in:
Arthur Zakirov 2017-12-26 11:11:04 +03:00
parent ab59860dc9
commit 41de50c385

View File

@ -788,7 +788,7 @@ push_wal_file(const char *from_path, const char *to_path, bool is_compress,
if (!overwrite && fileExists(gz_to_path))
elog(ERROR, "WAL segment \"%s\" already exists.", gz_to_path);
snprintf(to_path_temp, sizeof(to_path_temp), "%s.temp", gz_to_path);
snprintf(to_path_temp, sizeof(to_path_temp), "%s.partial", gz_to_path);
gz_out = gzopen(to_path_temp, "wb");
if (gzsetparams(gz_out, compress_level, Z_DEFAULT_STRATEGY) != Z_OK)
@ -803,7 +803,7 @@ push_wal_file(const char *from_path, const char *to_path, bool is_compress,
if (!overwrite && fileExists(to_path))
elog(ERROR, "WAL segment \"%s\" already exists.", to_path);
snprintf(to_path_temp, sizeof(to_path_temp), "%s.temp", to_path);
snprintf(to_path_temp, sizeof(to_path_temp), "%s.partial", to_path);
out = fopen(to_path_temp, "w");
if (out == NULL)
@ -962,7 +962,7 @@ get_wal_file(const char *from_path, const char *to_path)
}
/* open backup file for write */
snprintf(to_path_temp, sizeof(to_path_temp), "%s.temp", to_path);
snprintf(to_path_temp, sizeof(to_path_temp), "%s.partial", to_path);
out = fopen(to_path_temp, "w");
if (out == NULL)