From b7dbf4cf56bf06d93d82fa18a5f957646479484b Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Wed, 23 Jul 2025 16:10:42 +0300 Subject: [PATCH] Update test_runner/performance/test_unlogged.py Co-authored-by: Heikki Linnakangas --- test_runner/performance/test_unlogged.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/performance/test_unlogged.py b/test_runner/performance/test_unlogged.py index 58815062c8..483952695a 100644 --- a/test_runner/performance/test_unlogged.py +++ b/test_runner/performance/test_unlogged.py @@ -10,7 +10,7 @@ if TYPE_CHECKING: # -# This test demonstrates effect of relkind cache. Postgres doesn't store relation persistence in shared buffer tag. +# This test demonstrates effect of relpersistence cache. Postgres doesn't store relation persistence in shared buffer tag. # It means that if page is evicted from shared buffers and relation is not cache in relation cache, then persistence=0 (auto) is used. # For vanilla Postgres it is not important, because in both cases we need to write changes to the file. # In Neon, neon_write does nothing nothing for a permanent relation, while for an unlogged relation, it writes the page to the local file.