mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-14 17:43:34 +08:00
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.
27 lines
980 B
SQL
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
|