8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 07:23:04 +01:00

Corrected default value, as suggested by Nickolay.

This commit is contained in:
dimitr 2003-05-07 07:25:38 +00:00
parent b797385101
commit 6679e2575c

View File

@ -48,8 +48,10 @@ const ConfigImpl::ConfigEntry ConfigImpl::entries[] =
{TYPE_INTEGER, "SortMemBlockSize", (ConfigValue) 1048576}, // bytes
#ifdef SUPERSERVER
{TYPE_INTEGER, "SortMemUpperLimit", (ConfigValue) 67108864}, // bytes
#else
#elif defined(WIN_NT) // win32 CS
{TYPE_INTEGER, "SortMemUpperLimit", (ConfigValue) 8388608}, // bytes
#else // non-win32 CS
{TYPE_INTEGER, "SortMemUpperLimit", (ConfigValue) 0}, // bytes
#endif
{TYPE_BOOLEAN, "RemoteFileOpenAbility", (ConfigValue) false},
{TYPE_INTEGER, "GuardianOption", (ConfigValue) 1},