mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-03 19:42:55 +00:00
## Problem pg_hintplan test seems to be flaky, sometimes it fails, while usually it passes ## Summary of changes The regression test is changed to filter out the Neon service queries. The expected file is changed as well. ## Checklist before requesting a review - [x] I have performed a self-review of my code. - [ ] If it is a core feature, I have added thorough tests. - [ ] Do we need to implement analytics? if so did you add the relevant metrics to the dashboard? - [ ] If this PR requires public announcement, mark it with /release-notes label and add several sentences in this section. ## Checklist before merging - [ ] Do not forget to reformat commit message to not include the above checklist
15 lines
348 B
Bash
15 lines
348 B
Bash
#!/bin/bash
|
|
set -x
|
|
|
|
cd /ext-src || exit 2
|
|
FAILED=
|
|
LIST=$( (echo -e "${SKIP//","/"\n"}"; ls -d -- *-src) | sort | uniq -u)
|
|
for d in ${LIST}
|
|
do
|
|
[ -d "${d}" ] || continue
|
|
psql -c "select 1" >/dev/null || break
|
|
USE_PGXS=1 make -C "${d}" installcheck || FAILED="${d} ${FAILED}"
|
|
done
|
|
[ -z "${FAILED}" ] && exit 0
|
|
echo "${FAILED}"
|
|
exit 1 |