commit 6e7b178fe2eaed5ded9ebc2193a4e39f03e54d7a
parent c204a2a63b509cfe9310fd3a41fcbbed671b7a85
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 26 Dec 2025 13:07:22 +0100
commenting out problematic stored procedures
Diffstat:
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/backenddb/pg_insert_product.sql b/src/backenddb/pg_insert_product.sql
@@ -14,7 +14,6 @@
-- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
--
-
DROP FUNCTION IF EXISTS merchant_do_insert_product;
CREATE FUNCTION merchant_do_insert_product (
IN in_instance_id TEXT,
diff --git a/src/backenddb/pg_update_money_pot.sql b/src/backenddb/pg_update_money_pot.sql
@@ -64,6 +64,6 @@ EXCEPTION
out_conflict = TRUE;
RETURN;
END;
-
+END;
END $$;
diff --git a/src/backenddb/pg_update_product_group.sql b/src/backenddb/pg_update_product_group.sql
@@ -14,6 +14,7 @@
-- TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
--
+SET search_path TO merchant;
DROP FUNCTION IF EXISTS merchant_do_update_product_group;
CREATE FUNCTION merchant_do_update_product_group (
@@ -49,6 +50,6 @@ EXCEPTION
out_conflict = TRUE;
RETURN;
END;
-
+END;
END $$;
diff --git a/src/backenddb/procedures.sql.in b/src/backenddb/procedures.sql.in
@@ -30,8 +30,8 @@ SET search_path TO merchant;
#include "pg_statistics_helpers.sql"
#include "pg_do_handle_inventory_changes.sql"
#include "pg_do_handle_category_changes.sql"
-#include "pg_do_update_product_group.sql"
-#include "pg_do_update_money_pot.sql"
+--#include "pg_do_update_product_group.sql"
+--#include "pg_do_update_money_pot.sql"
DROP PROCEDURE IF EXISTS merchant_do_gc;
CREATE PROCEDURE merchant_do_gc(in_now INT8)