gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-sync] branch master updated: improve drop.sql to avoid having to


From: gnunet
Subject: [taler-sync] branch master updated: improve drop.sql to avoid having to update it whenever new SQL revisions are added
Date: Sat, 09 Mar 2024 21:02:44 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository sync.

The following commit(s) were added to refs/heads/master by this push:
     new 1596c55  improve drop.sql to avoid having to update it whenever new 
SQL revisions are added
1596c55 is described below

commit 1596c55105af6e5c35188931d926916fecdf5d44
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sat Mar 9 21:02:40 2024 +0100

    improve drop.sql to avoid having to update it whenever new SQL revisions 
are added
---
 src/syncdb/drop.sql | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/syncdb/drop.sql b/src/syncdb/drop.sql
index 05d11b4..aeaa102 100644
--- a/src/syncdb/drop.sql
+++ b/src/syncdb/drop.sql
@@ -17,8 +17,14 @@
 -- Everything in one big transaction
 BEGIN;
 
--- Unregister patch (0001.sql)
-SELECT _v.unregister_patch('sync-0001');
+WITH xpatches AS (
+  SELECT patch_name
+  FROM _v.patches
+  WHERE starts_with(patch_name,'sync-')
+)
+  SELECT _v.unregister_patch(xpatches.patch_name)
+  FROM xpatches;
+
 DROP SCHEMA sync CASCADE;
 
 -- And we're out of here...

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]