From a49bf7f4075feb7b87e27563fc4bb2d8adeae659 Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Tue, 17 Sep 2024 16:13:37 +0200 Subject: [PATCH] update test --- src/test/nodestore/Database_test.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/nodestore/Database_test.cpp b/src/test/nodestore/Database_test.cpp index b45328ba0c5..bc7ec2b6c78 100644 --- a/src/test/nodestore/Database_test.cpp +++ b/src/test/nodestore/Database_test.cpp @@ -458,7 +458,6 @@ class Database_test : public TestBase auto& section = p->section("sqlite"); section.set("page_size", "512"); section.set("journal_size_limit", "2582080"); - section.set("max_page_count", "1073741823"); } return Env(*this, std::move(p)); }(); @@ -469,7 +468,7 @@ class Database_test : public TestBase BEAST_EXPECT( s.txPragma.at(1) == "PRAGMA journal_size_limit=2582080;"); BEAST_EXPECT( - s.txPragma.at(2) == "PRAGMA max_page_count=1073741823;"); + s.txPragma.at(2) == "PRAGMA max_page_count=4294967294;"); } } }