diff --git a/.github/scripts/compareDatabasesUp.sh b/.github/scripts/compareDatabasesUp.sh index cf68514cae..836a7d6cf0 100755 --- a/.github/scripts/compareDatabasesUp.sh +++ b/.github/scripts/compareDatabasesUp.sh @@ -13,6 +13,7 @@ PGCBADEXPLAIN=./comparison/badexplanations.txt \ PGDB=postgres \ PGBINDIR=/usr/bin \ PGCOMITSCHEMAS="('hdb_catalog'),('pg_catalog'),('information_schema')" \ +PGCEXPLANATIONS=./explanations \ ./pgcmp return_code=$? diff --git a/.github/scripts/explanations b/.github/scripts/explanations_down similarity index 100% rename from .github/scripts/explanations rename to .github/scripts/explanations_down diff --git a/.github/scripts/explanations_up b/.github/scripts/explanations_up new file mode 100644 index 0000000000..8ea3f1581b --- /dev/null +++ b/.github/scripts/explanations_up @@ -0,0 +1 @@ +table permissions ui "ui.seen_sources:aerie_test_username" missing in 1st DB AerieAdminHasImplicitPermissions 2 diff --git a/.github/workflows/pgcmp.yml b/.github/workflows/pgcmp.yml index 25aebae79b..d55accf29b 100644 --- a/.github/workflows/pgcmp.yml +++ b/.github/workflows/pgcmp.yml @@ -271,7 +271,7 @@ jobs: - name: Compare Databases id: dbcmp run: | - cp ./.github/scripts/explanations pgcmp + cp ./.github/scripts/explanations_up pgcmp/explanations cp ./.github/scripts/compareDatabasesUp.sh pgcmp/compareDatabases.sh cd pgcmp ./compareDatabases.sh @@ -333,7 +333,7 @@ jobs: - name: Compare Databases id: dbcmp run: | - cp ./.github/scripts/explanations pgcmp + cp ./.github/scripts/explanations_down pgcmp/explanations cp ./.github/scripts/compareDatabasesDown.sh pgcmp/compareDatabases.sh cd pgcmp ./compareDatabases.sh