Increase number of updates in test_unlogged.py

This commit is contained in:
Konstantin Knizhnik
2025-06-09 14:18:48 +03:00
committed by Konstantin Knizhnik
parent 1f93b664ad
commit 8884f55eee

View File

@@ -3,14 +3,17 @@ from __future__ import annotations
import threading
from typing import TYPE_CHECKING
import pytest
if TYPE_CHECKING:
from fixtures.neon_fixtures import NeonEnvBuilder
@pytest.mark.timeout(10000)
def test_unlogged(neon_env_builder: NeonEnvBuilder):
n_tables = 20
n_records = 1000
n_updates = 10
n_updates = 1000
shared_buffers = 1
env = neon_env_builder.init_start()