datacache: postgres: use IF NOT EXISTS to avoid error messages
authorDaniel Golle <daniel@makrotopia.org>
Thu, 13 Oct 2016 00:29:43 +0000 (00:29 +0000)
committerDaniel Golle <daniel@makrotopia.org>
Thu, 13 Oct 2016 00:29:43 +0000 (00:29 +0000)
src/datacache/plugin_datacache_postgres.c

index 147bb4223432b4e46071268f17ac0eec31c3cba5..13c2c26a27f4000e54c040cfe467decf9d8097c8 100644 (file)
@@ -74,7 +74,7 @@ init_connection (struct Plugin *plugin)
     return GNUNET_SYSERR;
   ret =
       PQexec (plugin->dbh,
-              "CREATE TEMPORARY TABLE gn090dc ("
+              "CREATE TEMPORARY TABLE IF NOT EXISTS gn090dc ("
               "  type INTEGER NOT NULL DEFAULT 0,"
               "  discard_time BIGINT NOT NULL DEFAULT 0,"
               "  key BYTEA NOT NULL DEFAULT '',"
@@ -100,10 +100,10 @@ init_connection (struct Plugin *plugin)
   {
     if ((GNUNET_OK !=
          GNUNET_POSTGRES_exec (plugin->dbh,
-                               "CREATE INDEX idx_key ON gn090dc (key)")) ||
+                               "CREATE INDEX IF NOT EXISTS idx_key ON gn090dc (key)")) ||
         (GNUNET_OK !=
          GNUNET_POSTGRES_exec (plugin->dbh,
-                               "CREATE INDEX idx_dt ON gn090dc (discard_time)")))
+                               "CREATE INDEX IF NOT EXISTS idx_dt ON gn090dc (discard_time)")))
     {
       PQclear (ret);
       PQfinish (plugin->dbh);