timescaledb/tsl/test/sql/cagg_migrate.sql
Fabrízio de Royes Mello 4694c7d798 Refactor CAgg migrate regression tests
When CAggs migration was introduced in commit e34218ce the regression
tests was splited into 6 (six) different test suites.

Simplyfied it grouping tests and reduced to just 2 (two) different test
suites. It save resources and time because each suite test spawn it own
Postgres instance.
2022-12-16 14:39:44 -03:00

27 lines
980 B
SQL

-- This file and its contents are licensed under the Timescale License.
-- Please see the included NOTICE for copyright information and
-- LICENSE-TIMESCALE for a copy of the license.
\set IS_DISTRIBUTED FALSE
\set IS_TIME_DIMENSION FALSE
-- ########################################################
-- ## INTEGER data type tests
-- ########################################################
\set TIME_DIMENSION_DATATYPE INTEGER
\ir include/cagg_migrate_common.sql
-- ########################################################
-- ## TIMESTAMP data type tests
-- ########################################################
\set IS_TIME_DIMENSION TRUE
\set TIME_DIMENSION_DATATYPE TIMESTAMP
\ir include/cagg_migrate_common.sql
-- ########################################################
-- ## TIMESTAMPTZ data type tests
-- ########################################################
\set IS_TIME_DIMENSION TRUE
\set TIME_DIMENSION_DATATYPE TIMESTAMPTZ
\ir include/cagg_migrate_common.sql