From 413909af9ee82ae7ef3647d48be0429b56d10cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franz=20P=C3=B6schel?= Date: Mon, 30 Mar 2026 15:45:13 +0200 Subject: [PATCH] Consistently set written / not written --- src/Series.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Series.cpp b/src/Series.cpp index e01e95ffb4..038bffc7cc 100644 --- a/src/Series.cpp +++ b/src/Series.cpp @@ -571,6 +571,11 @@ void Series::flushRankTable() [asRawPtr](char *) { delete asRawPtr; }}; writeDataset(std::move(put), /* num_lines = */ size); } + + // Must ensure that the Writable is consistently set to written on all + // ranks + series.m_rankTable.m_attributable.setWritten( + true, EnqueueAsynchronously::OnlyAsync); return; } #endif