@@ -192,15 +192,15 @@ USING source s
192192ON t.time = s.time AND t.device_id = s.device_id
193193WHEN MATCHED THEN
194194UPDATE SET v1 = s.filler_1 * 1.23, v2 = (SELECT DISTINCT count(time) from metrics);
195- ERROR: The MERGE command with UPDATE/DELETE merge actions is not support on compressed hypertables
195+ ERROR: The MERGE command with UPDATE/DELETE merge actions is not supported on compressed hypertables
196196-- MERGE DELETE matched rows for compressed hypertable
197197-- should report error as DELETE is not allowed on compressed hypertable
198198MERGE INTO metrics_compressed t
199199 USING source s
200200 ON t.time = s.time AND t.device_id = s.device_id
201201 WHEN MATCHED THEN
202202 DELETE;
203- ERROR: The MERGE command with UPDATE/DELETE merge actions is not support on compressed hypertables
203+ ERROR: The MERGE command with UPDATE/DELETE merge actions is not supported on compressed hypertables
204204-- MERGE UDPATE/INSERT matched rows for compressed hypertable
205205-- should report error as UPDATE is not allowed on compressed hypertable
206206MERGE INTO metrics_compressed t
@@ -211,7 +211,7 @@ UPDATE SET v1 = s.filler_1 * 1.23, v2 = (SELECT DISTINCT count(time) from metric
211211WHEN NOT MATCHED THEN
212212INSERT (time, device_id, v0, v1, v2, v3) VALUES
213213 ('2021-11-01 00:00:05', 2, 1,2,3,4);
214- ERROR: The MERGE command with UPDATE/DELETE merge actions is not support on compressed hypertables
214+ ERROR: The MERGE command with UPDATE/DELETE merge actions is not supported on compressed hypertables
215215-- MERGE DELETE/INSERT matched rows for compressed hypertable
216216-- should report error as DELETE is not allowed on compressed hypertable
217217MERGE INTO metrics_compressed t
@@ -222,23 +222,23 @@ MERGE INTO metrics_compressed t
222222WHEN NOT MATCHED THEN
223223INSERT (time, device_id, v0, v1, v2, v3) VALUES
224224 ('2021-11-01 00:00:05', 2, 1,2,3,4);
225- ERROR: The MERGE command with UPDATE/DELETE merge actions is not support on compressed hypertables
225+ ERROR: The MERGE command with UPDATE/DELETE merge actions is not supported on compressed hypertables
226226-- MERGE UDPATE matched rows for space partitioned compressed hypertable
227227-- should report error as UPDATE is not allowed on compressed hypertable
228228MERGE INTO metrics_space_compressed t
229229USING source s
230230ON t.time = s.time AND t.device_id = s.device_id
231231WHEN MATCHED THEN
232232UPDATE SET v1 = s.filler_1 * 1.23, v2 = (SELECT DISTINCT count(time) from metrics);
233- ERROR: The MERGE command with UPDATE/DELETE merge actions is not support on compressed hypertables
233+ ERROR: The MERGE command with UPDATE/DELETE merge actions is not supported on compressed hypertables
234234-- MERGE DELETE matched rows for space partitioned compressed hypertable
235235-- should report error as DELETE is not allowed on compressed hypertable
236236MERGE INTO metrics_space_compressed t
237237 USING source s
238238 ON t.time = s.time AND t.device_id = s.device_id
239239 WHEN MATCHED THEN
240240 DELETE;
241- ERROR: The MERGE command with UPDATE/DELETE merge actions is not support on compressed hypertables
241+ ERROR: The MERGE command with UPDATE/DELETE merge actions is not supported on compressed hypertables
242242-- MERGE UDPATE/INSERT matched rows for space partitioned compressed hypertable
243243-- should report error as UPDATE is not allowed on compressed hypertable
244244MERGE INTO metrics_space_compressed t
@@ -249,7 +249,7 @@ UPDATE SET v1 = s.filler_1 * 1.23, v2 = (SELECT DISTINCT count(time) from metric
249249WHEN NOT MATCHED THEN
250250INSERT (time, device_id, v0, v1, v2, v3) VALUES
251251 ('2021-11-01 00:00:05', 2, 1,2,3,4);
252- ERROR: The MERGE command with UPDATE/DELETE merge actions is not support on compressed hypertables
252+ ERROR: The MERGE command with UPDATE/DELETE merge actions is not supported on compressed hypertables
253253-- MERGE DELETE/INSERT matched rows for space partitioned compressed hypertable
254254-- should report error as DELETE is not allowed on compressed hypertable
255255MERGE INTO metrics_space_compressed t
@@ -260,5 +260,5 @@ MERGE INTO metrics_space_compressed t
260260WHEN NOT MATCHED THEN
261261INSERT (time, device_id, v0, v1, v2, v3) VALUES
262262 ('2021-11-01 00:00:05', 2, 1,2,3,4);
263- ERROR: The MERGE command with UPDATE/DELETE merge actions is not support on compressed hypertables
263+ ERROR: The MERGE command with UPDATE/DELETE merge actions is not supported on compressed hypertables
264264\set ON_ERROR_STOP 1
0 commit comments