summaryrefslogtreecommitdiff
path: root/internal/mapr
diff options
context:
space:
mode:
Diffstat (limited to 'internal/mapr')
-rw-r--r--internal/mapr/groupsetresult.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/internal/mapr/groupsetresult.go b/internal/mapr/groupsetresult.go
index 47bdab8..26e4b12 100644
--- a/internal/mapr/groupsetresult.go
+++ b/internal/mapr/groupsetresult.go
@@ -248,12 +248,17 @@ func (g *GroupSet) resultWriteUnformatted(query *Query, rows []result, fd *os.Fi
}
}
- if !query.Outfile.AppendMode && finalResult {
+ // Always rename .tmp to .csv after writing (not just on final result)
+ // This ensures the .csv file is updated at every interval
+ if !query.Outfile.AppendMode {
tmpOutfile := fmt.Sprintf("%s.tmp", query.Outfile.FilePath)
+ dlog.Common.Debug("Renaming outfile", tmpOutfile, "to", query.Outfile.FilePath)
if err := os.Rename(tmpOutfile, query.Outfile.FilePath); err != nil {
+ dlog.Common.Error("Failed to rename outfile", tmpOutfile, "error", err)
os.Remove(tmpOutfile)
return err
}
+ dlog.Common.Info("Successfully renamed outfile to", query.Outfile.FilePath)
}
return nil