summaryrefslogtreecommitdiff
path: root/src/auditordb/plugin_auditordb_postgres.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-01-16 22:31:46 +0100
committerChristian Grothoff <christian@grothoff.org>2020-01-16 22:31:46 +0100
commit0a415262daa93c96a9305df11a6573b49976a8cc (patch)
tree4401ff302a635205129c62f1d18933fc97d098e4 /src/auditordb/plugin_auditordb_postgres.c
parentf1056d1be5c9b258dfe65fe5f9d1175a526429ba (diff)
downloadexchange-0a415262daa93c96a9305df11a6573b49976a8cc.tar.gz
exchange-0a415262daa93c96a9305df11a6573b49976a8cc.tar.bz2
exchange-0a415262daa93c96a9305df11a6573b49976a8cc.zip
add bug note to FIXME
Diffstat (limited to 'src/auditordb/plugin_auditordb_postgres.c')
-rw-r--r--src/auditordb/plugin_auditordb_postgres.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/auditordb/plugin_auditordb_postgres.c b/src/auditordb/plugin_auditordb_postgres.c
index 05a4dbe21..fb2d77312 100644
--- a/src/auditordb/plugin_auditordb_postgres.c
+++ b/src/auditordb/plugin_auditordb_postgres.c
@@ -1147,10 +1147,11 @@ postgres_gc (void *cls)
struct GNUNET_PQ_Context *conn;
enum GNUNET_DB_QueryStatus qs;
struct GNUNET_PQ_PreparedStatement ps[] = {
- /* FIXME: this is obviously not going to be this easy... */
+#if 0
GNUNET_PQ_make_prepare ("gc_auditor",
- "FIXME",
+ "FIXME #4960",
0),
+#endif
GNUNET_PQ_PREPARED_STATEMENT_END
};
@@ -1160,6 +1161,8 @@ postgres_gc (void *cls)
ps);
if (NULL == conn)
return GNUNET_SYSERR;
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "FIXME: Auditor GC not implemented (#4960)\n");
qs = GNUNET_PQ_eval_prepared_non_select (conn,
"gc_auditor",
params_time);