aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorÖzgür Kesim <oec-taler@kesim.org>2023-08-01 12:29:49 +0200
committerÖzgür Kesim <oec-taler@kesim.org>2023-08-01 12:29:49 +0200
commitaee288438cf7c92c9e6596f7efcdcdefa074820c (patch)
treeb0f0096181589c5ff7b0f401042e0e00c8b26f36 /src
parent49f58007a33e14cb746bfc9a5b8fd098eac1ff26 (diff)
downloadexchange-aee288438cf7c92c9e6596f7efcdcdefa074820c.tar.xz
amount-specific functions, not procedures
Diffstat (limited to 'src')
-rw-r--r--src/exchangedb/exchange_do_amount_specific.sql8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/exchangedb/exchange_do_amount_specific.sql b/src/exchangedb/exchange_do_amount_specific.sql
index 96846cce0..e8f60f40d 100644
--- a/src/exchangedb/exchange_do_amount_specific.sql
+++ b/src/exchangedb/exchange_do_amount_specific.sql
@@ -2,7 +2,7 @@
-- Taler amounts and helper functions
-------------------------------------------------------------
-CREATE OR REPLACE PROCEDURE amount_normalize(
+CREATE OR REPLACE FUNCTION amount_normalize(
IN amount taler_amount
,OUT normalized taler_amount
)
@@ -13,10 +13,10 @@ BEGIN
normalized.frac = amount.frac % 100000000;
END $$;
-COMMENT ON PROCEDURE amount_normalize
+COMMENT ON FUNCTION amount_normalize
IS 'Returns the normalized amount by adding to the .val the value of (.frac / 100000000) and removing the modulus 100000000 from .frac.';
-CREATE OR REPLACE PROCEDURE amount_add(
+CREATE OR REPLACE FUNCTION amount_add(
IN a taler_amount
,IN b taler_amount
,OUT sum taler_amount
@@ -33,7 +33,7 @@ BEGIN
END IF;
END $$;
-COMMENT ON PROCEDURE amount_add
+COMMENT ON FUNCTION amount_add
IS 'Returns the normalized sum of two amounts. It raises an exception when the resulting .val is larger than 2^52';
CREATE OR REPLACE FUNCTION amount_left_minus_right(