diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2023-11-13 11:44:09 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2023-11-13 11:44:09 -0500 |
| commit | 90bb0614fc1d8f1a185a778e31aaf9027c01aeb8 (patch) | |
| tree | 22a865978e398cef2fdcef763ab893c2da769a4a /tests | |
| parent | 83486744600e8be338c75c2e3d2339452a392a9d (diff) | |
| download | dynamic-extension-90bb0614fc1d8f1a185a778e31aaf9027c01aeb8.tar.gz | |
Tombstone Compaction: re-enabled tombstone compaction
Currently, proactive buffer tombstone compaction is disabled by forcing
the buffer tombstone capacity to match its record capacity. It isn't
clear how to best handle proactive buffer compactions in an environment
where new buffers are spawned anyway.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/dynamic_extension_tests.inc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/dynamic_extension_tests.inc b/tests/dynamic_extension_tests.inc index dac7d51..be82132 100644 --- a/tests/dynamic_extension_tests.inc +++ b/tests/dynamic_extension_tests.inc @@ -245,8 +245,6 @@ START_TEST(t_tombstone_merging_01) if (gsl_rng_uniform(rng) < 0.25 && deleted.find(rec) == deleted.end()) { to_delete.insert(rec); } - - ck_assert(test_de->validate_tombstone_proportion()); } test_de->await_next_epoch(); |