commit eba6a20cd4216117802d547e361938df7a2b021d
parent 3c11c810fb8c20ac583a55e3e22bf0132b553dee
Author: Sebastian <sebasjm@taler-systems.com>
Date: Mon, 9 Mar 2026 14:18:12 -0300
fix missing include for uri_escape
Diffstat:
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/backenddb/pg_uri_excape.sql b/src/backenddb/pg_uri_excape.sql
@@ -13,7 +13,7 @@
-- 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/>
--
-DROP FUNCTION uri_escape;
+DROP FUNCTION IF EXISTS uri_escape;
CREATE FUNCTION uri_escape(input TEXT)
RETURNS TEXT
LANGUAGE sql
diff --git a/src/backenddb/procedures.sql.in b/src/backenddb/procedures.sql.in
@@ -37,6 +37,7 @@ SET search_path TO merchant;
#include "pg_insert_transfer.sql"
#include "pg_insert_deposit_confirmation.sql"
#include "pg_base32_crockford.sql"
+#include "pg_uri_excape.sql"
DROP PROCEDURE IF EXISTS merchant_do_gc;
CREATE PROCEDURE merchant_do_gc(in_now INT8)