mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-23 06:22:03 +08:00
15 lines
228 B
SQL
15 lines
228 B
SQL
\set ON_ERROR_STOP 1
|
|
|
|
\o /dev/null
|
|
\ir include/insert_two_partitions.sql
|
|
|
|
\o
|
|
\set ECHO ALL
|
|
|
|
SELECT * FROM "testNs";
|
|
|
|
DELETE FROM "testNs" WHERE series_0 = 1.5;
|
|
DELETE FROM "testNs" WHERE series_0 = 100;
|
|
SELECT * FROM "testNs";
|
|
|