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

Enlarge DPB\SPB size limit up to 1MB (as Alex suggested). Former limit (4KB) was too small even to pass contents of standard fbtrace.conf into the trace start service.

This commit is contained in:
hvlad 2013-05-07 11:52:32 +00:00
parent 4267d261d4
commit f150d6ff32

View File

@ -35,7 +35,7 @@
// This setting of maximum dpb size doesn't mean, that we
// can't process larger DBPs! This is just recommended limit
// cause it's hard to imagine sensefull DPB of even this size.
const size_t MAX_DPB_SIZE = 4096;
const size_t MAX_DPB_SIZE = 1024*1024;
namespace Firebird {