From: David Barksdale Date: Thu, 1 Jun 2017 02:06:16 +0000 (-0500) Subject: [datstore] make sqlite page_size power of two X-Git-Tag: gnunet-0.11.0rc0~269 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bbbe0b2404d131cc0d9eda26725b65b47a7e073a;p=oweals%2Fgnunet.git [datstore] make sqlite page_size power of two --- diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c index 323c03856..cdadfb87d 100644 --- a/src/datastore/plugin_datastore_sqlite.c +++ b/src/datastore/plugin_datastore_sqlite.c @@ -305,7 +305,7 @@ database_setup (const struct GNUNET_CONFIGURATION_Handle *cfg, ENULL)); CHECK (SQLITE_OK == sqlite3_exec (plugin->dbh, - "PRAGMA page_size=4092", NULL, NULL, + "PRAGMA page_size=4096", NULL, NULL, ENULL)); CHECK (SQLITE_OK ==