mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-22 05:31:41 +08:00
17 lines
639 B
SQL
17 lines
639 B
SQL
-- Copyright (c) 2016-2018 Timescale, Inc. All Rights Reserved.
|
|
--
|
|
-- This file is licensed under the Apache License,
|
|
-- see LICENSE-APACHE at the top level directory.
|
|
|
|
-- Test that we can verify constraints on regular tables
|
|
CREATE TABLE test_hyper_pk(time TIMESTAMPTZ PRIMARY KEY, temp FLOAT, device INT);
|
|
CREATE TABLE test_pk(device INT PRIMARY KEY);
|
|
CREATE TABLE test_like(LIKE test_pk);
|
|
|
|
SELECT create_hypertable('test_hyper_pk', 'time');
|
|
|
|
\set ON_ERROR_STOP 0
|
|
-- Foreign key constraints that reference hypertables are currently unsupported
|
|
CREATE TABLE test_fk(time TIMESTAMPTZ REFERENCES test_hyper_pk(time));
|
|
\set ON_ERROR_STOP 1
|