Merge remote-tracking branch 'origin/master' into develop-next

This commit is contained in:
Elliot Lee
2024-09-14 18:36:46 -07:00
3 changed files with 60 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ namespace BuildInfo {
// and follow the format described at http://semver.org/
//------------------------------------------------------------------------------
// clang-format off
char const* const versionString = "2.3.0-b2"
char const* const versionString = "2.3.0-b3"
// clang-format on
#if defined(DEBUG) || defined(SANITIZER)

View File

@@ -77,7 +77,7 @@ inline constexpr auto TxDBName{"transaction.db"};
inline constexpr std::array<char const*, 4> TxDBPragma
{
"PRAGMA page_size=4096;", "PRAGMA journal_size_limit=1582080;",
"PRAGMA max_page_count=2147483646;",
"PRAGMA max_page_count=4294967294;",
#if (ULONG_MAX > UINT_MAX) && !defined(NO_SQLITE_MMAP)
"PRAGMA mmap_size=17179869184;"