mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-19 20:24:46 +08:00
In order to implement repair tests, changes are made to the `constraint_check` table to simulate a broken dependency, which requires the constraints on that table to be dropped. This means that the repair runs without constraints, and a bug in the update test could potentially not get caught. This commit fixes this by factoring out the repair tests from the update tests and run them as a separate pass. This means that the contraints are not dropped in the update tests and bugs there will be caught. In addition, some bash functions are factored out into a separate file to avoid duplication.
20 lines
505 B
Bash
Executable File
20 lines
505 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(dirname $0)
|
|
|
|
source ${SCRIPT_DIR}/test_functions.inc
|
|
|
|
# There are repair steps between:
|
|
# 1.7.1 and 1.7.2
|
|
# 2.0.0-rc1 and 2.0.0-rc2
|
|
#
|
|
# Please extend this list if repairs are needed between more steps.
|
|
run_tests -r -v6 \
|
|
1.7.0-pg12 1.7.1-pg12 1.7.2-pg12 1.7.3-pg12 1.7.4-pg12 1.7.5-pg12
|
|
run_tests -r -v7 \
|
|
2.0.0-rc1-pg12
|
|
run_tests -v7 \
|
|
2.0.0-rc2-pg12 2.0.0-rc3-pg12 2.0.0-rc4-pg12 2.0.0-pg12 2.0.1-pg12 2.0.2-pg12 2.1.0-pg12
|