mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-04 12:02:55 +00:00
## Problem The `computed_columns` test assumes that computed columns are always faster than the request itself. However, this is not always the case on Neon, which can lead to flaky results. ## Summary of changes The `computed_columns` test is excluded from the PostGIS test for PostgreSQL v16, accompanied by related patch refactoring.
6 lines
188 B
Bash
Executable File
6 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
cd "$(dirname "$0")"
|
|
patch -p1 <"postgis-common-${PG_VERSION}.patch"
|
|
trap 'echo Cleaning up; patch -R -p1 <postgis-common-${PG_VERSION}.patch' EXIT
|
|
make installcheck-base |