Update test_runner/performance/test_unlogged.py

Co-authored-by: Heikki Linnakangas <heikki@neon.tech>
This commit is contained in:
Konstantin Knizhnik
2025-07-23 16:10:42 +03:00
committed by Konstantin Knizhnik
parent 4c49423246
commit b7dbf4cf56

View File

@@ -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.