@@ -434,35 +434,37 @@ VACUUM FREEZE ANALYZE ht_zero_chunks;
434434--- QUERY PLAN ---
435435 Custom Scan (ModifyHypertable) (actual rows=0.00 loops=1)
436436 -> Update on public.ht_zero_chunks (actual rows=0.00 loops=1)
437- -> Seq Scan on public.ht_zero_chunks (actual rows=0.00 loops=1)
437+ -> Result (actual rows=0.00 loops=1)
438438 Output: 1, ctid
439- Filter: (ht_zero_chunks."time" = 'Wed Jan 15 00:00:00 2020 PST'::timestamp with time zone)
439+ One-Time Filter: false
440440
441441:PREFIX DELETE FROM ht_zero_chunks WHERE time = '2020-01-15';
442442--- QUERY PLAN ---
443443 Custom Scan (ModifyHypertable) (actual rows=0.00 loops=1)
444444 -> Delete on public.ht_zero_chunks (actual rows=0.00 loops=1)
445- -> Seq Scan on public.ht_zero_chunks (actual rows=0.00 loops=1)
445+ -> Result (actual rows=0.00 loops=1)
446446 Output: ctid
447- Filter: (ht_zero_chunks."time" = 'Wed Jan 15 00:00:00 2020 PST'::timestamp with time zone)
447+ One-Time Filter: false
448448
449449:PREFIX UPDATE ht_zero_chunks SET v = 1 RETURNING ctid, xmin, tableoid::regclass, *;
450450--- QUERY PLAN ---
451451 Custom Scan (ModifyHypertable) (actual rows=0.00 loops=1)
452452 Output: ctid, xmin, ((tableoid)::regclass), "time", v
453453 -> Update on public.ht_zero_chunks (actual rows=0.00 loops=1)
454454 Output: ctid, xmin, (tableoid)::regclass, "time", v
455- -> Seq Scan on public.ht_zero_chunks (actual rows=0.00 loops=1)
455+ -> Result (actual rows=0.00 loops=1)
456456 Output: 1, ctid
457+ One-Time Filter: false
457458
458459:PREFIX DELETE FROM ht_zero_chunks RETURNING ctid, xmin, tableoid::regclass, *;
459460--- QUERY PLAN ---
460461 Custom Scan (ModifyHypertable) (actual rows=0.00 loops=1)
461462 Output: ctid, xmin, ((tableoid)::regclass), "time", v
462463 -> Delete on public.ht_zero_chunks (actual rows=0.00 loops=1)
463464 Output: ctid, xmin, (tableoid)::regclass, "time", v
464- -> Seq Scan on public.ht_zero_chunks (actual rows=0.00 loops=1)
465+ -> Result (actual rows=0.00 loops=1)
465466 Output: ctid
467+ One-Time Filter: false
466468
467469DROP TABLE ht_zero_chunks;
468470-- UPDATE/DELETE on a hypertable that becomes a dummy rel due to
0 commit comments