From 6b8ab6fe190e9d8f42242ff1f57be8c28e9ca066 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 27 Mar 2023 04:01:47 +0900 Subject: Delete insert/delete functions. --- verify/insert_item.sql | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 verify/insert_item.sql (limited to 'verify/insert_item.sql') diff --git a/verify/insert_item.sql b/verify/insert_item.sql deleted file mode 100644 index f1ce212..0000000 --- a/verify/insert_item.sql +++ /dev/null @@ -1,31 +0,0 @@ --- Verify kakeibo:insert_item on pg - -BEGIN; - -SELECT has_function_privilege('kakeibo.insert_item(INTEGER, TEXT, TEXT, INTEGER, TEXT)', 'EXECUTE'); - -SET search_path = kakeibo; - -DO $$ - DECLARE - v_transaction_id INTEGER; - v_item_id INTEGER; - BEGIN - SELECT insert_transaction(0, '2023-03-15', 'テスト') INTO v_transaction_id; - SELECT insert_item(v_transaction_id, 'カテ', 'サブカテ', 298, 'メモ') INTO v_item_id; - - PERFORM * - FROM items - WHERE id = v_item_id - AND transaction_id = v_transaction_id - AND category = 'カテ' - AND subcategory = 'サブカテ' - AND amount = 298 - AND note = 'メモ'; - IF NOT FOUND THEN - RAISE EXCEPTION 'Inserted data is not found.'; - END IF; - END -$$; - -ROLLBACK; -- cgit v1.2.3