aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/plugin_namestore_postgres.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-08 18:51:03 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-08 18:51:03 +0000
commit5049585e7942ad3fe3f8742832a2b4f76ec5a954 (patch)
tree85522f8496f593f56e7851e7516971ae2202e615 /src/namestore/plugin_namestore_postgres.c
parent2168e300fae74c5da28a2f3f57d67b7705f038a2 (diff)
downloadgnunet-5049585e7942ad3fe3f8742832a2b4f76ec5a954.tar.gz
gnunet-5049585e7942ad3fe3f8742832a2b4f76ec5a954.zip
-bump name to 97
Diffstat (limited to 'src/namestore/plugin_namestore_postgres.c')
-rw-r--r--src/namestore/plugin_namestore_postgres.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/namestore/plugin_namestore_postgres.c b/src/namestore/plugin_namestore_postgres.c
index 92e3a8d8a..fe4280a3c 100644
--- a/src/namestore/plugin_namestore_postgres.c
+++ b/src/namestore/plugin_namestore_postgres.c
@@ -80,11 +80,11 @@ create_indices (PGconn * dbh)
80{ 80{
81 /* create indices */ 81 /* create indices */
82 if ( (GNUNET_OK != 82 if ( (GNUNET_OK !=
83 GNUNET_POSTGRES_exec (dbh, "CREATE INDEX ir_zone_name_rv ON ns091records (zone_hash,record_name_hash,rvalue)")) || 83 GNUNET_POSTGRES_exec (dbh, "CREATE INDEX ir_query_hash ON ns096blocks (query,expiration_time)")) ||
84 (GNUNET_OK != 84 (GNUNET_OK !=
85 GNUNET_POSTGRES_exec (dbh, "CREATE INDEX ir_zone_delegation ON ns091records (zone_hash,zone_delegation)")) || 85 GNUNET_POSTGRES_exec (dbh, "CREATE INDEX is_block_expiration ON ns096blocks (expiration_time)")) ||
86 (GNUNET_OK != 86 (GNUNET_OK !=
87 GNUNET_POSTGRES_exec (dbh, "CREATE INDEX ir_zone_rv ON ns091records (zone_hash,rvalue)")) || 87 GNUNET_POSTGRES_exec (dbh, "CREATE INDEX is_pkey_reverse ON ns097records (zone_private_key,pkey)")) ||
88 (GNUNET_OK != 88 (GNUNET_OK !=
89 GNUNET_POSTGRES_exec (dbh, "CREATE INDEX ir_zone ON ns091records (zone_hash)")) || 89 GNUNET_POSTGRES_exec (dbh, "CREATE INDEX ir_zone ON ns091records (zone_hash)")) ||
90 (GNUNET_OK != 90 (GNUNET_OK !=
@@ -617,7 +617,7 @@ namestore_postgres_delete_zone (void *cls,
617 GNUNET_POSTGRES_check_result (plugin->dbh, ret, PGRES_COMMAND_OK, "PQexecPrepared", "delete_zone")) 617 GNUNET_POSTGRES_check_result (plugin->dbh, ret, PGRES_COMMAND_OK, "PQexecPrepared", "delete_zone"))
618 { 618 {
619 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 619 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
620 "Deleting zone failed!\n"); 620 "Deleting zone failed!\n");
621 return; 621 return;
622 } 622 }
623 PQclear (ret); 623 PQclear (ret);