mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-17 02:53:51 +08:00
This changes the license text for SQL files to be identical with the license text for C files.
23 lines
1.3 KiB
MySQL
23 lines
1.3 KiB
MySQL
-- This file and its contents are licensed under the Apache License 2.0.
|
|
-- Please see the included NOTICE for copyright information and
|
|
-- LICENSE-APACHE for a copy of the license.
|
|
|
|
-- Should expect an error when creating a hypertable from a partition
|
|
\set ON_ERROR_STOP 0
|
|
CREATE TABLE partitioned_ht_create(time timestamptz, temp float, device int) PARTITION BY RANGE (time);
|
|
SELECT create_hypertable('partitioned_ht_create', 'time');
|
|
\set ON_ERROR_STOP 1
|
|
|
|
-- Should expect an error when attaching a hypertable to a partition
|
|
\set ON_ERROR_STOP 0
|
|
CREATE TABLE partitioned_attachment_vanilla(time timestamptz, temp float, device int) PARTITION BY RANGE (time);
|
|
CREATE TABLE attachment_hypertable(time timestamptz, temp float, device int);
|
|
SELECT create_hypertable('attachment_hypertable', 'time');
|
|
ALTER TABLE partitioned_attachment_vanilla ATTACH PARTITION attachment_hypertable FOR VALUES FROM ('2016-07-01') TO ('2016-08-01');
|
|
\set ON_ERROR_STOP 1
|
|
|
|
-- Should not expect an error when attaching a normal table to a partition
|
|
CREATE TABLE partitioned_vanilla(time timestamptz, temp float, device int) PARTITION BY RANGE (time);
|
|
CREATE TABLE attachment_vanilla(time timestamptz, temp float, device int);
|
|
ALTER TABLE partitioned_vanilla ATTACH PARTITION attachment_vanilla FOR VALUES FROM ('2016-07-01') TO ('2016-08-01');
|