diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-10-29 11:32:25 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-10-29 11:32:25 +0100 |
commit | 5ddbdfe91b3c4c17d4d624925e93eee243f64a99 (patch) | |
tree | 15f8b879fd310ea4251b7795475620407f1b9cf0 /src | |
parent | a1b01f1195bd5c97d47f02f8cd190d28eb18af7e (diff) |
do NOT drop deposit confirmations on taler-auditor restart (-r)
Diffstat (limited to 'src')
-rw-r--r-- | src/auditordb/plugin_auditordb_postgres.c | 6 | ||||
-rw-r--r-- | src/include/taler_auditordb_plugin.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/auditordb/plugin_auditordb_postgres.c b/src/auditordb/plugin_auditordb_postgres.c index b4bb50079..e5445f2ad 100644 --- a/src/auditordb/plugin_auditordb_postgres.c +++ b/src/auditordb/plugin_auditordb_postgres.c @@ -95,7 +95,7 @@ struct PostgresClosure * Drop all Taler tables. This should only be used by testcases. * * @param cls the `struct PostgresClosure` with the plugin-specific state - * @param drop_exchangelist should we also drop the exchange table? + * @param drop_exchangelist should we also drop the exchange and deposit_confirmations table? * @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure */ static int @@ -124,12 +124,12 @@ postgres_drop_tables (void *cls, GNUNET_PQ_make_execute ( "DROP TABLE IF EXISTS wire_auditor_account_progress;"), GNUNET_PQ_make_execute ( - "DROP TABLE IF EXISTS deposit_confirmations CASCADE;"), - GNUNET_PQ_make_execute ( "DROP TABLE IF EXISTS auditor_historic_reserve_summary CASCADE;"), GNUNET_PQ_EXECUTE_STATEMENT_END }; struct GNUNET_PQ_ExecuteStatement esx[] = { + GNUNET_PQ_make_execute ( + "DROP TABLE IF EXISTS deposit_confirmations CASCADE;"), GNUNET_PQ_make_execute ("DROP TABLE IF EXISTS auditor_exchanges CASCADE;"), GNUNET_PQ_EXECUTE_STATEMENT_END }; diff --git a/src/include/taler_auditordb_plugin.h b/src/include/taler_auditordb_plugin.h index 1ec03e650..6241d8196 100644 --- a/src/include/taler_auditordb_plugin.h +++ b/src/include/taler_auditordb_plugin.h @@ -428,7 +428,7 @@ struct TALER_AUDITORDB_Plugin * Drop the Taler tables. This should only be used in testcases. * * @param cls the @e cls of this struct with the plugin-specific state - * @param drop_exchangelist should we also drop the list of audited exchanges + * @param drop_exchangelist should we also drop the exchange and deposit_confirmations table? * @return #GNUNET_OK upon success; #GNUNET_SYSERR upon failure */ int |