aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_sqlite.c
diff options
context:
space:
mode:
authorgrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2009-07-17 19:40:28 +0000
committergrothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96>2009-07-17 19:40:28 +0000
commit5371894e7e79589f421508486e0b98ff9ee6685e (patch)
tree3e146ad75a8f016e486f40c17a887166848f8ef0 /src/datastore/plugin_datastore_sqlite.c
parente6471b34317f497ef03597eead69e2fd46685dee (diff)
cpsing perf test
git-svn-id: https://gnunet.org/svn/gnunet@8735 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/datastore/plugin_datastore_sqlite.c')
-rw-r--r--src/datastore/plugin_datastore_sqlite.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index 2e87d489a5..bcd5c7e2d2 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -685,7 +685,6 @@ sqlite_plugin_put (void *cls,
GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK, "sqlite3_reset");
return GNUNET_SYSERR;
}
-
n = sqlite3_step (stmt);
if (n != SQLITE_DONE)
{
@@ -710,11 +709,6 @@ sqlite_plugin_put (void *cls,
plugin->payload += size + GNUNET_DATASTORE_ENTRY_OVERHEAD;
if (plugin->lastSync >= MAX_STAT_SYNC_LAG)
sync_stats (plugin);
-#if DEBUG_SQLITE
- GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
- "sqlite",
- "done writing content\n");
-#endif
return GNUNET_OK;
}