Skip to content

Commit

Permalink
Update temporary file extension to .tiledb.tmp.
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Nov 15, 2024
1 parent adb9af1 commit d5515e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tiledb/sm/filesystem/gcs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit d5515e3

Please sign in to comment.