annotate NewTests/PostgresUpgrades/downgrade.sh @ 599:f3475c3e42e5

run integ tests after a PG downgrade
author Alain Mazy <am@osimis.io>
date Thu, 18 Jan 2024 17:46:54 +0100
parents
children 087888659ba3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
599
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
1 #!/bin/bash
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
2
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
3 pushd /scripts
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
4
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
5 # TODO: change pg-transactions by the plugin version number !
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
6 apt-get update && apt-get install -y wget && wget https://orthanc.uclouvain.be/hg/orthanc-databases/raw-file/pg-transactions/PostgreSQL/Plugins/SQL/Downgrades/V6.2ToV6.1.sql
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
7 psql -U postgres -f V6.2ToV6.1.sql
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
8
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
9 # if you want to test a downgrade procedure, you may use this code ...
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
10 # psql -U postgres -f downgrade.sql
f3475c3e42e5 run integ tests after a PG downgrade
Alain Mazy <am@osimis.io>
parents:
diff changeset
11 popd