From d5515e3243be086eb912e2f23724a7f76385325a Mon Sep 17 00:00:00 2001 From: Theodore Tsirpanis Date: Fri, 15 Nov 2024 17:09:26 +0200 Subject: [PATCH] Update temporary file extension to `.tiledb.tmp`. --- tiledb/sm/filesystem/gcs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tiledb/sm/filesystem/gcs.h b/tiledb/sm/filesystem/gcs.h index 92a3838102a..838b9fee6aa 100644 --- a/tiledb/sm/filesystem/gcs.h +++ b/tiledb/sm/filesystem/gcs.h @@ -406,7 +406,7 @@ class GCS { std::string next_part_path() { const uint64_t part_id = next_part_id_++; const std::string part_path = - object_path_ + ".part" + std::to_string(part_id) + ".tmp"; + object_path_ + ".part" + std::to_string(part_id) + ".tiledb.tmp"; part_paths_.emplace_back(part_path); return part_path; }