aboutsummaryrefslogtreecommitdiff
path: root/src/auditordb/auditor-0002.sql.in
blob: 9d76eb3076f5e15b62375a1d487c51559bcb7a81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
--
-- This file is part of TALER
-- Copyright (C) 2014--2023 Taler Systems SA
--
-- TALER is free software; you can redistribute it and/or modify it under the
-- terms of the GNU General Public License as published by the Free Software
-- Foundation; either version 3, or (at your option) any later version.
--
-- TALER is distributed in the hope that it will be useful, but WITHOUT ANY
-- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-- A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License along with
-- TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
--

BEGIN;

SELECT _v.register_patch('auditor-0002', NULL, NULL);

SET search_path TO auditor;

DO $$ BEGIN
    CREATE TYPE taler_amount
      AS
      (val INT8
      ,frac INT4
      );
    COMMENT ON TYPE taler_amount
      IS 'Stores an amount, fraction is in units of 1/100000000 of the base value';
EXCEPTION
    WHEN duplicate_object THEN null;
END $$;

#include "0002-auditor_amount_arithmetic_inconsistency.sql"
#include "0002-auditor_bad_sig_losses.sql"
#include "0002-auditor_balances.sql"
#include "0002-auditor_closure_lags.sql"
#include "0002-auditor_coin_inconsistency.sql"
#include "0002-auditor_denomination_key_validity_withdraw_inconsistency.sql"
#include "0002-auditor_denomination_pending.sql"
#include "0002-auditor_denominations_without_sigs.sql"
#include "0002-auditor_deposit_confirmations.sql"
#include "0002-auditor_emergency.sql"
#include "0002-auditor_emergency_by_count.sql"
#include "0002-auditor_exchange_signkeys.sql"
#include "0002-auditor_fee_time_inconsistency.sql"
#include "0002-auditor_historic_denomination_revenue.sql"
#include "0002-auditor_historic_reserve_summary.sql"
#include "0002-auditor_misattribution_in_inconsistency.sql"
#include "0002-auditor_progress.sql"
#include "0002-auditor_purse_not_closed_inconsistencies.sql"
#include "0002-auditor_purses.sql"
#include "0002-auditor_refreshes_hanging.sql"
#include "0002-auditor_reserve_balance_insufficient_inconsistency.sql"
#include "0002-auditor_reserve_balance_summary_wrong_inconsistency.sql"
#include "0002-auditor_reserve_in_inconsistency.sql"
#include "0002-auditor_reserve_not_closed_inconsistency.sql"
#include "0002-auditor_reserves.sql"
#include "0002-auditor_row_inconsistency.sql"
#include "0002-auditor_row_minor_inconsistencies.sql"
#include "0002-auditor_wire_format_inconsistency.sql"
#include "0002-auditor_wire_out_inconsistency.sql"
#include "0002-auditor_pending_deposits.sql"

COMMIT;