From: David Yat Sin Date: Tue, 14 Sep 2010 18:01:22 +0000 (-0400) Subject: Increased SQLLEN to 1024*1024 X-Git-Tag: v1.2.3^2~71^2^2~245^2~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=613e08d352d65bff137ac865e681cb1efc001dd0;p=thirdparty%2Ffreeswitch.git Increased SQLLEN to 1024*1024 --- diff --git a/src/switch_core_sqldb.c b/src/switch_core_sqldb.c index 3a5e0bb6e2..b170b6a4ad 100644 --- a/src/switch_core_sqldb.c +++ b/src/switch_core_sqldb.c @@ -35,7 +35,7 @@ #include #include "private/switch_core_pvt.h" -#define SQLLEN 32768 +#define SQLLEN 1024*1024 static struct { switch_cache_db_handle_t *event_db;