Changeset: 2b11bfefa44b for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=2b11bfefa44b
Modified Files:
sql/storage/store.c
Branch: Nov2019
Log Message:
wait for other transactions too finish
diffs (13 lines):
diff --git a/sql/storage/store.c b/sql/storage/store.c
--- a/sql/storage/store.c
+++ b/sql/storage/store.c
@@ -2136,7 +2136,8 @@ flusher_should_run(void)
bool my_flush_now = (bool) ATOMIC_XCG(&flusher.flush_now, 0);
if (my_flush_now)
reason_to = "user request";
- else if (ATOMIC_GET(&store_nr_active) > 0)
+
+ if (ATOMIC_GET(&store_nr_active) > 0)
reason_not_to = "awaiting idle time";
if (!flusher.enabled)
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list