Skip to content

Commit

Permalink
Fix the upgrade test for pg_jwt by adding the database name (#10738)
Browse files Browse the repository at this point in the history
## Problem
The upgrade test for pg_jwt does not work correctly.
## Summary of changes
The script for the upgrade test is modified to use the database
`contrib_regression`.
  • Loading branch information
a-masterov authored Feb 10, 2025
1 parent ac55e2d commit d204d51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose/ext-src/pgjwt-src/test-upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
set -ex
cd "$(dirname ${0})"
patch -p1 <test-upgrade.patch
pg_prove test.sql
pg_prove -d contrib_regression test.sql

1 comment on commit d204d51

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7576 tests run: 7208 passed, 0 failed, 368 skipped (full report)


Flaky tests (1)

Postgres 17

Code coverage* (full report)

  • functions: 33.3% (8587 of 25819 functions)
  • lines: 49.1% (72286 of 147183 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
d204d51 at 2025-02-10T12:14:12.755Z :recycle:

Please sign in to comment.