mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-04 12:02:55 +00:00
## Problem The regression test for the extension online_advisor fails on the staging instance due to a lack of permission to alter the database. ## Summary of changes A script was added to work around this problem. --------- Co-authored-by: Alexander Lakhin <alexander.lakhin@neon.tech>
7 lines
89 B
Bash
Executable File
7 lines
89 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
cd "$(dirname "${0}")"
|
|
if [ -f Makefile ]; then
|
|
make installcheck
|
|
fi
|