mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-17 02:53:51 +08:00
Enable ALTER MATERIALIZED VIEW (timescaledb.compress) This enables compression on the underlying materialized hypertable. The segmentby and orderby columns for compression are based on the GROUP BY clause and time_bucket clause used while setting up the continuous aggregate. timescaledb_information.continuous_aggregate view defn change Add support for compression policy on continuous aggregates Move code from job.c to policy_utils.c Add support functions to check compression policy validity for continuous aggregates.
14 lines
240 B
Bash
Executable File
14 lines
240 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=$(dirname $0)
|
|
|
|
# shellcheck source=scripts/test_functions.inc
|
|
source ${SCRIPT_DIR}/test_functions.inc
|
|
|
|
run_tests -v7 \
|
|
2.5.0-pg14 2.5.1-pg14
|
|
run_tests -v8 \
|
|
2.5.0-pg14 2.5.1-pg14
|