mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-16 10:33:27 +08:00
This changes the license text for SQL files to be identical with the license text for C files.
13 lines
583 B
SQL
13 lines
583 B
SQL
-- 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.
|
|
|
|
INSERT INTO public."two_Partitions"("timeCustom", device_id, series_0, series_1, series_2) VALUES
|
|
(1257987600000000000, 'dev1', 1.5, 1, 1),
|
|
(1257987600000000000, 'dev1', 1.5, 2, 2),
|
|
(1257894000000000000, 'dev2', 1.5, 1, 3),
|
|
(1257894002000000000, 'dev1', 2.5, 3, 4);
|
|
|
|
INSERT INTO "two_Partitions"("timeCustom", device_id, series_0, series_1, series_2) VALUES
|
|
(1257894000000000000, 'dev2', 1.5, 2, 6);
|