1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00

patch for gcc and clang install fix

This commit is contained in:
Leonid Fedorov
2024-11-15 12:23:04 +00:00
parent f7df187ba9
commit 78e7cc3262
2 changed files with 21 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
--- a/fdbbackup/FileDecoder.actor.cpp 2024-11-15 12:10:29.888975838 +0000
+++ b/fdbbackup/FileDecoder.actor.cpp 2024-11-15 12:09:42.619162451 +0000
@@ -634,7 +634,7 @@
}
}
- self->lfd = open(self->file.fileName.c_str(), O_WRONLY | O_CREAT | O_TRUNC);
+ self->lfd = open(self->file.fileName.c_str(), O_WRONLY | O_CREAT | O_TRUNC, 0600);
if (self->lfd == -1) {
TraceEvent(SevError, "OpenLocalFileFailed").detail("File", self->file.fileName);
throw platform_error();