commit a33f8b41409c90f34677009626f7e8317d344d40
parent 9ffcf1c03c267bc8918a6b38a422f9ba573dc75a
Author: Nic Eigel <nic@eigel.ch>
Date: Wed, 17 Jan 2024 06:28:22 +0100
fixing pipeline
Diffstat:
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/auditordb/Makefile.am b/src/auditordb/Makefile.am
@@ -13,19 +13,18 @@ pkgcfg_DATA = \
sqldir = $(prefix)/share/taler/sql/auditor/
-sqlinputs = \
- 0002-*.sql \
- auditor-0002.sql.in
-# auditor_do_*.sql
-# procedures.sql.in
-
sql_DATA = \
versioning.sql \
auditor-0001.sql \
- auditor-0002.sql \
drop.sql \
restart.sql
+sqlinputs = \
+ 0002-*.sql \
+ auditor-0002.sql.in
+# auditor_do_*.sql
+# procedures.sql.in
+
auditor-0002.sql: auditor-0002.sql.in 0002-*.sql
chmod +w $@ || true
gcc -E -P -undef - < auditor-0002.sql.in 2>/dev/null | sed -e "s/--.*//" | awk 'NF' - >$@
@@ -152,4 +151,4 @@ test_auditordb_postgres_LDADD = \
$(top_srcdir)/src/pq/libtalerpq.la \
$(top_srcdir)/src/util/libtalerutil.la \
-lgnunetutil \
- $(XLIB)
+ $(XLIB)
+\ No newline at end of file
diff --git a/src/auditordb/drop.sql b/src/auditordb/drop.sql
@@ -20,7 +20,7 @@ BEGIN;
-- Drop versioning (auditor-0001.sql)
SELECT _v.unregister_patch('auditor-0001');
-SELECT _v.unregister_patch('auditor-0002');
+-- SELECT _v.unregister_patch('auditor-0002');
DROP SCHEMA auditor CASCADE;
-- And we're out of here...