/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/test/modules/test_dsa/expected/test_dsa.out
28 строк
574 B
Michael Paquier
Fix size underestimation of DSA pagemap for odd-sized segments
09 мар 2026, 07:46
09 мар 2026, 07:46
4da2afd
Код
Авторство
О чём код?
CREATE EXTENSION test_dsa; SELECT test_dsa_basic(); test_dsa_basic ---------------- (1 row) SELECT test_dsa_resowners(); test_dsa_resowners -------------------- (1 row) -- Test allocations across a pre-defined range of pages. This covers enough -- range to check for the case of odd-sized segments, without making the test -- too slow. SELECT test_dsa_allocate(1001, 2000, 100); test_dsa_allocate ------------------- (1 row) -- Larger size with odd-sized segment. SELECT test_dsa_allocate(6501, 6600, 100); test_dsa_allocate ------------------- (1 row)