forked from timescale/timescaledb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerge_append_partially_compressed.out
More file actions
1671 lines (1596 loc) · 100 KB
/
Copy pathmerge_append_partially_compressed.out
File metadata and controls
1671 lines (1596 loc) · 100 KB
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
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- This file and its contents are licensed under the Timescale License.
-- Please see the included NOTICE for copyright information and
-- LICENSE-TIMESCALE for a copy of the license.
-- this test checks the validity of the produced plans for partially compressed chunks
-- when injecting query_pathkeys on top of the append
-- path that combines the uncompressed and compressed parts of a chunk.
-- We're testing the MergeAppend here which is not compatible with parallel plans.
set max_parallel_workers_per_gather = 0;
set timescaledb.enable_decompression_sorted_merge = off;
\set PREFIX 'EXPLAIN (analyze, buffers off, costs off, timing off, summary off)'
CREATE TABLE ht_metrics_compressed(time timestamptz, device int, value float);
SELECT create_hypertable('ht_metrics_compressed','time');
create_hypertable
------------------------------------
(1,public,ht_metrics_compressed,t)
ALTER TABLE ht_metrics_compressed SET (timescaledb.compress, timescaledb.compress_segmentby='device', timescaledb.compress_orderby='time');
INSERT INTO ht_metrics_compressed
SELECT time, device, device * 0.1
FROM generate_series('2020-01-02 00:00:00+00'::timestamptz,'2020-01-18 00:00:00+00'::timestamptz,'6 hour') time,
generate_series(1,3) device;
SELECT compress_chunk(c) FROM show_chunks('ht_metrics_compressed') c;
compress_chunk
----------------------------------------
_timescaledb_internal._hyper_1_1_chunk
_timescaledb_internal._hyper_1_2_chunk
_timescaledb_internal._hyper_1_3_chunk
-- make them partially compressed
INSERT INTO ht_metrics_compressed
SELECT time, device, device * 0.1
FROM generate_series('2020-01-02 00:00:00+00'::timestamptz,'2020-01-18 00:00:00+00'::timestamptz,'9 hour') time,
generate_series(1,3) device;
VACUUM ANALYZE ht_metrics_compressed;
SELECT tableoid::regclass, min(time), max(time) from ht_metrics_compressed group by 1 order by 2;
tableoid | min | max
----------------------------------------+------------------------------+------------------------------
_timescaledb_internal._hyper_1_1_chunk | Wed Jan 01 16:00:00 2020 PST | Wed Jan 08 10:00:00 2020 PST
_timescaledb_internal._hyper_1_2_chunk | Wed Jan 08 16:00:00 2020 PST | Wed Jan 15 13:00:00 2020 PST
_timescaledb_internal._hyper_1_3_chunk | Wed Jan 15 16:00:00 2020 PST | Fri Jan 17 16:00:00 2020 PST
SELECT show_chunks('ht_metrics_compressed') AS "CHUNK" LIMIT 1 \gset
-- test UNION with partially compressed chunks
:PREFIX SELECT * FROM :CHUNK UNION ALL SELECT * FROM :CHUNK;
--- QUERY PLAN ---
Append (actual rows=282.00 loops=1)
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk _hyper_1_1_chunk_1 (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_4_chunk compress_hyper_2_4_chunk_1 (actual rows=3.00 loops=1)
-> Seq Scan on _hyper_1_1_chunk _hyper_1_1_chunk_1 (actual rows=57.00 loops=1)
:PREFIX SELECT * FROM :CHUNK UNION ALL SELECT * FROM :CHUNK ORDER BY time DESC;
--- QUERY PLAN ---
Sort (actual rows=282.00 loops=1)
Sort Key: _hyper_1_1_chunk."time" DESC
Sort Method: quicksort
-> Append (actual rows=282.00 loops=1)
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk _hyper_1_1_chunk_1 (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_4_chunk compress_hyper_2_4_chunk_1 (actual rows=3.00 loops=1)
-> Seq Scan on _hyper_1_1_chunk _hyper_1_1_chunk_1 (actual rows=57.00 loops=1)
:PREFIX SELECT device FROM :CHUNK UNION ALL SELECT device FROM :CHUNK ORDER BY device DESC;
--- QUERY PLAN ---
Merge Append (actual rows=282.00 loops=1)
Sort Key: _hyper_1_1_chunk.device DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=84.00 loops=1)
-> Sort (actual rows=3.00 loops=1)
Sort Key: compress_hyper_2_4_chunk.device DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=57.00 loops=1)
Sort Key: _hyper_1_1_chunk.device DESC
Sort Method: quicksort
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk _hyper_1_1_chunk_1 (actual rows=84.00 loops=1)
-> Sort (actual rows=3.00 loops=1)
Sort Key: compress_hyper_2_4_chunk_1.device DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_4_chunk compress_hyper_2_4_chunk_1 (actual rows=3.00 loops=1)
-> Sort (actual rows=57.00 loops=1)
Sort Key: _hyper_1_1_chunk_1.device DESC
Sort Method: quicksort
-> Seq Scan on _hyper_1_1_chunk _hyper_1_1_chunk_1 (actual rows=57.00 loops=1)
:PREFIX SELECT value FROM :CHUNK UNION ALL SELECT value FROM :CHUNK ORDER BY value DESC;
--- QUERY PLAN ---
Merge Append (actual rows=282.00 loops=1)
Sort Key: _hyper_1_1_chunk.value DESC
-> Sort (actual rows=84.00 loops=1)
Sort Key: _hyper_1_1_chunk.value DESC
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=57.00 loops=1)
Sort Key: _hyper_1_1_chunk.value DESC
Sort Method: quicksort
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
-> Sort (actual rows=84.00 loops=1)
Sort Key: _hyper_1_1_chunk_1.value DESC
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk _hyper_1_1_chunk_1 (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_4_chunk compress_hyper_2_4_chunk_1 (actual rows=3.00 loops=1)
-> Sort (actual rows=57.00 loops=1)
Sort Key: _hyper_1_1_chunk_1.value DESC
Sort Method: quicksort
-> Seq Scan on _hyper_1_1_chunk _hyper_1_1_chunk_1 (actual rows=57.00 loops=1)
-- chunkAppend eligible queries (from tsbench)
-- sort is not pushed down
:PREFIX SELECT * FROM ht_metrics_compressed ORDER BY time DESC, device LIMIT 1;
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Custom Scan (ChunkAppend) on ht_metrics_compressed (actual rows=1.00 loops=1)
Order: ht_metrics_compressed."time" DESC, ht_metrics_compressed.device
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: ht_metrics_compressed."time" DESC, ht_metrics_compressed.device
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_3_chunk."time" DESC, _hyper_1_3_chunk.device
Sort Method: top-N heapsort
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=27.00 loops=1)
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_3_chunk."time" DESC, _hyper_1_3_chunk.device
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_3_chunk (actual rows=15.00 loops=1)
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time" DESC, ht_metrics_compressed.device
-> Sort (never executed)
Sort Key: _hyper_1_2_chunk."time" DESC, _hyper_1_2_chunk.device
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (never executed)
-> Seq Scan on compress_hyper_2_5_chunk (never executed)
-> Sort (never executed)
Sort Key: _hyper_1_2_chunk."time" DESC, _hyper_1_2_chunk.device
-> Seq Scan on _hyper_1_2_chunk (never executed)
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time" DESC, ht_metrics_compressed.device
-> Sort (never executed)
Sort Key: _hyper_1_1_chunk."time" DESC, _hyper_1_1_chunk.device
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (never executed)
-> Seq Scan on compress_hyper_2_4_chunk (never executed)
-> Sort (never executed)
Sort Key: _hyper_1_1_chunk."time" DESC, _hyper_1_1_chunk.device
-> Seq Scan on _hyper_1_1_chunk (never executed)
:PREFIX SELECT * FROM ht_metrics_compressed ORDER BY time_bucket('1d', time) DESC, device LIMIT 1;
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 1 day'::interval, ht_metrics_compressed."time")) DESC, ht_metrics_compressed.device
-> Sort (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 1 day'::interval, _hyper_1_1_chunk."time")) DESC, _hyper_1_1_chunk.device
Sort Method: top-N heapsort
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 1 day'::interval, _hyper_1_1_chunk."time")) DESC, _hyper_1_1_chunk.device
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 1 day'::interval, _hyper_1_2_chunk."time")) DESC, _hyper_1_2_chunk.device
Sort Method: top-N heapsort
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_5_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 1 day'::interval, _hyper_1_2_chunk."time")) DESC, _hyper_1_2_chunk.device
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_2_chunk (actual rows=57.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 1 day'::interval, _hyper_1_3_chunk."time")) DESC, _hyper_1_3_chunk.device
Sort Method: top-N heapsort
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=27.00 loops=1)
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 1 day'::interval, _hyper_1_3_chunk."time")) DESC, _hyper_1_3_chunk.device
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_3_chunk (actual rows=15.00 loops=1)
:PREFIX SELECT * FROM ht_metrics_compressed ORDER BY time desc limit 10;
--- QUERY PLAN ---
Limit (actual rows=10.00 loops=1)
-> Custom Scan (ChunkAppend) on ht_metrics_compressed (actual rows=10.00 loops=1)
Order: ht_metrics_compressed."time" DESC
-> Merge Append (actual rows=10.00 loops=1)
Sort Key: ht_metrics_compressed."time" DESC
-> Sort (actual rows=7.00 loops=1)
Sort Key: _hyper_1_3_chunk."time" DESC
Sort Method: top-N heapsort
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=27.00 loops=1)
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=3.00 loops=1)
-> Index Scan using _hyper_1_3_chunk_ht_metrics_compressed_time_idx on _hyper_1_3_chunk (actual rows=4.00 loops=1)
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time" DESC
-> Sort (never executed)
Sort Key: _hyper_1_2_chunk."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (never executed)
-> Seq Scan on compress_hyper_2_5_chunk (never executed)
-> Index Scan using _hyper_1_2_chunk_ht_metrics_compressed_time_idx on _hyper_1_2_chunk (never executed)
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time" DESC
-> Sort (never executed)
Sort Key: _hyper_1_1_chunk."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (never executed)
-> Seq Scan on compress_hyper_2_4_chunk (never executed)
-> Index Scan using _hyper_1_1_chunk_ht_metrics_compressed_time_idx on _hyper_1_1_chunk (never executed)
:PREFIX SELECT * FROM ht_metrics_compressed ORDER BY time_bucket('2d',time) DESC LIMIT 1;
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Custom Scan (ChunkAppend) on ht_metrics_compressed (actual rows=1.00 loops=1)
Order: time_bucket('@ 2 days'::interval, ht_metrics_compressed."time") DESC
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 2 days'::interval, ht_metrics_compressed."time")) DESC
-> Sort (actual rows=1.00 loops=1)
Sort Key: (time_bucket('@ 2 days'::interval, _hyper_1_3_chunk."time")) DESC
Sort Method: top-N heapsort
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=27.00 loops=1)
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=3.00 loops=1)
-> Index Scan using _hyper_1_3_chunk_ht_metrics_compressed_time_idx on _hyper_1_3_chunk (actual rows=1.00 loops=1)
-> Merge Append (never executed)
Sort Key: (time_bucket('@ 2 days'::interval, ht_metrics_compressed."time")) DESC
-> Sort (never executed)
Sort Key: (time_bucket('@ 2 days'::interval, _hyper_1_2_chunk."time")) DESC
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (never executed)
-> Seq Scan on compress_hyper_2_5_chunk (never executed)
-> Index Scan using _hyper_1_2_chunk_ht_metrics_compressed_time_idx on _hyper_1_2_chunk (never executed)
-> Merge Append (never executed)
Sort Key: (time_bucket('@ 2 days'::interval, ht_metrics_compressed."time")) DESC
-> Sort (never executed)
Sort Key: (time_bucket('@ 2 days'::interval, _hyper_1_1_chunk."time")) DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (never executed)
-> Seq Scan on compress_hyper_2_4_chunk (never executed)
-> Index Scan using _hyper_1_1_chunk_ht_metrics_compressed_time_idx on _hyper_1_1_chunk (never executed)
:PREFIX SELECT * FROM ht_metrics_compressed WHERE device IN (1,2,3) ORDER BY time DESC LIMIT 1;
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Custom Scan (ChunkAppend) on ht_metrics_compressed (actual rows=1.00 loops=1)
Order: ht_metrics_compressed."time" DESC
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: ht_metrics_compressed."time" DESC
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_3_chunk."time" DESC
Sort Method: top-N heapsort
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=27.00 loops=1)
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=3.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Index Scan using _hyper_1_3_chunk_ht_metrics_compressed_time_idx on _hyper_1_3_chunk (actual rows=1.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time" DESC
-> Sort (never executed)
Sort Key: _hyper_1_2_chunk."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (never executed)
-> Seq Scan on compress_hyper_2_5_chunk (never executed)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Index Scan using _hyper_1_2_chunk_ht_metrics_compressed_time_idx on _hyper_1_2_chunk (never executed)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time" DESC
-> Sort (never executed)
Sort Key: _hyper_1_1_chunk."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (never executed)
-> Seq Scan on compress_hyper_2_4_chunk (never executed)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Index Scan using _hyper_1_1_chunk_ht_metrics_compressed_time_idx on _hyper_1_1_chunk (never executed)
Filter: (device = ANY ('{1,2,3}'::integer[]))
:PREFIX SELECT * FROM ht_metrics_compressed WHERE device IN (1,2,3) ORDER BY time, device DESC LIMIT 1;
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Custom Scan (ChunkAppend) on ht_metrics_compressed (actual rows=1.00 loops=1)
Order: ht_metrics_compressed."time", ht_metrics_compressed.device DESC
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: ht_metrics_compressed."time", ht_metrics_compressed.device DESC
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_1_chunk."time", _hyper_1_1_chunk.device DESC
Sort Method: top-N heapsort
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=84.00 loops=1)
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_1_chunk."time", _hyper_1_1_chunk.device DESC
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time", ht_metrics_compressed.device DESC
-> Sort (never executed)
Sort Key: _hyper_1_2_chunk."time", _hyper_1_2_chunk.device DESC
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (never executed)
-> Seq Scan on compress_hyper_2_5_chunk (never executed)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Sort (never executed)
Sort Key: _hyper_1_2_chunk."time", _hyper_1_2_chunk.device DESC
-> Seq Scan on _hyper_1_2_chunk (never executed)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time", ht_metrics_compressed.device DESC
-> Sort (never executed)
Sort Key: _hyper_1_3_chunk."time", _hyper_1_3_chunk.device DESC
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (never executed)
-> Seq Scan on compress_hyper_2_6_chunk (never executed)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Sort (never executed)
Sort Key: _hyper_1_3_chunk."time", _hyper_1_3_chunk.device DESC
-> Seq Scan on _hyper_1_3_chunk (never executed)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-- index scan, no sort on top
:PREFIX SELECT * FROM ht_metrics_compressed WHERE device = 3 ORDER BY time DESC LIMIT 1; -- index scan, no resorting required
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Custom Scan (ChunkAppend) on ht_metrics_compressed (actual rows=1.00 loops=1)
Order: ht_metrics_compressed."time" DESC
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: ht_metrics_compressed."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_6_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_6_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
-> Index Scan using _hyper_1_3_chunk_ht_metrics_compressed_time_idx on _hyper_1_3_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (never executed)
-> Sort (never executed)
Sort Key: compress_hyper_2_5_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_5_chunk._ts_meta_v2_last_time DESC
-> Seq Scan on compress_hyper_2_5_chunk (never executed)
Filter: (device = 3)
-> Index Scan using _hyper_1_2_chunk_ht_metrics_compressed_time_idx on _hyper_1_2_chunk (never executed)
Filter: (device = 3)
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (never executed)
-> Sort (never executed)
Sort Key: compress_hyper_2_4_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_4_chunk._ts_meta_v2_last_time DESC
-> Seq Scan on compress_hyper_2_4_chunk (never executed)
Filter: (device = 3)
-> Index Scan using _hyper_1_1_chunk_ht_metrics_compressed_time_idx on _hyper_1_1_chunk (never executed)
Filter: (device = 3)
SELECT * FROM ht_metrics_compressed WHERE device = 3 ORDER BY time DESC LIMIT 1;
time | device | value
------------------------------+--------+-------
Fri Jan 17 16:00:00 2020 PST | 3 | 0.3
:PREFIX SELECT * FROM ht_metrics_compressed WHERE device = 3 ORDER BY device, time DESC LIMIT 1; -- this uses the index and does not do sort on top
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: ht_metrics_compressed."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_4_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_4_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
-> Index Scan using _hyper_1_1_chunk_ht_metrics_compressed_time_idx on _hyper_1_1_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_5_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_5_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_5_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
-> Index Scan using _hyper_1_2_chunk_ht_metrics_compressed_time_idx on _hyper_1_2_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_6_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_6_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
-> Index Scan using _hyper_1_3_chunk_ht_metrics_compressed_time_idx on _hyper_1_3_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
SELECT * FROM ht_metrics_compressed WHERE device = 3 ORDER BY device, time DESC LIMIT 1;
time | device | value
------------------------------+--------+-------
Fri Jan 17 16:00:00 2020 PST | 3 | 0.3
:PREFIX SELECT * FROM ht_metrics_compressed WHERE device = 3 ORDER BY time, device DESC LIMIT 1; -- this also uses the index and does not do sort on top
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Custom Scan (ChunkAppend) on ht_metrics_compressed (actual rows=1.00 loops=1)
Order: ht_metrics_compressed."time"
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: ht_metrics_compressed."time"
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_4_chunk._ts_meta_v2_first_time, compress_hyper_2_4_chunk._ts_meta_v2_last_time
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
Rows Removed by Filter: 2
-> Index Scan Backward using _hyper_1_1_chunk_ht_metrics_compressed_time_idx on _hyper_1_1_chunk (actual rows=1.00 loops=1)
Filter: (device = 3)
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time"
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (never executed)
-> Sort (never executed)
Sort Key: compress_hyper_2_5_chunk._ts_meta_v2_first_time, compress_hyper_2_5_chunk._ts_meta_v2_last_time
-> Seq Scan on compress_hyper_2_5_chunk (never executed)
Filter: (device = 3)
-> Index Scan Backward using _hyper_1_2_chunk_ht_metrics_compressed_time_idx on _hyper_1_2_chunk (never executed)
Filter: (device = 3)
-> Merge Append (never executed)
Sort Key: ht_metrics_compressed."time"
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (never executed)
-> Sort (never executed)
Sort Key: compress_hyper_2_6_chunk._ts_meta_v2_first_time, compress_hyper_2_6_chunk._ts_meta_v2_last_time
-> Seq Scan on compress_hyper_2_6_chunk (never executed)
Filter: (device = 3)
-> Index Scan Backward using _hyper_1_3_chunk_ht_metrics_compressed_time_idx on _hyper_1_3_chunk (never executed)
Filter: (device = 3)
SELECT * FROM ht_metrics_compressed WHERE device = 3 ORDER BY time, device DESC LIMIT 1;
time | device | value
------------------------------+--------+-------
Wed Jan 01 16:00:00 2020 PST | 3 | 0.3
-- not eligible for chunkAppend, but eligible for sort pushdown
:PREFIX SELECT * FROM ht_metrics_compressed ORDER BY device, time DESC LIMIT 1; -- with pushdown
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: ht_metrics_compressed.device, ht_metrics_compressed."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_4_chunk.device, compress_hyper_2_4_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_4_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_1_chunk.device, _hyper_1_1_chunk."time" DESC
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_5_chunk.device, compress_hyper_2_5_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_5_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_5_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_2_chunk.device, _hyper_1_2_chunk."time" DESC
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_2_chunk (actual rows=57.00 loops=1)
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_6_chunk.device, compress_hyper_2_6_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_6_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_3_chunk.device, _hyper_1_3_chunk."time" DESC
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_3_chunk (actual rows=15.00 loops=1)
:PREFIX SELECT * FROM ht_metrics_compressed WHERE device IN (1,2,3) ORDER BY device, time DESC LIMIT 1; -- with pushdown
--- QUERY PLAN ---
Limit (actual rows=1.00 loops=1)
-> Merge Append (actual rows=1.00 loops=1)
Sort Key: ht_metrics_compressed.device, ht_metrics_compressed."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_4_chunk.device, compress_hyper_2_4_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_4_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_1_chunk.device, _hyper_1_1_chunk."time" DESC
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Custom Scan (ColumnarScan) on _hyper_1_2_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_5_chunk.device, compress_hyper_2_5_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_5_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_5_chunk (actual rows=3.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_2_chunk.device, _hyper_1_2_chunk."time" DESC
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_2_chunk (actual rows=57.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Custom Scan (ColumnarScan) on _hyper_1_3_chunk (actual rows=1.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_6_chunk.device, compress_hyper_2_6_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_6_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_6_chunk (actual rows=3.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_1_3_chunk.device, _hyper_1_3_chunk."time" DESC
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_3_chunk (actual rows=15.00 loops=1)
Filter: (device = ANY ('{1,2,3}'::integer[]))
-- Test direct ordered select from a single partially compressed chunk
select * from show_chunks('ht_metrics_compressed') chunk order by chunk limit 1 \gset
:PREFIX
SELECT * FROM :chunk ORDER BY device, time LIMIT 5;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: _hyper_1_1_chunk.device, _hyper_1_1_chunk."time"
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_4_chunk.device, compress_hyper_2_4_chunk._ts_meta_v2_first_time, compress_hyper_2_4_chunk._ts_meta_v2_last_time
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=3.00 loops=1)
Sort Key: _hyper_1_1_chunk.device, _hyper_1_1_chunk."time"
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
SELECT * FROM :chunk ORDER BY device, time LIMIT 5;
time | device | value
------------------------------+--------+-------
Wed Jan 01 16:00:00 2020 PST | 1 | 0.1
Wed Jan 01 16:00:00 2020 PST | 1 | 0.1
Wed Jan 01 22:00:00 2020 PST | 1 | 0.1
Thu Jan 02 01:00:00 2020 PST | 1 | 0.1
Thu Jan 02 04:00:00 2020 PST | 1 | 0.1
:PREFIX
SELECT * FROM :chunk ORDER BY device DESC, time DESC LIMIT 5;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: _hyper_1_1_chunk.device DESC, _hyper_1_1_chunk."time" DESC
-> Custom Scan (ColumnarScan) on _hyper_1_1_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: compress_hyper_2_4_chunk.device DESC, compress_hyper_2_4_chunk._ts_meta_v2_first_time DESC, compress_hyper_2_4_chunk._ts_meta_v2_last_time DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_2_4_chunk (actual rows=3.00 loops=1)
-> Sort (actual rows=3.00 loops=1)
Sort Key: _hyper_1_1_chunk.device DESC, _hyper_1_1_chunk."time" DESC
Sort Method: top-N heapsort
-> Seq Scan on _hyper_1_1_chunk (actual rows=57.00 loops=1)
SELECT * FROM :chunk ORDER BY device DESC, time DESC LIMIT 5;
time | device | value
------------------------------+--------+-------
Wed Jan 08 10:00:00 2020 PST | 3 | 0.3
Wed Jan 08 10:00:00 2020 PST | 3 | 0.3
Wed Jan 08 04:00:00 2020 PST | 3 | 0.3
Wed Jan 08 01:00:00 2020 PST | 3 | 0.3
Tue Jan 07 22:00:00 2020 PST | 3 | 0.3
CREATE TABLE test1 (
time timestamptz NOT NULL,
x1 integer,
x2 integer,
x3 integer,
x4 integer,
x5 integer);
SELECT FROM create_hypertable('test1', 'time');
--
ALTER TABLE test1 SET (timescaledb.compress, timescaledb.compress_segmentby='x1, x2, x5', timescaledb.compress_orderby = 'time DESC, x3 ASC, x4 ASC');
INSERT INTO test1 (time, x1, x2, x3, x4, x5) values('2000-01-01 00:00:00-00', 1, 2, 1, 1, 0);
INSERT INTO test1 (time, x1, x2, x3, x4, x5) values('2000-01-01 01:00:00-00', 1, 3, 2, 2, 0);
INSERT INTO test1 (time, x1, x2, x3, x4, x5) values('2000-01-01 02:00:00-00', 2, 1, 3, 3, 0);
INSERT INTO test1 (time, x1, x2, x3, x4, x5) values('2000-01-01 03:00:00-00', 1, 2, 4, 4, 0);
-- Insert some dummy rows to inflate the cost estimates to get it to actually
-- use the MergeAppend. We will filter them out using the "x4 % 11 != 0" which
-- thwarts the normal selectivity estimation.
INSERT INTO test1 select '2000-01-01 04:00:00-00', /* x1 = */ 0, /* x2 = */ 0,
/* x3 = */ 0, /* x4 = */ 11 * (11 + x), 0 from generate_series(1, 10000) x;
SELECT compress_chunk(i) FROM show_chunks('test1') i;
compress_chunk
----------------------------------------
_timescaledb_internal._hyper_3_7_chunk
-- make all the chunks partially compressed
INSERT INTO test1 (time, x1, x2, x3, x4, x5) values('2000-01-01 02:01:00-00', 10, 20, 30, 40 ,50);
ANALYZE test1;
-- tests that require resorting (pushdown below decompressChunk node cannot happen)
-- requires resorting, no pushdown can happen
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time DESC LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time" DESC
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time" DESC
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" DESC
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Index Scan using _hyper_3_7_chunk_test1_time_idx on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
-- requires resorting
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time DESC NULLS FIRST, x3 ASC NULLS LAST LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time" DESC, test1.x3
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time" DESC, test1.x3
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" DESC, _hyper_3_7_chunk.x3
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" DESC, _hyper_3_7_chunk.x3
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
-- all these require resorting, no pushdown can happen
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time DESC NULLS FIRST, x3 ASC NULLS LAST, x4 ASC NULLS LAST LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time" DESC, test1.x3, test1.x4
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time" DESC, test1.x3, test1.x4
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" DESC, _hyper_3_7_chunk.x3, _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" DESC, _hyper_3_7_chunk.x3, _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time DESC NULLS FIRST, x3 ASC NULLS LAST, x4 DESC NULLS FIRST LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time" DESC, test1.x3, test1.x4 DESC
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time" DESC, test1.x3, test1.x4 DESC
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" DESC, _hyper_3_7_chunk.x3, _hyper_3_7_chunk.x4 DESC
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" DESC, _hyper_3_7_chunk.x3, _hyper_3_7_chunk.x4 DESC
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time ASC NULLS LAST LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time"
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time"
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time"
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Index Scan Backward using _hyper_3_7_chunk_test1_time_idx on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time ASC NULLS LAST, x3 DESC NULLS FIRST LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time", test1.x3 DESC
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time", test1.x3 DESC
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3 DESC
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3 DESC
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time ASC NULLS LAST, x3 DESC NULLS FIRST, x4 DESC NULLS FIRST LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time", test1.x3 DESC, test1.x4 DESC
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time", test1.x3 DESC, test1.x4 DESC
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3 DESC, _hyper_3_7_chunk.x4 DESC
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3 DESC, _hyper_3_7_chunk.x4 DESC
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time ASC NULLS FIRST, x3 DESC NULLS LAST, x4 ASC LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time" NULLS FIRST, test1.x3 DESC NULLS LAST, test1.x4
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time" NULLS FIRST, test1.x3 DESC NULLS LAST, test1.x4
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" NULLS FIRST, _hyper_3_7_chunk.x3 DESC NULLS LAST, _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk."time" NULLS FIRST, _hyper_3_7_chunk.x3 DESC NULLS LAST, _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
set enable_hashagg to off; -- different on PG13
:PREFIX
SELECT x1, x2, max(time) FROM (SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY time, x1, x2 LIMIT 10) t
GROUP BY x1, x2, time ORDER BY time limit 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> GroupAggregate (actual rows=5.00 loops=1)
Group Key: test1."time", test1.x1, test1.x2
-> Limit (actual rows=5.00 loops=1)
-> Result (actual rows=5.00 loops=1)
-> Custom Scan (ChunkAppend) on test1 (actual rows=5.00 loops=1)
Order: test1."time", test1.x1, test1.x2
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1."time", test1.x1, test1.x2
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk."time", _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk."time", _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
reset enable_hashagg;
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, x4, time LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1.x4, test1."time"
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk.x4, _hyper_3_7_chunk."time"
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk.x4, _hyper_3_7_chunk."time"
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, time, x4 LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1."time", test1.x4
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, time, x3 LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1."time", test1.x3
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, time, x3, x4 LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1."time", test1.x3, test1.x4
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3, _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3, _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, time, x4 DESC LIMIT 10; -- no pushdown because orderby does not match
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1."time", test1.x4 DESC
-> Sort (actual rows=4.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x4 DESC
Sort Method: quicksort
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x4 DESC
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
-- queries with pushdown
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, time LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1."time"
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Sort (actual rows=13.00 loops=1)
Sort Key: compress_hyper_4_8_chunk.x1, compress_hyper_4_8_chunk.x2, compress_hyper_4_8_chunk.x5, compress_hyper_4_8_chunk._ts_meta_v2_last_time, compress_hyper_4_8_chunk._ts_meta_v2_first_time
Sort Method: quicksort
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time"
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, time DESC, x3 ASC, x4 ASC LIMIT 10; -- pushdown
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1."time" DESC, test1.x3, test1.x4
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Index Scan using compress_hyper_4_8_chunk_x1_x2_x5__ts_meta_v2_last_time__ts_idx on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time" DESC, _hyper_3_7_chunk.x3, _hyper_3_7_chunk.x4
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, time ASC, x3 DESC, x4 DESC LIMIT 10; -- pushdown
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1."time", test1.x3 DESC, test1.x4 DESC
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Sort (actual rows=13.00 loops=1)
Sort Key: compress_hyper_4_8_chunk.x1, compress_hyper_4_8_chunk.x2, compress_hyper_4_8_chunk.x5, compress_hyper_4_8_chunk._ts_meta_v2_last_time, compress_hyper_4_8_chunk._ts_meta_v2_first_time, compress_hyper_4_8_chunk._ts_meta_v2_first_x3 DESC, compress_hyper_4_8_chunk._ts_meta_v2_last_x3 DESC, compress_hyper_4_8_chunk._ts_meta_v2_first_x4 DESC, compress_hyper_4_8_chunk._ts_meta_v2_last_x4 DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3 DESC, _hyper_3_7_chunk.x4 DESC
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
:PREFIX
SELECT * FROM test1 WHERE x4 % 11 != 0 ORDER BY x1, x2, x5, time, x3 DESC LIMIT 10;
--- QUERY PLAN ---
Limit (actual rows=5.00 loops=1)
-> Merge Append (actual rows=5.00 loops=1)
Sort Key: test1.x1, test1.x2, test1.x5, test1."time", test1.x3 DESC
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk (actual rows=4.00 loops=1)
Filter: ((x4 % 11) <> 0)
Rows Removed by Filter: 10000
-> Sort (actual rows=13.00 loops=1)
Sort Key: compress_hyper_4_8_chunk.x1, compress_hyper_4_8_chunk.x2, compress_hyper_4_8_chunk.x5, compress_hyper_4_8_chunk._ts_meta_v2_last_time, compress_hyper_4_8_chunk._ts_meta_v2_first_time, compress_hyper_4_8_chunk._ts_meta_v2_first_x3 DESC, compress_hyper_4_8_chunk._ts_meta_v2_last_x3 DESC
Sort Method: quicksort
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Sort (actual rows=1.00 loops=1)
Sort Key: _hyper_3_7_chunk.x1, _hyper_3_7_chunk.x2, _hyper_3_7_chunk.x5, _hyper_3_7_chunk."time", _hyper_3_7_chunk.x3 DESC
Sort Method: quicksort
-> Seq Scan on _hyper_3_7_chunk (actual rows=1.00 loops=1)
Filter: ((x4 % 11) <> 0)
-- test append with join column in orderby
-- #6975
CREATE TABLE join_table (
x1 integer,
y1 float);
INSERT INTO join_table VALUES (1, 1.0), (2,2.0);
:PREFIX
SELECT * FROM test1 t1 JOIN join_table jt ON t1.x1 = jt.x1
ORDER BY t1.x1, jt.y1;
--- QUERY PLAN ---
Sort (actual rows=4.00 loops=1)
Sort Key: t1.x1, jt.y1
Sort Method: quicksort
-> Hash Join (actual rows=4.00 loops=1)
Hash Cond: (jt.x1 = t1.x1)
-> Seq Scan on join_table jt (actual rows=2.00 loops=1)
-> Hash (actual rows=10005.00 loops=1)
-> Append (actual rows=10005.00 loops=1)
-> Custom Scan (ColumnarScan) on _hyper_3_7_chunk t1_1 (actual rows=10004.00 loops=1)
-> Seq Scan on compress_hyper_4_8_chunk (actual rows=13.00 loops=1)
-> Seq Scan on _hyper_3_7_chunk t1_1 (actual rows=1.00 loops=1)
---------------------------------------------------------------------------
-- test queries without ordered append, but still eligible for sort pushdown
---------------------------------------------------------------------------
CREATE TABLE test2 (
time timestamptz NOT NULL,
x1 integer,
x2 integer,
x3 integer,
x4 integer,
x5 integer);
SELECT FROM create_hypertable('test2', 'time');
--
ALTER TABLE test2 SET (timescaledb.compress, timescaledb.compress_segmentby='x1, x2, x5', timescaledb.compress_orderby = 'x3 ASC, x4 ASC');
INSERT INTO test2 (time, x1, x2, x3, x4, x5) values('2000-01-01 00:00:00-00', 1, 2, 1, 1, 0);
INSERT INTO test2 (time, x1, x2, x3, x4, x5) values('2000-01-01 01:00:00-00', 1, 3, 2, 2, 0);
INSERT INTO test2 (time, x1, x2, x3, x4, x5) values('2000-01-01 02:00:00-00', 2, 1, 3, 3, 0);
INSERT INTO test2 (time, x1, x2, x3, x4, x5) values('2000-01-01 03:00:00-00', 1, 2, 4, 4, 0);
-- chunk 2
INSERT INTO test2 (time, x1, x2, x3, x4, x5) values('2000-01-10 00:00:00-00', 1, 2, 5, 5, 0);
INSERT INTO test2 (time, x1, x2, x3, x4, x5) values('2000-01-10 01:00:00-00', 1, 3, 6, 6, 0);
INSERT INTO test2 (time, x1, x2, x3, x4, x5) values('2000-01-10 02:00:00-00', 2, 1, 7, 7, 0);
INSERT INTO test2 (time, x1, x2, x3, x4, x5) values('2000-01-10 03:00:00-00', 1, 2, 8, 8, 0);
-- Insert some dummy rows to inflate the cost estimates to get it to actually
-- use the MergeAppend. We will filter them out using the "x4 % 11 != 0" which
-- thwarts the normal selectivity estimation.