1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fine tune the hard-coded values passed to sqlite3_init_wsd(). (CVS 5664)

FossilOrigin-Name: af5763eb65baa791a38f7e235624e4f63beac104
This commit is contained in:
danielk1977
2008-09-02 16:22:28 +00:00
parent a4de4532dd
commit a8f83bfc77
4 changed files with 12 additions and 12 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.497 2008/09/02 14:07:24 danielk1977 Exp $
** $Id: main.c,v 1.498 2008/09/02 16:22:29 danielk1977 Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -89,7 +89,7 @@ int sqlite3_initialize(void){
int rc; /* Result code */
#ifdef SQLITE_OMIT_WSD
rc = sqlite3_wsd_init(1024, 256);
rc = sqlite3_wsd_init(4096, 24);
if( rc!=SQLITE_OK ){
return rc;
}