diff options
author | Christian Grothoff <christian@grothoff.org> | 2022-10-13 19:07:25 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2022-10-13 19:07:25 +0200 |
commit | 09310cc66ebbdf083c4b4fa86a368b3ea52c0c16 (patch) | |
tree | b87132659d9d27e5e7d84e4f76b4d836b6689f9d /src/exchangedb/shard-0001-part.sql | |
parent | 4fc77b9dbfee88dff2d366d7dbb2d91797f8b9a0 (diff) |
-implement reserve closure in test
Diffstat (limited to 'src/exchangedb/shard-0001-part.sql')
-rw-r--r-- | src/exchangedb/shard-0001-part.sql | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/exchangedb/shard-0001-part.sql b/src/exchangedb/shard-0001-part.sql index 0f20be63e..a54eb8dc8 100644 --- a/src/exchangedb/shard-0001-part.sql +++ b/src/exchangedb/shard-0001-part.sql @@ -50,9 +50,6 @@ BEGIN PERFORM create_table_reserves_open_deposits(shard_suffix); PERFORM add_constraints_to_reserves_open_deposits_partition(shard_suffix); - PERFORM create_table_reserves_close_requests(shard_suffix); - PERFORM add_constraints_to_reserves_close_requests_partition(shard_suffix); - PERFORM create_table_reserves_out(shard_suffix); PERFORM add_constraints_to_reserves_out_partition(shard_suffix); @@ -119,6 +116,8 @@ BEGIN PERFORM create_table_history_requests(shard_suffix); PERFORM create_table_close_requests(shard_suffix); + PERFORM add_constraints_to_close_requests_partition(shard_suffix); + PERFORM create_table_purse_deposits(shard_suffix); PERFORM add_constraints_to_purse_deposits_partition(shard_suffix); |