-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathruntime_merge_append.c
941 lines (813 loc) · 26.6 KB
/
runtime_merge_append.c
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
/* ------------------------------------------------------------------------
*
* runtime_merge_append.c
* RuntimeMergeAppend node's function definitions and global variables
*
* Copyright (c) 2016-2020, Postgres Professional
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* ------------------------------------------------------------------------
*/
#include "compat/pg_compat.h"
#include "runtime_merge_append.h"
#include "postgres.h"
#include "catalog/pg_collation.h"
#include "miscadmin.h"
#include "nodes/nodeFuncs.h"
#include "nodes/plannodes.h"
#if PG_VERSION_NUM >= 120000
#include "optimizer/optimizer.h"
#else
#include "optimizer/cost.h"
#include "optimizer/var.h"
#endif
#include "optimizer/planmain.h"
#include "optimizer/tlist.h"
#include "utils/builtins.h"
#include "utils/guc.h"
#include "utils/lsyscache.h"
#include "utils/typcache.h"
#include "utils/ruleutils.h"
#include "lib/binaryheap.h"
bool pg_pathman_enable_runtime_merge_append = true;
CustomPathMethods runtime_merge_append_path_methods;
CustomScanMethods runtime_merge_append_plan_methods;
CustomExecMethods runtime_merge_append_exec_methods;
typedef struct
{
int numCols;
AttrNumber *sortColIdx;
Oid *sortOperators;
Oid *collations;
bool *nullsFirst;
} MergeAppendGuts;
static Plan * prepare_sort_from_pathkeys(PlannerInfo *root, Plan *lefttree, List *pathkeys,
Relids relids, const AttrNumber *reqColIdx,
bool adjust_tlist_in_place, int *p_numsortkeys,
AttrNumber **p_sortColIdx, Oid **p_sortOperators,
Oid **p_collations, bool **p_nullsFirst);
static Sort * make_sort(PlannerInfo *root, Plan *lefttree, int numCols,
AttrNumber *sortColIdx, Oid *sortOperators,
Oid *collations, bool *nullsFirst,
double limit_tuples);
static void copy_plan_costsize(Plan *dest, Plan *src);
static void show_sort_group_keys(PlanState *planstate, const char *qlabel,
int nkeys, AttrNumber *keycols,
Oid *sortOperators, Oid *collations, bool *nullsFirst,
List *ancestors, ExplainState *es);
/*
* We have one slot for each item in the heap array. We use SlotNumber
* to store slot indexes. This doesn't actually provide any formal
* type-safety, but it makes the code more self-documenting.
*/
typedef int32 SlotNumber;
/*
* Compare the tuples in the two given slots.
*/
static int32
heap_compare_slots(Datum a, Datum b, void *arg)
{
RuntimeMergeAppendState *node = (RuntimeMergeAppendState *) arg;
SlotNumber slot1 = DatumGetInt32(a);
SlotNumber slot2 = DatumGetInt32(b);
TupleTableSlot *s1 = node->ms_slots[slot1];
TupleTableSlot *s2 = node->ms_slots[slot2];
int nkey;
Assert(!TupIsNull(s1));
Assert(!TupIsNull(s2));
for (nkey = 0; nkey < node->ms_nkeys; nkey++)
{
SortSupport sortKey = node->ms_sortkeys + nkey;
AttrNumber attno = sortKey->ssup_attno;
Datum datum1,
datum2;
bool isNull1,
isNull2;
int compare;
datum1 = slot_getattr(s1, attno, &isNull1);
datum2 = slot_getattr(s2, attno, &isNull2);
compare = ApplySortComparator(datum1, isNull1,
datum2, isNull2,
sortKey);
if (compare != 0)
return -compare;
}
return 0;
}
static void
pack_runtimemergeappend_private(CustomScan *cscan, MergeAppendGuts *mag)
{
List *runtimemergeappend_private = NIL;
List *sortColIdx = NIL,
*sortOperators = NIL,
*collations = NIL,
*nullsFirst = NIL;
int i;
for (i = 0; i < mag->numCols; i++)
{
sortColIdx = lappend_int(sortColIdx, mag->sortColIdx[i]);
sortOperators = lappend_oid(sortOperators, mag->sortOperators[i]);
collations = lappend_oid(collations, mag->collations[i]);
nullsFirst = lappend_int(nullsFirst, mag->nullsFirst[i]);
}
runtimemergeappend_private = list_make2(makeInteger(mag->numCols),
list_make4(sortColIdx,
sortOperators,
collations,
nullsFirst));
/*
* Append RuntimeMergeAppend's data to the 'custom_private' (2nd).
*
* This way some sort of hierarchy is maintained in 'custom_private':
* inherited structure (in this case RuntimeAppend) is stored first,
* so we can think of pack\unpack functions as 'constructors' to some
* extent.
*/
cscan->custom_private = lappend(cscan->custom_private,
runtimemergeappend_private);
}
static void
unpack_runtimemergeappend_private(RuntimeMergeAppendState *scan_state,
CustomScan *cscan)
{
#define FillStateField(name, type, method) \
do \
{ \
ListCell *lc; \
int i = 0; \
Assert(scan_state->numCols == list_length(name)); \
scan_state->name = palloc0(scan_state->numCols * sizeof(type)); \
foreach (lc, name) \
scan_state->name[i++] = method(lc); \
} \
while (0)
List *runtimemergeappend_private = NIL;
List *sortColIdx,
*sortOperators,
*collations,
*nullsFirst;
/*
* RuntimeMergeAppend node's private data is stored in
* second element of the 'custom_private' list, right
* after the RuntimeAppend node's private data (2nd)
*/
runtimemergeappend_private = lsecond(cscan->custom_private);
scan_state->numCols = intVal(linitial(runtimemergeappend_private));
sortColIdx = linitial(lsecond(runtimemergeappend_private));
sortOperators = lsecond(lsecond(runtimemergeappend_private));
collations = lthird(lsecond(runtimemergeappend_private));
nullsFirst = lfourth(lsecond(runtimemergeappend_private));
FillStateField(sortColIdx, AttrNumber, lfirst_int);
FillStateField(sortOperators, Oid, lfirst_oid);
FillStateField(collations, Oid, lfirst_oid);
FillStateField(nullsFirst, bool, lfirst_int);
}
void
init_runtime_merge_append_static_data(void)
{
runtime_merge_append_path_methods.CustomName = RUNTIME_MERGE_APPEND_NODE_NAME;
runtime_merge_append_path_methods.PlanCustomPath = create_runtime_merge_append_plan;
runtime_merge_append_plan_methods.CustomName = RUNTIME_MERGE_APPEND_NODE_NAME;
runtime_merge_append_plan_methods.CreateCustomScanState = runtime_merge_append_create_scan_state;
runtime_merge_append_exec_methods.CustomName = RUNTIME_MERGE_APPEND_NODE_NAME;
runtime_merge_append_exec_methods.BeginCustomScan = runtime_merge_append_begin;
runtime_merge_append_exec_methods.ExecCustomScan = runtime_merge_append_exec;
runtime_merge_append_exec_methods.EndCustomScan = runtime_merge_append_end;
runtime_merge_append_exec_methods.ReScanCustomScan = runtime_merge_append_rescan;
runtime_merge_append_exec_methods.MarkPosCustomScan = NULL;
runtime_merge_append_exec_methods.RestrPosCustomScan = NULL;
runtime_merge_append_exec_methods.ExplainCustomScan = runtime_merge_append_explain;
DefineCustomBoolVariable("pg_pathman.enable_runtimemergeappend",
"Enables the planner's use of " RUNTIME_MERGE_APPEND_NODE_NAME " custom node.",
NULL,
&pg_pathman_enable_runtime_merge_append,
true,
PGC_USERSET,
0,
NULL,
NULL,
NULL);
RegisterCustomScanMethods(&runtime_merge_append_plan_methods);
}
Path *
create_runtime_merge_append_path(PlannerInfo *root,
AppendPath *inner_append,
ParamPathInfo *param_info,
double sel)
{
RelOptInfo *rel = inner_append->path.parent;
Path *path;
double limit_tuples;
path = create_append_path_common(root, inner_append,
param_info,
&runtime_merge_append_path_methods,
sizeof(RuntimeMergeAppendPath),
sel);
if (bms_equal(rel->relids, root->all_baserels))
limit_tuples = root->limit_tuples;
else
limit_tuples = -1.0;
((RuntimeMergeAppendPath *) path)->limit_tuples = limit_tuples;
return path;
}
Plan *
create_runtime_merge_append_plan(PlannerInfo *root, RelOptInfo *rel,
CustomPath *best_path, List *tlist,
List *clauses, List *custom_plans)
{
CustomScan *node;
Plan *plan;
List *pathkeys = best_path->path.pathkeys;
double limit_tuples = ((RuntimeMergeAppendPath *) best_path)->limit_tuples;
MergeAppendGuts mag;
ListCell *path_cell;
ListCell *plan_cell;
plan = create_append_plan_common(root, rel,
best_path, tlist,
clauses, custom_plans,
&runtime_merge_append_plan_methods);
node = (CustomScan *) plan;
(void) prepare_sort_from_pathkeys(root, plan, pathkeys,
best_path->path.parent->relids,
NULL,
true,
&mag.numCols,
&mag.sortColIdx,
&mag.sortOperators,
&mag.collations,
&mag.nullsFirst);
/*
* Now prepare the child plans. We must apply prepare_sort_from_pathkeys
* even to subplans that don't need an explicit sort, to make sure they
* are returning the same sort key columns the MergeAppend expects.
*/
forboth(path_cell, best_path->custom_paths, plan_cell, custom_plans)
{
Path *subpath = (Path *) lfirst(path_cell);
Plan *subplan = (Plan *) lfirst(plan_cell);
int numsortkeys;
AttrNumber *sortColIdx;
Oid *sortOperators;
Oid *collations;
bool *nullsFirst;
/* Compute sort column info, and adjust subplan's tlist as needed */
subplan = prepare_sort_from_pathkeys(root, subplan, pathkeys,
subpath->parent->relids,
mag.sortColIdx,
false,
&numsortkeys,
&sortColIdx,
&sortOperators,
&collations,
&nullsFirst);
/*
* Check that we got the same sort key information. We just Assert
* that the sortops match, since those depend only on the pathkeys;
* but it seems like a good idea to check the sort column numbers
* explicitly, to ensure the tlists really do match up.
*/
Assert(numsortkeys == mag.numCols);
if (memcmp(sortColIdx, mag.sortColIdx,
numsortkeys * sizeof(AttrNumber)) != 0)
elog(ERROR, "RuntimeMergeAppend child's targetlist doesn't match RuntimeMergeAppend");
Assert(memcmp(sortOperators, mag.sortOperators,
numsortkeys * sizeof(Oid)) == 0);
Assert(memcmp(collations, mag.collations,
numsortkeys * sizeof(Oid)) == 0);
Assert(memcmp(nullsFirst, mag.nullsFirst,
numsortkeys * sizeof(bool)) == 0);
/* Now, insert a Sort node if subplan isn't sufficiently ordered */
if (!pathkeys_contained_in(pathkeys, subpath->pathkeys))
subplan = (Plan *) make_sort(root, subplan, numsortkeys,
sortColIdx, sortOperators,
collations, nullsFirst,
limit_tuples);
/* Replace subpath with subplan */
lfirst(plan_cell) = subplan;
}
pack_runtimemergeappend_private(node, &mag);
return plan;
}
Node *
runtime_merge_append_create_scan_state(CustomScan *node)
{
Node *state;
state = create_append_scan_state_common(node,
&runtime_merge_append_exec_methods,
sizeof(RuntimeMergeAppendState));
unpack_runtimemergeappend_private((RuntimeMergeAppendState *) state, node);
return state;
}
void
runtime_merge_append_begin(CustomScanState *node, EState *estate, int eflags)
{
begin_append_common(node, estate, eflags);
}
static void
fetch_next_tuple(CustomScanState *node)
{
RuntimeMergeAppendState *scan_state = (RuntimeMergeAppendState *) node;
RuntimeAppendState *rstate = &scan_state->rstate;
PlanState *ps;
int i;
if (!scan_state->ms_initialized)
{
for (i = 0; i < scan_state->rstate.ncur_plans; i++)
{
ChildScanCommon child = scan_state->rstate.cur_plans[i];
ps = child->content.plan_state;
Assert(child->content_type == CHILD_PLAN_STATE);
scan_state->ms_slots[i] = ExecProcNode(ps);
if (!TupIsNull(scan_state->ms_slots[i]))
binaryheap_add_unordered(scan_state->ms_heap, Int32GetDatum(i));
}
binaryheap_build(scan_state->ms_heap);
scan_state->ms_initialized = true;
}
else
{
i = DatumGetInt32(binaryheap_first(scan_state->ms_heap));
ps = scan_state->rstate.cur_plans[i]->content.plan_state;
for (;;)
{
scan_state->ms_slots[i] = ExecProcNode(ps);
if (TupIsNull(scan_state->ms_slots[i]))
{
(void) binaryheap_remove_first(scan_state->ms_heap);
break;
}
binaryheap_replace_first(scan_state->ms_heap, Int32GetDatum(i));
break;
}
}
if (binaryheap_empty(scan_state->ms_heap))
{
/* All the subplans are exhausted, and so is the heap */
rstate->slot = NULL;
}
else
{
i = DatumGetInt32(binaryheap_first(scan_state->ms_heap));
rstate->slot = scan_state->ms_slots[i];
}
}
TupleTableSlot *
runtime_merge_append_exec(CustomScanState *node)
{
return exec_append_common(node, fetch_next_tuple);
}
void
runtime_merge_append_end(CustomScanState *node)
{
RuntimeMergeAppendState *scan_state = (RuntimeMergeAppendState *) node;
end_append_common(node);
if (scan_state->ms_heap)
binaryheap_free(scan_state->ms_heap);
}
void
runtime_merge_append_rescan(CustomScanState *node)
{
RuntimeMergeAppendState *scan_state = (RuntimeMergeAppendState *) node;
int nplans;
int i;
rescan_append_common(node);
nplans = scan_state->rstate.ncur_plans;
scan_state->ms_slots = (TupleTableSlot **) palloc0(sizeof(TupleTableSlot *) * nplans);
scan_state->ms_heap = binaryheap_allocate(nplans, heap_compare_slots, scan_state);
/*
* initialize sort-key information
*/
scan_state->ms_nkeys = scan_state->numCols;
scan_state->ms_sortkeys = (SortSupport)
palloc0(sizeof(SortSupportData) * scan_state->numCols);
for (i = 0; i < scan_state->numCols; i++)
{
SortSupport sortKey = scan_state->ms_sortkeys + i;
sortKey->ssup_cxt = CurrentMemoryContext;
sortKey->ssup_collation = scan_state->collations[i];
sortKey->ssup_nulls_first = scan_state->nullsFirst[i];
sortKey->ssup_attno = scan_state->sortColIdx[i];
/*
* It isn't feasible to perform abbreviated key conversion, since
* tuples are pulled into mergestate's binary heap as needed. It
* would likely be counter-productive to convert tuples into an
* abbreviated representation as they're pulled up, so opt out of that
* additional optimization entirely.
*/
sortKey->abbreviate = false;
PrepareSortSupportFromOrderingOp(scan_state->sortOperators[i], sortKey);
}
binaryheap_reset(scan_state->ms_heap);
scan_state->ms_initialized = false;
}
void
runtime_merge_append_explain(CustomScanState *node, List *ancestors, ExplainState *es)
{
RuntimeMergeAppendState *scan_state = (RuntimeMergeAppendState *) node;
explain_append_common(node, ancestors, es,
scan_state->rstate.children_table,
scan_state->rstate.custom_exprs);
/* We should print sort keys as well */
show_sort_group_keys((PlanState *) &node->ss.ps, "Sort Key",
scan_state->numCols, scan_state->sortColIdx,
scan_state->sortOperators, scan_state->collations,
scan_state->nullsFirst, ancestors, es);
}
/*
* Copied from createplan.c
*/
static void
copy_plan_costsize(Plan *dest, Plan *src)
{
if (src)
{
dest->startup_cost = src->startup_cost;
dest->total_cost = src->total_cost;
dest->plan_rows = src->plan_rows;
dest->plan_width = src->plan_width;
}
else
{
dest->startup_cost = 0;
dest->total_cost = 0;
dest->plan_rows = 0;
dest->plan_width = 0;
}
}
/* Copied from createplan.c */
static Sort *
make_sort(PlannerInfo *root, Plan *lefttree, int numCols,
AttrNumber *sortColIdx, Oid *sortOperators,
Oid *collations, bool *nullsFirst,
double limit_tuples)
{
Sort *node = makeNode(Sort);
Plan *plan = &node->plan;
Path sort_path; /* dummy for result of cost_sort */
copy_plan_costsize(plan, lefttree); /* only care about copying size */
cost_sort(&sort_path, root, NIL,
lefttree->total_cost,
lefttree->plan_rows,
lefttree->plan_width,
0.0,
work_mem,
limit_tuples);
plan->startup_cost = sort_path.startup_cost;
plan->total_cost = sort_path.total_cost;
plan->targetlist = lefttree->targetlist;
plan->qual = NIL;
plan->lefttree = lefttree;
plan->righttree = NULL;
node->numCols = numCols;
node->sortColIdx = sortColIdx;
node->sortOperators = sortOperators;
node->collations = collations;
node->nullsFirst = nullsFirst;
return node;
}
static EquivalenceMember *
find_ec_member_for_tle(EquivalenceClass *ec,
TargetEntry *tle,
Relids relids)
{
Expr *tlexpr;
ListCell *lc;
/* We ignore binary-compatible relabeling on both ends */
tlexpr = tle->expr;
while (tlexpr && IsA(tlexpr, RelabelType))
tlexpr = ((RelabelType *) tlexpr)->arg;
foreach(lc, ec->ec_members)
{
EquivalenceMember *em = (EquivalenceMember *) lfirst(lc);
Expr *emexpr;
/*
* We shouldn't be trying to sort by an equivalence class that
* contains a constant, so no need to consider such cases any further.
*/
if (em->em_is_const)
continue;
/*
* Ignore child members unless they match the rel being sorted.
*/
if (em->em_is_child &&
!bms_equal(em->em_relids, relids))
continue;
/* Match if same expression (after stripping relabel) */
emexpr = em->em_expr;
while (emexpr && IsA(emexpr, RelabelType))
emexpr = ((RelabelType *) emexpr)->arg;
if (equal(emexpr, tlexpr))
return em;
}
return NULL;
}
static Plan *
prepare_sort_from_pathkeys(PlannerInfo *root, Plan *lefttree, List *pathkeys,
Relids relids,
const AttrNumber *reqColIdx,
bool adjust_tlist_in_place,
int *p_numsortkeys,
AttrNumber **p_sortColIdx,
Oid **p_sortOperators,
Oid **p_collations,
bool **p_nullsFirst)
{
List *tlist = lefttree->targetlist;
ListCell *i;
int numsortkeys;
AttrNumber *sortColIdx;
Oid *sortOperators;
Oid *collations;
bool *nullsFirst;
/*
* We will need at most list_length(pathkeys) sort columns; possibly less
*/
numsortkeys = list_length(pathkeys);
sortColIdx = (AttrNumber *) palloc(numsortkeys * sizeof(AttrNumber));
sortOperators = (Oid *) palloc(numsortkeys * sizeof(Oid));
collations = (Oid *) palloc(numsortkeys * sizeof(Oid));
nullsFirst = (bool *) palloc(numsortkeys * sizeof(bool));
numsortkeys = 0;
foreach(i, pathkeys)
{
PathKey *pathkey = (PathKey *) lfirst(i);
EquivalenceClass *ec = pathkey->pk_eclass;
EquivalenceMember *em;
TargetEntry *tle = NULL;
Oid pk_datatype = InvalidOid;
Oid sortop;
ListCell *j;
if (ec->ec_has_volatile)
{
/*
* If the pathkey's EquivalenceClass is volatile, then it must
* have come from an ORDER BY clause, and we have to match it to
* that same targetlist entry.
*/
if (ec->ec_sortref == 0) /* can't happen */
elog(ERROR, "volatile EquivalenceClass has no sortref");
tle = get_sortgroupref_tle(ec->ec_sortref, tlist);
Assert(tle);
Assert(list_length(ec->ec_members) == 1);
pk_datatype = ((EquivalenceMember *) linitial(ec->ec_members))->em_datatype;
}
else if (reqColIdx != NULL)
{
/*
* If we are given a sort column number to match, only consider
* the single TLE at that position. It's possible that there is
* no such TLE, in which case fall through and generate a resjunk
* targetentry (we assume this must have happened in the parent
* plan as well). If there is a TLE but it doesn't match the
* pathkey's EC, we do the same, which is probably the wrong thing
* but we'll leave it to caller to complain about the mismatch.
*/
tle = get_tle_by_resno(tlist, reqColIdx[numsortkeys]);
if (tle)
{
em = find_ec_member_for_tle(ec, tle, relids);
if (em)
{
/* found expr at right place in tlist */
pk_datatype = em->em_datatype;
}
else
tle = NULL;
}
}
else
{
/*
* Otherwise, we can sort by any non-constant expression listed in
* the pathkey's EquivalenceClass. For now, we take the first
* tlist item found in the EC. If there's no match, we'll generate
* a resjunk entry using the first EC member that is an expression
* in the input's vars. (The non-const restriction only matters
* if the EC is below_outer_join; but if it isn't, it won't
* contain consts anyway, else we'd have discarded the pathkey as
* redundant.)
*
* XXX if we have a choice, is there any way of figuring out which
* might be cheapest to execute? (For example, int4lt is likely
* much cheaper to execute than numericlt, but both might appear
* in the same equivalence class...) Not clear that we ever will
* have an interesting choice in practice, so it may not matter.
*/
foreach(j, tlist)
{
tle = (TargetEntry *) lfirst(j);
em = find_ec_member_for_tle(ec, tle, relids);
if (em)
{
/* found expr already in tlist */
pk_datatype = em->em_datatype;
break;
}
tle = NULL;
}
}
if (!tle)
{
/*
* No matching tlist item; look for a computable expression. Note
* that we treat Aggrefs as if they were variables; this is
* necessary when attempting to sort the output from an Agg node
* for use in a WindowFunc (since grouping_planner will have
* treated the Aggrefs as variables, too).
*/
Expr *sortexpr = NULL;
foreach(j, ec->ec_members)
{
List *exprvars;
ListCell *k;
em = (EquivalenceMember *) lfirst(j);
/*
* We shouldn't be trying to sort by an equivalence class that
* contains a constant, so no need to consider such cases any
* further.
*/
if (em->em_is_const)
continue;
/*
* Ignore child members unless they match the rel being
* sorted.
*/
if (em->em_is_child &&
!bms_equal(em->em_relids, relids))
continue;
sortexpr = em->em_expr;
exprvars = pull_var_clause_compat((Node *) sortexpr,
PVC_INCLUDE_AGGREGATES,
PVC_INCLUDE_PLACEHOLDERS);
foreach(k, exprvars)
{
if (!tlist_member_ignore_relabel(lfirst(k), tlist))
break;
}
list_free(exprvars);
if (!k)
{
pk_datatype = em->em_datatype;
break; /* found usable expression */
}
}
if (!j)
elog(ERROR, "could not find pathkey item to sort");
/*
* Do we need to insert a Result node?
*/
if (!adjust_tlist_in_place &&
!is_projection_capable_plan(lefttree))
{
/* copy needed so we don't modify input's tlist below */
tlist = copyObject(tlist);
lefttree = (Plan *) make_result_compat(root, tlist, NULL,
lefttree);
}
/* Don't bother testing is_projection_capable_plan again */
adjust_tlist_in_place = true;
/*
* Add resjunk entry to input's tlist
*/
tle = makeTargetEntry(sortexpr,
list_length(tlist) + 1,
NULL,
true);
tlist = lappend(tlist, tle);
lefttree->targetlist = tlist; /* just in case NIL before */
}
/*
* Look up the correct sort operator from the PathKey's slightly
* abstracted representation.
*/
sortop = get_opfamily_member(pathkey->pk_opfamily,
pk_datatype,
pk_datatype,
pathkey->pk_strategy);
if (!OidIsValid(sortop)) /* should not happen */
elog(ERROR, "could not find member %d(%u,%u) of opfamily %u",
pathkey->pk_strategy, pk_datatype, pk_datatype,
pathkey->pk_opfamily);
/* Add the column to the sort arrays */
sortColIdx[numsortkeys] = tle->resno;
sortOperators[numsortkeys] = sortop;
collations[numsortkeys] = ec->ec_collation;
nullsFirst[numsortkeys] = pathkey->pk_nulls_first;
numsortkeys++;
}
/* Return results */
*p_numsortkeys = numsortkeys;
*p_sortColIdx = sortColIdx;
*p_sortOperators = sortOperators;
*p_collations = collations;
*p_nullsFirst = nullsFirst;
return lefttree;
}
/*
* Append nondefault characteristics of the sort ordering of a column to buf
* (collation, direction, NULLS FIRST/LAST)
*/
static void
show_sortorder_options(StringInfo buf, Node *sortexpr,
Oid sortOperator, Oid collation, bool nullsFirst)
{
Oid sortcoltype = exprType(sortexpr);
bool reverse = false;
TypeCacheEntry *typentry;
typentry = lookup_type_cache(sortcoltype,
TYPECACHE_LT_OPR | TYPECACHE_GT_OPR);
/*
* Print COLLATE if it's not default. There are some cases where this is
* redundant, eg if expression is a column whose declared collation is
* that collation, but it's hard to distinguish that here.
*/
if (OidIsValid(collation) && collation != DEFAULT_COLLATION_OID)
{
char *collname = get_collation_name(collation);
if (collname == NULL)
elog(ERROR, "cache lookup failed for collation %u", collation);
appendStringInfo(buf, " COLLATE %s", quote_identifier(collname));
}
/* Print direction if not ASC, or USING if non-default sort operator */
if (sortOperator == typentry->gt_opr)
{
appendStringInfoString(buf, " DESC");
reverse = true;
}
else if (sortOperator != typentry->lt_opr)
{
char *opname = get_opname(sortOperator);
if (opname == NULL)
elog(ERROR, "cache lookup failed for operator %u", sortOperator);
appendStringInfo(buf, " USING %s", opname);
/* Determine whether operator would be considered ASC or DESC */
(void) get_equality_op_for_ordering_op(sortOperator, &reverse);
}
/* Add NULLS FIRST/LAST only if it wouldn't be default */
if (nullsFirst && !reverse)
{
appendStringInfoString(buf, " NULLS FIRST");
}
else if (!nullsFirst && reverse)
{
appendStringInfoString(buf, " NULLS LAST");
}
}
/*
* Common code to show sort/group keys, which are represented in plan nodes
* as arrays of targetlist indexes. If it's a sort key rather than a group
* key, also pass sort operators/collations/nullsFirst arrays.
*/
static void
show_sort_group_keys(PlanState *planstate, const char *qlabel,
int nkeys, AttrNumber *keycols,
Oid *sortOperators, Oid *collations, bool *nullsFirst,
List *ancestors, ExplainState *es)
{
Plan *plan = planstate->plan;
List *context;
List *result = NIL;
StringInfoData sortkeybuf;
bool useprefix;
int keyno;
if (nkeys <= 0)
return;
initStringInfo(&sortkeybuf);
/* Set up deparsing context */
#if PG_VERSION_NUM >= 130000
context = set_deparse_context_plan(es->deparse_cxt,
plan,
ancestors);
#else
context = set_deparse_context_planstate(es->deparse_cxt,
(Node *) planstate,
ancestors);
#endif
useprefix = (list_length(es->rtable) > 1 || es->verbose);
for (keyno = 0; keyno < nkeys; keyno++)
{
/* find key expression in tlist */
AttrNumber keyresno = keycols[keyno];
TargetEntry *target = get_tle_by_resno(plan->targetlist,
keyresno);
char *exprstr;
if (!target)
elog(ERROR, "no tlist entry for key %d", keyresno);
/* Deparse the expression, showing any top-level cast */
exprstr = deparse_expression((Node *) target->expr, context,
useprefix, true);
resetStringInfo(&sortkeybuf);
appendStringInfoString(&sortkeybuf, exprstr);
/* Append sort order information, if relevant */
if (sortOperators != NULL)
show_sortorder_options(&sortkeybuf,
(Node *) target->expr,
sortOperators[keyno],
collations[keyno],
nullsFirst[keyno]);
/* Emit one property-list item per sort key */
result = lappend(result, pstrdup(sortkeybuf.data));
}
ExplainPropertyList(qlabel, result, es);
}