pgr2junit 0.1.1

Utility to process pg_regress output to junit xml format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
diff -u /home/jenkins/agent/workspace/tsd2/tsl/test/expected/partialize_finalize.out /home/jenkins/agent/workspace/tsd2/build/tsl/test/results/partialize_finalize.out
--- /home/jenkins/agent/workspace/tsd2/tsl/test/expected/partialize_finalize.out	2023-04-19 08:20:17.690027695 +0000
+++ /home/jenkins/agent/workspace/tsd2/build/tsl/test/results/partialize_finalize.out	2023-04-19 10:03:26.460312035 +0000
@@ -196,715 +196,4 @@
 \COPY t1 FROM data/partialize_finalize_data.csv WITH CSV HEADER
 --repeat query to verify partial serialization sanitization works for versions PG >= 14
 CREATE TABLE vfinal_dump_res AS SELECT * FROM vfinal;
--- compare results to verify there is no difference
-(SELECT * FROM vfinal_res) EXCEPT (SELECT * FROM vfinal_dump_res);
- a | sumb | minc | maxd | stddevb | stddeve 
----+------+------+------+---------+---------
-(0 rows)
-
---with having clause --
-select a, b ,  _timescaledb_internal.finalize_agg( 'min(text)', 'pg_catalog', 'default', null, partialc, null::text ) minc, _timescaledb_internal.finalize_agg( 'max(timestamp with time zone)', null, null, null, partiald, null::timestamptz ) maxd from t1  where b is not null group by a, b having _timescaledb_internal.finalize_agg( 'max(timestamp with time zone)', null, null, null, partiald, null::timestamptz ) is not null order by a, b;
- a  | b  | minc  |             maxd             
-----+----+-------+------------------------------
-  1 | 10 | hello | Fri Jan 01 09:00:00 2010 PST
-  1 | 20 | abc   | Sat Jan 02 09:00:00 2010 PST
-  1 | 30 | abcd  | Sun Jan 03 09:00:00 2010 PST
-  1 | 50 |       | Fri Jan 01 09:00:00 2010 PST
-  2 | 10 | hello | Fri Jan 01 09:00:00 2010 PST
-  2 | 20 | hello | Fri Jan 01 09:00:00 2010 PST
-  2 | 30 | hello | Fri Jan 01 09:00:00 2010 PST
- 12 | 10 | hello | Sat Jan 02 06:00:00 2010 PST
-(8 rows)
-
---TEST5 test with TOAST data
-drop view vfinal;
-drop table t1;
-drop view v1;
-drop table foo;
-create table foo( a integer, b timestamptz, toastval TEXT);
--- Set storage type to EXTERNAL to prevent PostgreSQL from compressing my
--- easily compressable string and instead store it with TOAST
-ALTER TABLE foo ALTER COLUMN toastval SET STORAGE EXTERNAL;
-SELECT count(*) FROM create_hypertable('foo', 'b');
-NOTICE:  adding not-null constraint to column "b"
- count 
--------
-     1
-(1 row)
-
-INSERT INTO foo VALUES( 1,  '2004-10-19 10:23:54', repeat('this must be over 2k. ', 1100));
-INSERT INTO foo VALUES(1,  '2005-10-19 10:23:54', repeat('I am a tall big giraffe in the zoo.  ', 1100));
-INSERT INTO foo values( 1, '2005-01-01 00:00:00+00', NULL);
-INSERT INTO foo values( 2, '2005-01-01 00:00:00+00', NULL);
-create or replace  view v1(a, partialb, partialtv) as select a, _timescaledb_internal.partialize_agg( max(b) ), _timescaledb_internal.partialize_agg( min(toastval)) from foo group by a;
-EXPLAIN (VERBOSE, COSTS OFF)
-create table t1 as select * from v1;
-                                                                                    QUERY PLAN                                                                                     
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
- Partial HashAggregate
-   Output: _hyper_1_1_chunk.a, _timescaledb_internal.partialize_agg(PARTIAL max(_hyper_1_1_chunk.b)), _timescaledb_internal.partialize_agg(PARTIAL min(_hyper_1_1_chunk.toastval))
-   Group Key: _hyper_1_1_chunk.a
-   ->  Append
-         ->  Seq Scan on _timescaledb_internal._hyper_1_1_chunk
-               Output: _hyper_1_1_chunk.a, _hyper_1_1_chunk.b, _hyper_1_1_chunk.toastval
-         ->  Seq Scan on _timescaledb_internal._hyper_1_2_chunk
-               Output: _hyper_1_2_chunk.a, _hyper_1_2_chunk.b, _hyper_1_2_chunk.toastval
-         ->  Seq Scan on _timescaledb_internal._hyper_1_3_chunk
-               Output: _hyper_1_3_chunk.a, _hyper_1_3_chunk.b, _hyper_1_3_chunk.toastval
-(10 rows)
-
-create table t1 as select * from v1;
-insert into t1 select * from v1;
-select a, _timescaledb_internal.finalize_agg( 'max(timestamp with time zone)', null, null, null, partialb, null::timestamptz ) maxb,
-_timescaledb_internal.finalize_agg( 'min(text)', 'pg_catalog', 'default', null, partialtv, null::text ) = repeat('I am a tall big giraffe in the zoo.  ', 1100) mintv_equal
-from t1 group by a order by a;
- a |             maxb             | mintv_equal 
----+------------------------------+-------------
- 1 | Wed Oct 19 10:23:54 2005 PDT | t
- 2 | Fri Dec 31 16:00:00 2004 PST | 
-(2 rows)
-
---non top-level partials
-with cte as (
-   select a, _timescaledb_internal.partialize_agg(min(toastval)) tp from foo group by a
-)
-select length(tp) from cte;
- length 
---------
-  40700
-       
-(2 rows)
-
-select length(_timescaledb_internal.partialize_agg( min(toastval))) from foo group by a;
- length 
---------
-  40700
-       
-(2 rows)
-
-select length(_timescaledb_internal.partialize_agg(min(a+1))) from foo;
- length 
---------
-      4
-(1 row)
-
-\set ON_ERROR_STOP 0
-select length(_timescaledb_internal.partialize_agg(1+min(a))) from foo;
-ERROR:  the input to partialize must be an aggregate
-select length(_timescaledb_internal.partialize_agg(min(a)+min(a))) from foo;
-ERROR:  the input to partialize must be an aggregate
---non-trivial HAVING clause not allowed with partialize_agg
-select time_bucket('1 hour', b) as b, _timescaledb_internal.partialize_agg(avg(a))
-from foo
-group by 1
-having avg(a) > 3;
-ERROR:  cannot partialize aggregate with HAVING clause
---mixing partialized and non-partialized aggs is not allowed
-select time_bucket('1 hour', b) as b, _timescaledb_internal.partialize_agg(avg(a)), sum(a)
-from foo
-group by 1;
-ERROR:  cannot mix partialized and non-partialized aggregates in the same statement
-\set ON_ERROR_STOP 1
---partializing works with HAVING when the planner can effectively
---reduce it. In this case to a simple filter.
-select time_bucket('1 hour', b) as b, toastval, _timescaledb_internal.partialize_agg(avg(a))
-from foo
-group by b, toastval
-having toastval LIKE 'does not exist';
- b | toastval | partialize_agg 
----+----------+----------------
-(0 rows)
-
---
--- TEST FINALIZEFUNC_EXTRA
---
--- create special aggregate to test ffunc_extra
--- Raise warning with the actual type being passed in
-CREATE OR REPLACE FUNCTION fake_ffunc(a int8, b int, x anyelement)
-RETURNS anyelement AS $$
-BEGIN
- RAISE WARNING 'type %', pg_typeof(x);
- RETURN x;
-END;
-$$
-LANGUAGE plpgsql;
-CREATE OR REPLACE FUNCTION fake_sfunc(a int8, b int, x anyelement)
-RETURNS int8 AS $$
-BEGIN
- RETURN b;
-END; $$
-LANGUAGE plpgsql;
-CREATE AGGREGATE aggregate_to_test_ffunc_extra(int, anyelement) (
-    SFUNC = fake_sfunc,
-    STYPE = int8,
-    COMBINEFUNC = int8pl,
-    FINALFUNC = fake_ffunc,
-    PARALLEL = SAFE,
-    FINALFUNC_EXTRA
-);
-select aggregate_to_test_ffunc_extra(8, 'name'::text);
-WARNING:  type text
- aggregate_to_test_ffunc_extra 
--------------------------------
- 
-(1 row)
-
-\set ON_ERROR_STOP 0
---errors on wrong input type array
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 'name'::text)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, null, part, null::text) from cte;
-ERROR:  cannot pass null input_type with FINALFUNC_EXTRA aggregates
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 'name'::text)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, array[array['a'::name, 'b'::name, 'c'::name]], part, null::text) from cte;
-ERROR:  invalid input type array: expecting slices of size 2
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 'name'::text)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, array[array[]::name[]]::name[], part, null::text) from cte;
-ERROR:  invalid input type array: wrong number of dimensions
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 'name'::text)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, array[]::name[], part, null::text) from cte;
-ERROR:  invalid input type array: wrong number of dimensions
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 'name'::text)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, array[array['public'::name, 'int'::name], array['public', 'text']], part, null::text) from cte;
-ERROR:  invalid input type: public.int
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 'name'::text)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, array[array['public'::name, 'int4'::name], array['public', 'text']], part, null::text) from cte;
-ERROR:  invalid input type: public.int4
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 'name'::text)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, array[array['pg_catalog'::name, 'int4'::name], array['pg_catalog', 'text'], array['pg_catalog', 'text']], part, null::text) from cte;
-ERROR:  invalid number of input types
-select _timescaledb_internal.finalize_agg(NULL::text,NULL::name,NULL::name,NULL::_name,NULL::bytea,a) over () from foo;
-ERROR:  finalize_agg_sfunc called in non-aggregate context
-\set ON_ERROR_STOP 1
---make sure right type in warning and is null returns true
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 'name'::text)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, array[array['pg_catalog'::name, 'int4'::name], array['pg_catalog', 'text']], part, null::text) is null from cte;
-WARNING:  type text
- ?column? 
-----------
- t
-(1 row)
-
-with cte as (SELECT  _timescaledb_internal.partialize_agg(aggregate_to_test_ffunc_extra(8, 1::bigint)) as part)
-select _timescaledb_internal.finalize_agg( 'aggregate_to_test_ffunc_extra(int, anyelement)', null, null, array[array['pg_catalog'::name, 'int4'::name], array['pg_catalog', 'int8']], part, null::text) is null from cte;
-WARNING:  type bigint
- ?column? 
-----------
- t
-(1 row)
-
--- Issue 4922
-CREATE TABLE issue4922 (
-  time  TIMESTAMPTZ NOT NULL,
-  value INTEGER
-);
-SELECT create_hypertable('issue4922', 'time');
-   create_hypertable    
-------------------------
- (2,public,issue4922,t)
-(1 row)
-
--- helper function: integer -> pseudorandom integer [0..100].
-CREATE OR REPLACE FUNCTION mix(x INTEGER) RETURNS INTEGER AS $$ SELECT (((hashint4(x) / (pow(2, 31) - 1) + 1) / 2) * 100)::INTEGER $$ LANGUAGE SQL;
-INSERT INTO issue4922 (time, value)
-SELECT '2022-01-01 00:00:00-03'::timestamptz + interval '1 year' * mix(x), mix(x)
-FROM generate_series(1, 100000) x(x);
-SET force_parallel_mode = 'on';
-SET parallel_setup_cost = 0;
--- Materialize partials from execution of parallel query plan
-EXPLAIN (VERBOSE, COSTS OFF)
-  SELECT
-    _timescaledb_internal.partialize_agg(sum(value)) AS partial_sum,
-    _timescaledb_internal.partialize_agg(avg(value)) AS partial_avg,
-    _timescaledb_internal.partialize_agg(min(value)) AS partial_min,
-    _timescaledb_internal.partialize_agg(max(value)) AS partial_max,
-    _timescaledb_internal.partialize_agg(count(*)) AS partial_count
-  FROM public.issue4922;
-                                                                                                                                                                                  QUERY PLAN                                                                                                                                                                                  
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
- Partial Aggregate
-   Output: _timescaledb_internal.partialize_agg(PARTIAL sum(_hyper_2_4_chunk.value)), _timescaledb_internal.partialize_agg(PARTIAL avg(_hyper_2_4_chunk.value)), _timescaledb_internal.partialize_agg(PARTIAL min(_hyper_2_4_chunk.value)), _timescaledb_internal.partialize_agg(PARTIAL max(_hyper_2_4_chunk.value)), _timescaledb_internal.partialize_agg(PARTIAL count(*))
-   ->  Gather
-         Output: (PARTIAL sum(_hyper_2_4_chunk.value)), (PARTIAL avg(_hyper_2_4_chunk.value)), (PARTIAL min(_hyper_2_4_chunk.value)), (PARTIAL max(_hyper_2_4_chunk.value)), (PARTIAL count(*))
-         Workers Planned: 2
-         ->  Partial Aggregate
-               Output: PARTIAL sum(_hyper_2_4_chunk.value), PARTIAL avg(_hyper_2_4_chunk.value), PARTIAL min(_hyper_2_4_chunk.value), PARTIAL max(_hyper_2_4_chunk.value), PARTIAL count(*)
-               ->  Parallel Append
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_4_chunk
-                           Output: _hyper_2_4_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_5_chunk
-                           Output: _hyper_2_5_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_6_chunk
-                           Output: _hyper_2_6_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_7_chunk
-                           Output: _hyper_2_7_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_8_chunk
-                           Output: _hyper_2_8_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_9_chunk
-                           Output: _hyper_2_9_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_10_chunk
-                           Output: _hyper_2_10_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_11_chunk
-                           Output: _hyper_2_11_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_12_chunk
-                           Output: _hyper_2_12_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_13_chunk
-                           Output: _hyper_2_13_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_14_chunk
-                           Output: _hyper_2_14_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_15_chunk
-                           Output: _hyper_2_15_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_16_chunk
-                           Output: _hyper_2_16_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_17_chunk
-                           Output: _hyper_2_17_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_18_chunk
-                           Output: _hyper_2_18_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_19_chunk
-                           Output: _hyper_2_19_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_20_chunk
-                           Output: _hyper_2_20_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_21_chunk
-                           Output: _hyper_2_21_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_22_chunk
-                           Output: _hyper_2_22_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_23_chunk
-                           Output: _hyper_2_23_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_24_chunk
-                           Output: _hyper_2_24_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_25_chunk
-                           Output: _hyper_2_25_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_26_chunk
-                           Output: _hyper_2_26_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_27_chunk
-                           Output: _hyper_2_27_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_28_chunk
-                           Output: _hyper_2_28_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_29_chunk
-                           Output: _hyper_2_29_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_30_chunk
-                           Output: _hyper_2_30_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_31_chunk
-                           Output: _hyper_2_31_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_32_chunk
-                           Output: _hyper_2_32_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_33_chunk
-                           Output: _hyper_2_33_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_34_chunk
-                           Output: _hyper_2_34_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_35_chunk
-                           Output: _hyper_2_35_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_36_chunk
-                           Output: _hyper_2_36_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_37_chunk
-                           Output: _hyper_2_37_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_38_chunk
-                           Output: _hyper_2_38_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_39_chunk
-                           Output: _hyper_2_39_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_40_chunk
-                           Output: _hyper_2_40_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_41_chunk
-                           Output: _hyper_2_41_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_42_chunk
-                           Output: _hyper_2_42_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_43_chunk
-                           Output: _hyper_2_43_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_44_chunk
-                           Output: _hyper_2_44_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_45_chunk
-                           Output: _hyper_2_45_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_46_chunk
-                           Output: _hyper_2_46_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_47_chunk
-                           Output: _hyper_2_47_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_48_chunk
-                           Output: _hyper_2_48_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_49_chunk
-                           Output: _hyper_2_49_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_50_chunk
-                           Output: _hyper_2_50_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_51_chunk
-                           Output: _hyper_2_51_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_52_chunk
-                           Output: _hyper_2_52_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_53_chunk
-                           Output: _hyper_2_53_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_54_chunk
-                           Output: _hyper_2_54_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_55_chunk
-                           Output: _hyper_2_55_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_56_chunk
-                           Output: _hyper_2_56_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_57_chunk
-                           Output: _hyper_2_57_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_58_chunk
-                           Output: _hyper_2_58_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_59_chunk
-                           Output: _hyper_2_59_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_60_chunk
-                           Output: _hyper_2_60_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_61_chunk
-                           Output: _hyper_2_61_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_62_chunk
-                           Output: _hyper_2_62_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_63_chunk
-                           Output: _hyper_2_63_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_64_chunk
-                           Output: _hyper_2_64_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_65_chunk
-                           Output: _hyper_2_65_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_66_chunk
-                           Output: _hyper_2_66_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_67_chunk
-                           Output: _hyper_2_67_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_68_chunk
-                           Output: _hyper_2_68_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_69_chunk
-                           Output: _hyper_2_69_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_70_chunk
-                           Output: _hyper_2_70_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_71_chunk
-                           Output: _hyper_2_71_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_72_chunk
-                           Output: _hyper_2_72_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_73_chunk
-                           Output: _hyper_2_73_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_74_chunk
-                           Output: _hyper_2_74_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_75_chunk
-                           Output: _hyper_2_75_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_76_chunk
-                           Output: _hyper_2_76_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_77_chunk
-                           Output: _hyper_2_77_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_78_chunk
-                           Output: _hyper_2_78_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_79_chunk
-                           Output: _hyper_2_79_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_80_chunk
-                           Output: _hyper_2_80_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_81_chunk
-                           Output: _hyper_2_81_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_82_chunk
-                           Output: _hyper_2_82_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_83_chunk
-                           Output: _hyper_2_83_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_84_chunk
-                           Output: _hyper_2_84_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_85_chunk
-                           Output: _hyper_2_85_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_86_chunk
-                           Output: _hyper_2_86_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_87_chunk
-                           Output: _hyper_2_87_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_88_chunk
-                           Output: _hyper_2_88_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_89_chunk
-                           Output: _hyper_2_89_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_90_chunk
-                           Output: _hyper_2_90_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_91_chunk
-                           Output: _hyper_2_91_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_92_chunk
-                           Output: _hyper_2_92_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_93_chunk
-                           Output: _hyper_2_93_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_94_chunk
-                           Output: _hyper_2_94_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_95_chunk
-                           Output: _hyper_2_95_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_96_chunk
-                           Output: _hyper_2_96_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_97_chunk
-                           Output: _hyper_2_97_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_98_chunk
-                           Output: _hyper_2_98_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_99_chunk
-                           Output: _hyper_2_99_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_100_chunk
-                           Output: _hyper_2_100_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_101_chunk
-                           Output: _hyper_2_101_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_102_chunk
-                           Output: _hyper_2_102_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_103_chunk
-                           Output: _hyper_2_103_chunk.value
-                     ->  Parallel Seq Scan on _timescaledb_internal._hyper_2_104_chunk
-                           Output: _hyper_2_104_chunk.value
-(210 rows)
-
-CREATE MATERIALIZED VIEW issue4922_partials_parallel AS
-  SELECT
-    _timescaledb_internal.partialize_agg(sum(value)) AS partial_sum,
-    _timescaledb_internal.partialize_agg(avg(value)) AS partial_avg,
-    _timescaledb_internal.partialize_agg(min(value)) AS partial_min,
-    _timescaledb_internal.partialize_agg(max(value)) AS partial_max,
-    _timescaledb_internal.partialize_agg(count(*)) AS partial_count
-  FROM public.issue4922;
--- Materialize partials from execution of non-parallel query plan
-SET max_parallel_workers_per_gather = 0;
-EXPLAIN (VERBOSE, COSTS OFF)
-  SELECT
-    _timescaledb_internal.partialize_agg(sum(value)) AS partial_sum,
-    _timescaledb_internal.partialize_agg(avg(value)) AS partial_avg,
-    _timescaledb_internal.partialize_agg(min(value)) AS partial_min,
-    _timescaledb_internal.partialize_agg(max(value)) AS partial_max,
-    _timescaledb_internal.partialize_agg(count(*)) AS partial_count
-  FROM public.issue4922;
-                                                                                                                                                                                  QUERY PLAN                                                                                                                                                                                  
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
- Partial Aggregate
-   Output: _timescaledb_internal.partialize_agg(PARTIAL sum(_hyper_2_4_chunk.value)), _timescaledb_internal.partialize_agg(PARTIAL avg(_hyper_2_4_chunk.value)), _timescaledb_internal.partialize_agg(PARTIAL min(_hyper_2_4_chunk.value)), _timescaledb_internal.partialize_agg(PARTIAL max(_hyper_2_4_chunk.value)), _timescaledb_internal.partialize_agg(PARTIAL count(*))
-   ->  Append
-         ->  Seq Scan on _timescaledb_internal._hyper_2_4_chunk
-               Output: _hyper_2_4_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_5_chunk
-               Output: _hyper_2_5_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_6_chunk
-               Output: _hyper_2_6_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_7_chunk
-               Output: _hyper_2_7_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_8_chunk
-               Output: _hyper_2_8_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_9_chunk
-               Output: _hyper_2_9_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_10_chunk
-               Output: _hyper_2_10_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_11_chunk
-               Output: _hyper_2_11_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_12_chunk
-               Output: _hyper_2_12_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_13_chunk
-               Output: _hyper_2_13_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_14_chunk
-               Output: _hyper_2_14_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_15_chunk
-               Output: _hyper_2_15_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_16_chunk
-               Output: _hyper_2_16_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_17_chunk
-               Output: _hyper_2_17_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_18_chunk
-               Output: _hyper_2_18_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_19_chunk
-               Output: _hyper_2_19_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_20_chunk
-               Output: _hyper_2_20_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_21_chunk
-               Output: _hyper_2_21_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_22_chunk
-               Output: _hyper_2_22_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_23_chunk
-               Output: _hyper_2_23_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_24_chunk
-               Output: _hyper_2_24_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_25_chunk
-               Output: _hyper_2_25_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_26_chunk
-               Output: _hyper_2_26_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_27_chunk
-               Output: _hyper_2_27_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_28_chunk
-               Output: _hyper_2_28_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_29_chunk
-               Output: _hyper_2_29_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_30_chunk
-               Output: _hyper_2_30_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_31_chunk
-               Output: _hyper_2_31_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_32_chunk
-               Output: _hyper_2_32_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_33_chunk
-               Output: _hyper_2_33_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_34_chunk
-               Output: _hyper_2_34_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_35_chunk
-               Output: _hyper_2_35_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_36_chunk
-               Output: _hyper_2_36_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_37_chunk
-               Output: _hyper_2_37_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_38_chunk
-               Output: _hyper_2_38_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_39_chunk
-               Output: _hyper_2_39_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_40_chunk
-               Output: _hyper_2_40_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_41_chunk
-               Output: _hyper_2_41_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_42_chunk
-               Output: _hyper_2_42_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_43_chunk
-               Output: _hyper_2_43_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_44_chunk
-               Output: _hyper_2_44_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_45_chunk
-               Output: _hyper_2_45_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_46_chunk
-               Output: _hyper_2_46_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_47_chunk
-               Output: _hyper_2_47_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_48_chunk
-               Output: _hyper_2_48_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_49_chunk
-               Output: _hyper_2_49_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_50_chunk
-               Output: _hyper_2_50_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_51_chunk
-               Output: _hyper_2_51_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_52_chunk
-               Output: _hyper_2_52_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_53_chunk
-               Output: _hyper_2_53_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_54_chunk
-               Output: _hyper_2_54_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_55_chunk
-               Output: _hyper_2_55_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_56_chunk
-               Output: _hyper_2_56_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_57_chunk
-               Output: _hyper_2_57_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_58_chunk
-               Output: _hyper_2_58_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_59_chunk
-               Output: _hyper_2_59_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_60_chunk
-               Output: _hyper_2_60_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_61_chunk
-               Output: _hyper_2_61_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_62_chunk
-               Output: _hyper_2_62_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_63_chunk
-               Output: _hyper_2_63_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_64_chunk
-               Output: _hyper_2_64_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_65_chunk
-               Output: _hyper_2_65_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_66_chunk
-               Output: _hyper_2_66_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_67_chunk
-               Output: _hyper_2_67_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_68_chunk
-               Output: _hyper_2_68_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_69_chunk
-               Output: _hyper_2_69_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_70_chunk
-               Output: _hyper_2_70_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_71_chunk
-               Output: _hyper_2_71_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_72_chunk
-               Output: _hyper_2_72_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_73_chunk
-               Output: _hyper_2_73_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_74_chunk
-               Output: _hyper_2_74_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_75_chunk
-               Output: _hyper_2_75_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_76_chunk
-               Output: _hyper_2_76_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_77_chunk
-               Output: _hyper_2_77_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_78_chunk
-               Output: _hyper_2_78_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_79_chunk
-               Output: _hyper_2_79_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_80_chunk
-               Output: _hyper_2_80_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_81_chunk
-               Output: _hyper_2_81_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_82_chunk
-               Output: _hyper_2_82_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_83_chunk
-               Output: _hyper_2_83_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_84_chunk
-               Output: _hyper_2_84_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_85_chunk
-               Output: _hyper_2_85_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_86_chunk
-               Output: _hyper_2_86_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_87_chunk
-               Output: _hyper_2_87_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_88_chunk
-               Output: _hyper_2_88_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_89_chunk
-               Output: _hyper_2_89_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_90_chunk
-               Output: _hyper_2_90_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_91_chunk
-               Output: _hyper_2_91_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_92_chunk
-               Output: _hyper_2_92_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_93_chunk
-               Output: _hyper_2_93_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_94_chunk
-               Output: _hyper_2_94_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_95_chunk
-               Output: _hyper_2_95_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_96_chunk
-               Output: _hyper_2_96_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_97_chunk
-               Output: _hyper_2_97_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_98_chunk
-               Output: _hyper_2_98_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_99_chunk
-               Output: _hyper_2_99_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_100_chunk
-               Output: _hyper_2_100_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_101_chunk
-               Output: _hyper_2_101_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_102_chunk
-               Output: _hyper_2_102_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_103_chunk
-               Output: _hyper_2_103_chunk.value
-         ->  Seq Scan on _timescaledb_internal._hyper_2_104_chunk
-               Output: _hyper_2_104_chunk.value
-(205 rows)
-
-CREATE MATERIALIZED VIEW issue4922_partials_non_parallel AS
-  SELECT
-    _timescaledb_internal.partialize_agg(sum(value)) AS partial_sum,
-    _timescaledb_internal.partialize_agg(avg(value)) AS partial_avg,
-    _timescaledb_internal.partialize_agg(min(value)) AS partial_min,
-    _timescaledb_internal.partialize_agg(max(value)) AS partial_max,
-    _timescaledb_internal.partialize_agg(count(*)) AS partial_count
-  FROM public.issue4922;
-RESET max_parallel_workers_per_gather;
--- partials should be the same in both parallel and non-parallel execution
-SELECT * FROM issue4922_partials_parallel;
-    partial_sum     |                                        partial_avg                                         | partial_min | partial_max |   partial_count    
---------------------+--------------------------------------------------------------------------------------------+-------------+-------------+--------------------
- \x00000000004c4fa9 | \x00000001000000000000001400000002000000010000000800000000000186a00000000800000000004c4fa9 | \x00000000  | \x00000064  | \x00000000000186a0
-(1 row)
-
-SELECT * FROM issue4922_partials_non_parallel;
-    partial_sum     |                                        partial_avg                                         | partial_min | partial_max |   partial_count    
---------------------+--------------------------------------------------------------------------------------------+-------------+-------------+--------------------
- \x00000000004c4fa9 | \x00000001000000000000001400000002000000010000000800000000000186a00000000800000000004c4fa9 | \x00000000  | \x00000064  | \x00000000000186a0
-(1 row)
-
--- Compare results from partial and non-partial query execution
-SELECT
-  sum(value),
-  avg(value),
-  min(value),
-  max(value),
-  count(*)
-FROM issue4922;
-   sum   |         avg         | min | max | count  
----------+---------------------+-----+-----+--------
- 5001129 | 50.0112900000000000 |   0 | 100 | 100000
-(1 row)
-
--- The results should be the EQUAL TO the previous query
-SELECT
-  _timescaledb_internal.finalize_agg('pg_catalog.sum(integer)'::text, NULL::name, NULL::name, '{{pg_catalog,int4}}'::name[], partial_sum, NULL::bigint) AS sum,
-  _timescaledb_internal.finalize_agg('pg_catalog.avg(integer)'::text, NULL::name, NULL::name, '{{pg_catalog,int4}}'::name[], partial_avg, NULL::numeric) AS avg,
-  _timescaledb_internal.finalize_agg('pg_catalog.min(integer)'::text, NULL::name, NULL::name, '{{pg_catalog,int4}}'::name[], partial_min, NULL::integer) AS min,
-  _timescaledb_internal.finalize_agg('pg_catalog.max(integer)'::text, NULL::name, NULL::name, '{{pg_catalog,int4}}'::name[], partial_max, NULL::integer) AS max,
-  _timescaledb_internal.finalize_agg('pg_catalog.count()'::text, NULL::name, NULL::name, '{}'::name[], partial_count, NULL::bigint) AS count
-FROM issue4922_partials_parallel;
-   sum   |         avg         | min | max | count  
----------+---------------------+-----+-----+--------
- 5001129 | 50.0112900000000000 |   0 | 100 | 100000
-(1 row)
-
+ERROR:  insufficient data left in message