Increase range of expected value for working set approximation test

This commit is contained in:
Konstantin Knizhnik
2024-10-16 18:59:19 +03:00
parent 061ea0de7a
commit 3e8cb25e53

View File

@@ -72,7 +72,7 @@ WITH (fillfactor='100');
# verify working set size after some index access of a few select pages only
blocks = query_scalar(cur, "select approximate_working_set_size(true)")
log.info(f"working set size after some index access of a few select pages only {blocks}")
assert blocks < 10
assert blocks < 12
def test_sliding_working_set_approximation(neon_simple_env: NeonEnv):