aboutsummaryrefslogtreecommitdiff
path: root/src/datastore/plugin_datastore_postgres.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/datastore/plugin_datastore_postgres.c')
-rw-r--r--src/datastore/plugin_datastore_postgres.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/datastore/plugin_datastore_postgres.c b/src/datastore/plugin_datastore_postgres.c
index b9c27c7b1..f2164ab17 100644
--- a/src/datastore/plugin_datastore_postgres.c
+++ b/src/datastore/plugin_datastore_postgres.c
@@ -827,8 +827,9 @@ static void
827postgres_plugin_drop (void *cls) 827postgres_plugin_drop (void *cls)
828{ 828{
829 struct Plugin *plugin = cls; 829 struct Plugin *plugin = cls;
830 830
831 GNUNET_POSTGRES_exec (plugin->dbh, "DROP TABLE gn090"); 831 if (GNUNET_OK != GNUNET_POSTGRES_exec (plugin->dbh, "DROP TABLE gn090"))
832 GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, "postgres", _("Failed to drop table from database.\n"));
832} 833}
833 834
834 835