diff options
author | Joseph <Joseph.xu@efrei.net> | 2023-01-06 06:16:52 -0500 |
---|---|---|
committer | Joseph <Joseph.xu@efrei.net> | 2023-01-06 06:16:52 -0500 |
commit | 865f3aca19347bf797b289a1f2ea005282a739a3 (patch) | |
tree | 569a634952c4de44317f0f7c77181f2fb8ffbb70 /src | |
parent | 043c46c59d62abcafef5c37fb97c66995e6b3859 (diff) |
corrections applied to batch 1
Diffstat (limited to 'src')
-rw-r--r-- | src/exchangedb/exchange_do_batch_reserves_in_insert.sql | 4 | ||||
-rw-r--r-- | src/exchangedb/pg_batch2_reserves_in_insert.c | 12 |
2 files changed, 5 insertions, 11 deletions
diff --git a/src/exchangedb/exchange_do_batch_reserves_in_insert.sql b/src/exchangedb/exchange_do_batch_reserves_in_insert.sql index d86bd1ee7..4e0383f6c 100644 --- a/src/exchangedb/exchange_do_batch_reserves_in_insert.sql +++ b/src/exchangedb/exchange_do_batch_reserves_in_insert.sql @@ -92,9 +92,9 @@ transaction_duplicate= TRUE; transaction_duplicate = FALSE; ELSE -- Unhappy... - RAISE EXCEPTION 'Reserve did not exist, but INSERT into reserves_in gave conflict'; +-- RAISE EXCEPTION 'Reserve did not exist, but INSERT into reserves_in gave conflict'; transaction_duplicate = TRUE; - ROLLBACK; +-- ROLLBACK; END IF; RETURN; END $$; diff --git a/src/exchangedb/pg_batch2_reserves_in_insert.c b/src/exchangedb/pg_batch2_reserves_in_insert.c index dd4c10f75..510fde85d 100644 --- a/src/exchangedb/pg_batch2_reserves_in_insert.c +++ b/src/exchangedb/pg_batch2_reserves_in_insert.c @@ -787,6 +787,9 @@ TEH_PG_batch2_reserves_in_insert (void *cls, need_update |= conflicts[i+1]; t_duplicate |= transaction_duplicate[i]; t_duplicate |= transaction_duplicate[i+1]; + results[i] = (t_duplicate) + ? GNUNET_DB_STATUS_SUCCESS_NO_RESULTS + : GNUNET_DB_STATUS_SUCCESS_ONE_RESULT; i += 2; break; case 1: @@ -831,15 +834,6 @@ TEH_PG_batch2_reserves_in_insert (void *cls, { goto exit; } - /* fprintf(stdout, "t : %d", t_duplicate); - if (t_duplicate) - { - GNUNET_break (0); - TEH_PG_rollback (pg); - return GNUNET_DB_STATUS_HARD_ERROR; - } - */ - // begin serializable { if (GNUNET_OK != |