LCOV - code coverage report
Current view: top level - src/backend/executor - nodeGatherMerge.c (source / functions) Coverage Total Hit
Test: Code coverage Lines: 98.6 % 284 280
Test Date: 2026-01-26 10:56:24 Functions: 100.0 % 14 14
Legend: Lines:     hit not hit
Branches: + taken - not taken # not executed
Branches: 86.5 % 126 109

             Branch data     Line data    Source code
       1                 :             : /*-------------------------------------------------------------------------
       2                 :             :  *
       3                 :             :  * nodeGatherMerge.c
       4                 :             :  *              Scan a plan in multiple workers, and do order-preserving merge.
       5                 :             :  *
       6                 :             :  * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
       7                 :             :  * Portions Copyright (c) 1994, Regents of the University of California
       8                 :             :  *
       9                 :             :  * IDENTIFICATION
      10                 :             :  *        src/backend/executor/nodeGatherMerge.c
      11                 :             :  *
      12                 :             :  *-------------------------------------------------------------------------
      13                 :             :  */
      14                 :             : 
      15                 :             : #include "postgres.h"
      16                 :             : 
      17                 :             : #include "access/htup_details.h"
      18                 :             : #include "executor/executor.h"
      19                 :             : #include "executor/execParallel.h"
      20                 :             : #include "executor/nodeGatherMerge.h"
      21                 :             : #include "executor/tqueue.h"
      22                 :             : #include "lib/binaryheap.h"
      23                 :             : #include "miscadmin.h"
      24                 :             : #include "optimizer/optimizer.h"
      25                 :             : 
      26                 :             : /*
      27                 :             :  * When we read tuples from workers, it's a good idea to read several at once
      28                 :             :  * for efficiency when possible: this minimizes context-switching overhead.
      29                 :             :  * But reading too many at a time wastes memory without improving performance.
      30                 :             :  * We'll read up to MAX_TUPLE_STORE tuples (in addition to the first one).
      31                 :             :  */
      32                 :             : #define MAX_TUPLE_STORE 10
      33                 :             : 
      34                 :             : /*
      35                 :             :  * Pending-tuple array for each worker.  This holds additional tuples that
      36                 :             :  * we were able to fetch from the worker, but can't process yet.  In addition,
      37                 :             :  * this struct holds the "done" flag indicating the worker is known to have
      38                 :             :  * no more tuples.  (We do not use this struct for the leader; we don't keep
      39                 :             :  * any pending tuples for the leader, and the need_to_scan_locally flag serves
      40                 :             :  * as its "done" indicator.)
      41                 :             :  */
      42                 :             : typedef struct GMReaderTupleBuffer
      43                 :             : {
      44                 :             :         MinimalTuple *tuple;            /* array of length MAX_TUPLE_STORE */
      45                 :             :         int                     nTuples;                /* number of tuples currently stored */
      46                 :             :         int                     readCounter;    /* index of next tuple to extract */
      47                 :             :         bool            done;                   /* true if reader is known exhausted */
      48                 :             : } GMReaderTupleBuffer;
      49                 :             : 
      50                 :             : static TupleTableSlot *ExecGatherMerge(PlanState *pstate);
      51                 :             : static int32 heap_compare_slots(Datum a, Datum b, void *arg);
      52                 :             : static TupleTableSlot *gather_merge_getnext(GatherMergeState *gm_state);
      53                 :             : static MinimalTuple gm_readnext_tuple(GatherMergeState *gm_state, int nreader,
      54                 :             :                                                                           bool nowait, bool *done);
      55                 :             : static void ExecShutdownGatherMergeWorkers(GatherMergeState *node);
      56                 :             : static void gather_merge_setup(GatherMergeState *gm_state);
      57                 :             : static void gather_merge_init(GatherMergeState *gm_state);
      58                 :             : static void gather_merge_clear_tuples(GatherMergeState *gm_state);
      59                 :             : static bool gather_merge_readnext(GatherMergeState *gm_state, int reader,
      60                 :             :                                                                   bool nowait);
      61                 :             : static void load_tuple_array(GatherMergeState *gm_state, int reader);
      62                 :             : 
      63                 :             : /* ----------------------------------------------------------------
      64                 :             :  *              ExecInitGather
      65                 :             :  * ----------------------------------------------------------------
      66                 :             :  */
      67                 :             : GatherMergeState *
      68                 :          67 : ExecInitGatherMerge(GatherMerge *node, EState *estate, int eflags)
      69                 :             : {
      70                 :          67 :         GatherMergeState *gm_state;
      71                 :          67 :         Plan       *outerNode;
      72                 :          67 :         TupleDesc       tupDesc;
      73                 :             : 
      74                 :             :         /* Gather merge node doesn't have innerPlan node. */
      75         [ +  - ]:          67 :         Assert(innerPlan(node) == NULL);
      76                 :             : 
      77                 :             :         /*
      78                 :             :          * create state structure
      79                 :             :          */
      80                 :          67 :         gm_state = makeNode(GatherMergeState);
      81                 :          67 :         gm_state->ps.plan = (Plan *) node;
      82                 :          67 :         gm_state->ps.state = estate;
      83                 :          67 :         gm_state->ps.ExecProcNode = ExecGatherMerge;
      84                 :             : 
      85                 :          67 :         gm_state->initialized = false;
      86                 :          67 :         gm_state->gm_initialized = false;
      87                 :          67 :         gm_state->tuples_needed = -1;
      88                 :             : 
      89                 :             :         /*
      90                 :             :          * Miscellaneous initialization
      91                 :             :          *
      92                 :             :          * create expression context for node
      93                 :             :          */
      94                 :          67 :         ExecAssignExprContext(estate, &gm_state->ps);
      95                 :             : 
      96                 :             :         /*
      97                 :             :          * GatherMerge doesn't support checking a qual (it's always more efficient
      98                 :             :          * to do it in the child node).
      99                 :             :          */
     100         [ +  - ]:          67 :         Assert(!node->plan.qual);
     101                 :             : 
     102                 :             :         /*
     103                 :             :          * now initialize outer plan
     104                 :             :          */
     105                 :          67 :         outerNode = outerPlan(node);
     106                 :          67 :         outerPlanState(gm_state) = ExecInitNode(outerNode, estate, eflags);
     107                 :             : 
     108                 :             :         /*
     109                 :             :          * Leader may access ExecProcNode result directly (if
     110                 :             :          * need_to_scan_locally), or from workers via tuple queue.  So we can't
     111                 :             :          * trivially rely on the slot type being fixed for expressions evaluated
     112                 :             :          * within this node.
     113                 :             :          */
     114                 :          67 :         gm_state->ps.outeropsset = true;
     115                 :          67 :         gm_state->ps.outeropsfixed = false;
     116                 :             : 
     117                 :             :         /*
     118                 :             :          * Store the tuple descriptor into gather merge state, so we can use it
     119                 :             :          * while initializing the gather merge slots.
     120                 :             :          */
     121                 :          67 :         tupDesc = ExecGetResultType(outerPlanState(gm_state));
     122                 :          67 :         gm_state->tupDesc = tupDesc;
     123                 :             : 
     124                 :             :         /*
     125                 :             :          * Initialize result type and projection.
     126                 :             :          */
     127                 :          67 :         ExecInitResultTypeTL(&gm_state->ps);
     128                 :          67 :         ExecConditionalAssignProjectionInfo(&gm_state->ps, tupDesc, OUTER_VAR);
     129                 :             : 
     130                 :             :         /*
     131                 :             :          * Without projections result slot type is not trivially known, see
     132                 :             :          * comment above.
     133                 :             :          */
     134         [ +  + ]:          67 :         if (gm_state->ps.ps_ProjInfo == NULL)
     135                 :             :         {
     136                 :          65 :                 gm_state->ps.resultopsset = true;
     137                 :          65 :                 gm_state->ps.resultopsfixed = false;
     138                 :          65 :         }
     139                 :             : 
     140                 :             :         /*
     141                 :             :          * initialize sort-key information
     142                 :             :          */
     143         [ +  - ]:          67 :         if (node->numCols)
     144                 :             :         {
     145                 :          67 :                 int                     i;
     146                 :             : 
     147                 :          67 :                 gm_state->gm_nkeys = node->numCols;
     148                 :          67 :                 gm_state->gm_sortkeys = palloc0_array(SortSupportData, node->numCols);
     149                 :             : 
     150         [ +  + ]:         154 :                 for (i = 0; i < node->numCols; i++)
     151                 :             :                 {
     152                 :          87 :                         SortSupport sortKey = gm_state->gm_sortkeys + i;
     153                 :             : 
     154                 :          87 :                         sortKey->ssup_cxt = CurrentMemoryContext;
     155                 :          87 :                         sortKey->ssup_collation = node->collations[i];
     156                 :          87 :                         sortKey->ssup_nulls_first = node->nullsFirst[i];
     157                 :          87 :                         sortKey->ssup_attno = node->sortColIdx[i];
     158                 :             : 
     159                 :             :                         /*
     160                 :             :                          * We don't perform abbreviated key conversion here, for the same
     161                 :             :                          * reasons that it isn't used in MergeAppend
     162                 :             :                          */
     163                 :          87 :                         sortKey->abbreviate = false;
     164                 :             : 
     165                 :          87 :                         PrepareSortSupportFromOrderingOp(node->sortOperators[i], sortKey);
     166                 :          87 :                 }
     167                 :          67 :         }
     168                 :             : 
     169                 :             :         /* Now allocate the workspace for gather merge */
     170                 :          67 :         gather_merge_setup(gm_state);
     171                 :             : 
     172                 :         134 :         return gm_state;
     173                 :          67 : }
     174                 :             : 
     175                 :             : /* ----------------------------------------------------------------
     176                 :             :  *              ExecGatherMerge(node)
     177                 :             :  *
     178                 :             :  *              Scans the relation via multiple workers and returns
     179                 :             :  *              the next qualifying tuple.
     180                 :             :  * ----------------------------------------------------------------
     181                 :             :  */
     182                 :             : static TupleTableSlot *
     183                 :       42446 : ExecGatherMerge(PlanState *pstate)
     184                 :             : {
     185                 :       42446 :         GatherMergeState *node = castNode(GatherMergeState, pstate);
     186                 :       42446 :         TupleTableSlot *slot;
     187                 :       42446 :         ExprContext *econtext;
     188                 :             : 
     189         [ +  + ]:       42446 :         CHECK_FOR_INTERRUPTS();
     190                 :             : 
     191                 :             :         /*
     192                 :             :          * As with Gather, we don't launch workers until this node is actually
     193                 :             :          * executed.
     194                 :             :          */
     195         [ +  + ]:       42446 :         if (!node->initialized)
     196                 :             :         {
     197                 :          28 :                 EState     *estate = node->ps.state;
     198                 :          28 :                 GatherMerge *gm = castNode(GatherMerge, node->ps.plan);
     199                 :             : 
     200                 :             :                 /*
     201                 :             :                  * Sometimes we might have to run without parallelism; but if parallel
     202                 :             :                  * mode is active then we can try to fire up some workers.
     203                 :             :                  */
     204   [ +  -  -  + ]:          28 :                 if (gm->num_workers > 0 && estate->es_use_parallel_mode)
     205                 :             :                 {
     206                 :          28 :                         ParallelContext *pcxt;
     207                 :             : 
     208                 :             :                         /* Initialize, or re-initialize, shared state needed by workers. */
     209         [ +  + ]:          28 :                         if (!node->pei)
     210                 :          46 :                                 node->pei = ExecInitParallelPlan(outerPlanState(node),
     211                 :          23 :                                                                                                  estate,
     212                 :          23 :                                                                                                  gm->initParam,
     213                 :          23 :                                                                                                  gm->num_workers,
     214                 :          23 :                                                                                                  node->tuples_needed);
     215                 :             :                         else
     216                 :          10 :                                 ExecParallelReinitialize(outerPlanState(node),
     217                 :           5 :                                                                                  node->pei,
     218                 :           5 :                                                                                  gm->initParam);
     219                 :             : 
     220                 :             :                         /* Try to launch workers. */
     221                 :          28 :                         pcxt = node->pei->pcxt;
     222                 :          28 :                         LaunchParallelWorkers(pcxt);
     223                 :             :                         /* We save # workers launched for the benefit of EXPLAIN */
     224                 :          28 :                         node->nworkers_launched = pcxt->nworkers_launched;
     225                 :             : 
     226                 :             :                         /*
     227                 :             :                          * Count number of workers originally wanted and actually
     228                 :             :                          * launched.
     229                 :             :                          */
     230                 :          28 :                         estate->es_parallel_workers_to_launch += pcxt->nworkers_to_launch;
     231                 :          28 :                         estate->es_parallel_workers_launched += pcxt->nworkers_launched;
     232                 :             : 
     233                 :             :                         /* Set up tuple queue readers to read the results. */
     234         [ +  + ]:          28 :                         if (pcxt->nworkers_launched > 0)
     235                 :             :                         {
     236                 :          26 :                                 ExecParallelCreateReaders(node->pei);
     237                 :             :                                 /* Make a working array showing the active readers */
     238                 :          26 :                                 node->nreaders = pcxt->nworkers_launched;
     239                 :          26 :                                 node->reader = (TupleQueueReader **)
     240                 :          26 :                                         palloc(node->nreaders * sizeof(TupleQueueReader *));
     241                 :          26 :                                 memcpy(node->reader, node->pei->reader,
     242                 :             :                                            node->nreaders * sizeof(TupleQueueReader *));
     243                 :          26 :                         }
     244                 :             :                         else
     245                 :             :                         {
     246                 :             :                                 /* No workers?  Then never mind. */
     247                 :           2 :                                 node->nreaders = 0;
     248                 :           2 :                                 node->reader = NULL;
     249                 :             :                         }
     250                 :          28 :                 }
     251                 :             : 
     252                 :             :                 /* allow leader to participate if enabled or no choice */
     253   [ +  +  +  + ]:          28 :                 if (parallel_leader_participation || node->nreaders == 0)
     254                 :          27 :                         node->need_to_scan_locally = true;
     255                 :          28 :                 node->initialized = true;
     256                 :          28 :         }
     257                 :             : 
     258                 :             :         /*
     259                 :             :          * Reset per-tuple memory context to free any expression evaluation
     260                 :             :          * storage allocated in the previous tuple cycle.
     261                 :             :          */
     262                 :       42446 :         econtext = node->ps.ps_ExprContext;
     263                 :       42446 :         ResetExprContext(econtext);
     264                 :             : 
     265                 :             :         /*
     266                 :             :          * Get next tuple, either from one of our workers, or by running the plan
     267                 :             :          * ourselves.
     268                 :             :          */
     269                 :       42446 :         slot = gather_merge_getnext(node);
     270   [ +  +  -  + ]:       42446 :         if (TupIsNull(slot))
     271                 :          22 :                 return NULL;
     272                 :             : 
     273                 :             :         /* If no projection is required, we're done. */
     274         [ -  + ]:       42424 :         if (node->ps.ps_ProjInfo == NULL)
     275                 :       42424 :                 return slot;
     276                 :             : 
     277                 :             :         /*
     278                 :             :          * Form the result tuple using ExecProject(), and return it.
     279                 :             :          */
     280                 :           0 :         econtext->ecxt_outertuple = slot;
     281                 :           0 :         return ExecProject(node->ps.ps_ProjInfo);
     282                 :       42446 : }
     283                 :             : 
     284                 :             : /* ----------------------------------------------------------------
     285                 :             :  *              ExecEndGatherMerge
     286                 :             :  *
     287                 :             :  *              frees any storage allocated through C routines.
     288                 :             :  * ----------------------------------------------------------------
     289                 :             :  */
     290                 :             : void
     291                 :          67 : ExecEndGatherMerge(GatherMergeState *node)
     292                 :             : {
     293                 :          67 :         ExecEndNode(outerPlanState(node));      /* let children clean up first */
     294                 :          67 :         ExecShutdownGatherMerge(node);
     295                 :          67 : }
     296                 :             : 
     297                 :             : /* ----------------------------------------------------------------
     298                 :             :  *              ExecShutdownGatherMerge
     299                 :             :  *
     300                 :             :  *              Destroy the setup for parallel workers including parallel context.
     301                 :             :  * ----------------------------------------------------------------
     302                 :             :  */
     303                 :             : void
     304                 :          90 : ExecShutdownGatherMerge(GatherMergeState *node)
     305                 :             : {
     306                 :          90 :         ExecShutdownGatherMergeWorkers(node);
     307                 :             : 
     308                 :             :         /* Now destroy the parallel context. */
     309         [ +  + ]:          90 :         if (node->pei != NULL)
     310                 :             :         {
     311                 :          23 :                 ExecParallelCleanup(node->pei);
     312                 :          23 :                 node->pei = NULL;
     313                 :          23 :         }
     314                 :          90 : }
     315                 :             : 
     316                 :             : /* ----------------------------------------------------------------
     317                 :             :  *              ExecShutdownGatherMergeWorkers
     318                 :             :  *
     319                 :             :  *              Stop all the parallel workers.
     320                 :             :  * ----------------------------------------------------------------
     321                 :             :  */
     322                 :             : static void
     323                 :          98 : ExecShutdownGatherMergeWorkers(GatherMergeState *node)
     324                 :             : {
     325         [ +  + ]:          98 :         if (node->pei != NULL)
     326                 :          28 :                 ExecParallelFinish(node->pei);
     327                 :             : 
     328                 :             :         /* Flush local copy of reader array */
     329         [ +  + ]:          98 :         if (node->reader)
     330                 :          26 :                 pfree(node->reader);
     331                 :          98 :         node->reader = NULL;
     332                 :          98 : }
     333                 :             : 
     334                 :             : /* ----------------------------------------------------------------
     335                 :             :  *              ExecReScanGatherMerge
     336                 :             :  *
     337                 :             :  *              Prepare to re-scan the result of a GatherMerge.
     338                 :             :  * ----------------------------------------------------------------
     339                 :             :  */
     340                 :             : void
     341                 :           8 : ExecReScanGatherMerge(GatherMergeState *node)
     342                 :             : {
     343                 :           8 :         GatherMerge *gm = (GatherMerge *) node->ps.plan;
     344                 :           8 :         PlanState  *outerPlan = outerPlanState(node);
     345                 :             : 
     346                 :             :         /* Make sure any existing workers are gracefully shut down */
     347                 :           8 :         ExecShutdownGatherMergeWorkers(node);
     348                 :             : 
     349                 :             :         /* Free any unused tuples, so we don't leak memory across rescans */
     350                 :           8 :         gather_merge_clear_tuples(node);
     351                 :             : 
     352                 :             :         /* Mark node so that shared state will be rebuilt at next call */
     353                 :           8 :         node->initialized = false;
     354                 :           8 :         node->gm_initialized = false;
     355                 :             : 
     356                 :             :         /*
     357                 :             :          * Set child node's chgParam to tell it that the next scan might deliver a
     358                 :             :          * different set of rows within the leader process.  (The overall rowset
     359                 :             :          * shouldn't change, but the leader process's subset might; hence nodes
     360                 :             :          * between here and the parallel table scan node mustn't optimize on the
     361                 :             :          * assumption of an unchanging rowset.)
     362                 :             :          */
     363         [ -  + ]:           8 :         if (gm->rescan_param >= 0)
     364                 :          16 :                 outerPlan->chgParam = bms_add_member(outerPlan->chgParam,
     365                 :           8 :                                                                                          gm->rescan_param);
     366                 :             : 
     367                 :             :         /*
     368                 :             :          * If chgParam of subnode is not null then plan will be re-scanned by
     369                 :             :          * first ExecProcNode.  Note: because this does nothing if we have a
     370                 :             :          * rescan_param, it's currently guaranteed that parallel-aware child nodes
     371                 :             :          * will not see a ReScan call until after they get a ReInitializeDSM call.
     372                 :             :          * That ordering might not be something to rely on, though.  A good rule
     373                 :             :          * of thumb is that ReInitializeDSM should reset only shared state, ReScan
     374                 :             :          * should reset only local state, and anything that depends on both of
     375                 :             :          * those steps being finished must wait until the first ExecProcNode call.
     376                 :             :          */
     377         [ +  - ]:           8 :         if (outerPlan->chgParam == NULL)
     378                 :           0 :                 ExecReScan(outerPlan);
     379                 :           8 : }
     380                 :             : 
     381                 :             : /*
     382                 :             :  * Set up the data structures that we'll need for Gather Merge.
     383                 :             :  *
     384                 :             :  * We allocate these once on the basis of gm->num_workers, which is an
     385                 :             :  * upper bound for the number of workers we'll actually have.  During
     386                 :             :  * a rescan, we reset the structures to empty.  This approach simplifies
     387                 :             :  * not leaking memory across rescans.
     388                 :             :  *
     389                 :             :  * In the gm_slots[] array, index 0 is for the leader, and indexes 1 to n
     390                 :             :  * are for workers.  The values placed into gm_heap correspond to indexes
     391                 :             :  * in gm_slots[].  The gm_tuple_buffers[] array, however, is indexed from
     392                 :             :  * 0 to n-1; it has no entry for the leader.
     393                 :             :  */
     394                 :             : static void
     395                 :          67 : gather_merge_setup(GatherMergeState *gm_state)
     396                 :             : {
     397                 :          67 :         GatherMerge *gm = castNode(GatherMerge, gm_state->ps.plan);
     398                 :          67 :         int                     nreaders = gm->num_workers;
     399                 :          67 :         int                     i;
     400                 :             : 
     401                 :             :         /*
     402                 :             :          * Allocate gm_slots for the number of workers + one more slot for leader.
     403                 :             :          * Slot 0 is always for the leader.  Leader always calls ExecProcNode() to
     404                 :             :          * read the tuple, and then stores it directly into its gm_slots entry.
     405                 :             :          * For other slots, code below will call ExecInitExtraTupleSlot() to
     406                 :             :          * create a slot for the worker's results.  Note that during any single
     407                 :             :          * scan, we might have fewer than num_workers available workers, in which
     408                 :             :          * case the extra array entries go unused.
     409                 :             :          */
     410                 :          67 :         gm_state->gm_slots = (TupleTableSlot **)
     411                 :          67 :                 palloc0((nreaders + 1) * sizeof(TupleTableSlot *));
     412                 :             : 
     413                 :             :         /* Allocate the tuple slot and tuple array for each worker */
     414                 :          67 :         gm_state->gm_tuple_buffers = (GMReaderTupleBuffer *)
     415                 :          67 :                 palloc0(nreaders * sizeof(GMReaderTupleBuffer));
     416                 :             : 
     417         [ +  + ]:         231 :         for (i = 0; i < nreaders; i++)
     418                 :             :         {
     419                 :             :                 /* Allocate the tuple array with length MAX_TUPLE_STORE */
     420                 :         164 :                 gm_state->gm_tuple_buffers[i].tuple = palloc0_array(MinimalTuple, MAX_TUPLE_STORE);
     421                 :             : 
     422                 :             :                 /* Initialize tuple slot for worker */
     423                 :         164 :                 gm_state->gm_slots[i + 1] =
     424                 :         164 :                         ExecInitExtraTupleSlot(gm_state->ps.state, gm_state->tupDesc,
     425                 :             :                                                                    &TTSOpsMinimalTuple);
     426                 :         164 :         }
     427                 :             : 
     428                 :             :         /* Allocate the resources for the merge */
     429                 :         134 :         gm_state->gm_heap = binaryheap_allocate(nreaders + 1,
     430                 :             :                                                                                         heap_compare_slots,
     431                 :          67 :                                                                                         gm_state);
     432                 :          67 : }
     433                 :             : 
     434                 :             : /*
     435                 :             :  * Initialize the Gather Merge.
     436                 :             :  *
     437                 :             :  * Reset data structures to ensure they're empty.  Then pull at least one
     438                 :             :  * tuple from leader + each worker (or set its "done" indicator), and set up
     439                 :             :  * the heap.
     440                 :             :  */
     441                 :             : static void
     442                 :          28 : gather_merge_init(GatherMergeState *gm_state)
     443                 :             : {
     444                 :          28 :         int                     nreaders = gm_state->nreaders;
     445                 :          28 :         bool            nowait = true;
     446                 :          28 :         int                     i;
     447                 :             : 
     448                 :             :         /* Assert that gather_merge_setup made enough space */
     449         [ +  - ]:          28 :         Assert(nreaders <= castNode(GatherMerge, gm_state->ps.plan)->num_workers);
     450                 :             : 
     451                 :             :         /* Reset leader's tuple slot to empty */
     452                 :          28 :         gm_state->gm_slots[0] = NULL;
     453                 :             : 
     454                 :             :         /* Reset the tuple slot and tuple array for each worker */
     455         [ +  + ]:          99 :         for (i = 0; i < nreaders; i++)
     456                 :             :         {
     457                 :             :                 /* Reset tuple array to empty */
     458                 :          71 :                 gm_state->gm_tuple_buffers[i].nTuples = 0;
     459                 :          71 :                 gm_state->gm_tuple_buffers[i].readCounter = 0;
     460                 :             :                 /* Reset done flag to not-done */
     461                 :          71 :                 gm_state->gm_tuple_buffers[i].done = false;
     462                 :             :                 /* Ensure output slot is empty */
     463                 :          71 :                 ExecClearTuple(gm_state->gm_slots[i + 1]);
     464                 :          71 :         }
     465                 :             : 
     466                 :             :         /* Reset binary heap to empty */
     467                 :          28 :         binaryheap_reset(gm_state->gm_heap);
     468                 :             : 
     469                 :             :         /*
     470                 :             :          * First, try to read a tuple from each worker (including leader) in
     471                 :             :          * nowait mode.  After this, if not all workers were able to produce a
     472                 :             :          * tuple (or a "done" indication), then re-read from remaining workers,
     473                 :             :          * this time using wait mode.  Add all live readers (those producing at
     474                 :             :          * least one tuple) to the heap.
     475                 :             :          */
     476                 :             : reread:
     477         [ +  + ]:         238 :         for (i = 0; i <= nreaders; i++)
     478                 :             :         {
     479         [ +  + ]:         187 :                 CHECK_FOR_INTERRUPTS();
     480                 :             : 
     481                 :             :                 /* skip this source if already known done */
     482   [ +  +  +  + ]:         187 :                 if ((i == 0) ? gm_state->need_to_scan_locally :
     483                 :         136 :                         !gm_state->gm_tuple_buffers[i - 1].done)
     484                 :             :                 {
     485   [ +  +  +  + ]:         184 :                         if (TupIsNull(gm_state->gm_slots[i]))
     486                 :             :                         {
     487                 :             :                                 /* Don't have a tuple yet, try to get one */
     488         [ +  + ]:         161 :                                 if (gather_merge_readnext(gm_state, i, nowait))
     489                 :          70 :                                         binaryheap_add_unordered(gm_state->gm_heap,
     490                 :          35 :                                                                                          Int32GetDatum(i));
     491                 :         161 :                         }
     492                 :             :                         else
     493                 :             :                         {
     494                 :             :                                 /*
     495                 :             :                                  * We already got at least one tuple from this worker, but
     496                 :             :                                  * might as well see if it has any more ready by now.
     497                 :             :                                  */
     498                 :          23 :                                 load_tuple_array(gm_state, i);
     499                 :             :                         }
     500                 :         184 :                 }
     501                 :         187 :         }
     502                 :             : 
     503                 :             :         /* need not recheck leader, since nowait doesn't matter for it */
     504         [ +  + ]:         123 :         for (i = 1; i <= nreaders; i++)
     505                 :             :         {
     506   [ +  +  +  + ]:         125 :                 if (!gm_state->gm_tuple_buffers[i - 1].done &&
     507         [ +  - ]:          30 :                         TupIsNull(gm_state->gm_slots[i]))
     508                 :             :                 {
     509                 :          23 :                         nowait = false;
     510                 :          23 :                         goto reread;
     511                 :             :                 }
     512                 :          72 :         }
     513                 :             : 
     514                 :             :         /* Now heapify the heap. */
     515                 :          28 :         binaryheap_build(gm_state->gm_heap);
     516                 :             : 
     517                 :          28 :         gm_state->gm_initialized = true;
     518                 :          28 : }
     519                 :             : 
     520                 :             : /*
     521                 :             :  * Clear out the tuple table slot, and any unused pending tuples,
     522                 :             :  * for each gather merge input.
     523                 :             :  */
     524                 :             : static void
     525                 :          30 : gather_merge_clear_tuples(GatherMergeState *gm_state)
     526                 :             : {
     527                 :          30 :         int                     i;
     528                 :             : 
     529         [ +  + ]:         111 :         for (i = 0; i < gm_state->nreaders; i++)
     530                 :             :         {
     531                 :          81 :                 GMReaderTupleBuffer *tuple_buffer = &gm_state->gm_tuple_buffers[i];
     532                 :             : 
     533         [ -  + ]:          81 :                 while (tuple_buffer->readCounter < tuple_buffer->nTuples)
     534                 :           0 :                         pfree(tuple_buffer->tuple[tuple_buffer->readCounter++]);
     535                 :             : 
     536                 :          81 :                 ExecClearTuple(gm_state->gm_slots[i + 1]);
     537                 :          81 :         }
     538                 :          30 : }
     539                 :             : 
     540                 :             : /*
     541                 :             :  * Read the next tuple for gather merge.
     542                 :             :  *
     543                 :             :  * Fetch the sorted tuple out of the heap.
     544                 :             :  */
     545                 :             : static TupleTableSlot *
     546                 :       42446 : gather_merge_getnext(GatherMergeState *gm_state)
     547                 :             : {
     548                 :       42446 :         int                     i;
     549                 :             : 
     550         [ +  + ]:       42446 :         if (!gm_state->gm_initialized)
     551                 :             :         {
     552                 :             :                 /*
     553                 :             :                  * First time through: pull the first tuple from each participant, and
     554                 :             :                  * set up the heap.
     555                 :             :                  */
     556                 :          28 :                 gather_merge_init(gm_state);
     557                 :          28 :         }
     558                 :             :         else
     559                 :             :         {
     560                 :             :                 /*
     561                 :             :                  * Otherwise, pull the next tuple from whichever participant we
     562                 :             :                  * returned from last time, and reinsert that participant's index into
     563                 :             :                  * the heap, because it might now compare differently against the
     564                 :             :                  * other elements of the heap.
     565                 :             :                  */
     566                 :       42418 :                 i = DatumGetInt32(binaryheap_first(gm_state->gm_heap));
     567                 :             : 
     568         [ +  + ]:       42418 :                 if (gather_merge_readnext(gm_state, i, false))
     569                 :       42389 :                         binaryheap_replace_first(gm_state->gm_heap, Int32GetDatum(i));
     570                 :             :                 else
     571                 :             :                 {
     572                 :             :                         /* reader exhausted, remove it from heap */
     573                 :          29 :                         (void) binaryheap_remove_first(gm_state->gm_heap);
     574                 :             :                 }
     575                 :             :         }
     576                 :             : 
     577         [ +  + ]:       42446 :         if (binaryheap_empty(gm_state->gm_heap))
     578                 :             :         {
     579                 :             :                 /* All the queues are exhausted, and so is the heap */
     580                 :          22 :                 gather_merge_clear_tuples(gm_state);
     581                 :          22 :                 return NULL;
     582                 :             :         }
     583                 :             :         else
     584                 :             :         {
     585                 :             :                 /* Return next tuple from whichever participant has the leading one */
     586                 :       42424 :                 i = DatumGetInt32(binaryheap_first(gm_state->gm_heap));
     587                 :       42424 :                 return gm_state->gm_slots[i];
     588                 :             :         }
     589                 :       42446 : }
     590                 :             : 
     591                 :             : /*
     592                 :             :  * Read tuple(s) for given reader in nowait mode, and load into its tuple
     593                 :             :  * array, until we have MAX_TUPLE_STORE of them or would have to block.
     594                 :             :  */
     595                 :             : static void
     596                 :          37 : load_tuple_array(GatherMergeState *gm_state, int reader)
     597                 :             : {
     598                 :          37 :         GMReaderTupleBuffer *tuple_buffer;
     599                 :          37 :         int                     i;
     600                 :             : 
     601                 :             :         /* Don't do anything if this is the leader. */
     602         [ +  + ]:          37 :         if (reader == 0)
     603                 :          22 :                 return;
     604                 :             : 
     605                 :          15 :         tuple_buffer = &gm_state->gm_tuple_buffers[reader - 1];
     606                 :             : 
     607                 :             :         /* If there's nothing in the array, reset the counters to zero. */
     608         [ +  + ]:          15 :         if (tuple_buffer->nTuples == tuple_buffer->readCounter)
     609                 :          14 :                 tuple_buffer->nTuples = tuple_buffer->readCounter = 0;
     610                 :             : 
     611                 :             :         /* Try to fill additional slots in the array. */
     612         [ +  + ]:         124 :         for (i = tuple_buffer->nTuples; i < MAX_TUPLE_STORE; i++)
     613                 :             :         {
     614                 :         117 :                 MinimalTuple tuple;
     615                 :             : 
     616                 :         234 :                 tuple = gm_readnext_tuple(gm_state,
     617                 :         117 :                                                                   reader,
     618                 :             :                                                                   true,
     619                 :         117 :                                                                   &tuple_buffer->done);
     620         [ +  + ]:         117 :                 if (!tuple)
     621                 :           8 :                         break;
     622                 :         109 :                 tuple_buffer->tuple[i] = tuple;
     623                 :         109 :                 tuple_buffer->nTuples++;
     624         [ +  + ]:         117 :         }
     625                 :          37 : }
     626                 :             : 
     627                 :             : /*
     628                 :             :  * Store the next tuple for a given reader into the appropriate slot.
     629                 :             :  *
     630                 :             :  * Returns true if successful, false if not (either reader is exhausted,
     631                 :             :  * or we didn't want to wait for a tuple).  Sets done flag if reader
     632                 :             :  * is found to be exhausted.
     633                 :             :  */
     634                 :             : static bool
     635                 :       42579 : gather_merge_readnext(GatherMergeState *gm_state, int reader, bool nowait)
     636                 :             : {
     637                 :       42579 :         GMReaderTupleBuffer *tuple_buffer;
     638                 :       42579 :         MinimalTuple tup;
     639                 :             : 
     640                 :             :         /*
     641                 :             :          * If we're being asked to generate a tuple from the leader, then we just
     642                 :             :          * call ExecProcNode as normal to produce one.
     643                 :             :          */
     644         [ +  + ]:       42579 :         if (reader == 0)
     645                 :             :         {
     646         [ -  + ]:       42322 :                 if (gm_state->need_to_scan_locally)
     647                 :             :                 {
     648                 :       42322 :                         PlanState  *outerPlan = outerPlanState(gm_state);
     649                 :       42322 :                         TupleTableSlot *outerTupleSlot;
     650                 :       42322 :                         EState     *estate = gm_state->ps.state;
     651                 :             : 
     652                 :             :                         /* Install our DSA area while executing the plan. */
     653         [ +  - ]:       42322 :                         estate->es_query_dsa = gm_state->pei ? gm_state->pei->area : NULL;
     654                 :       42322 :                         outerTupleSlot = ExecProcNode(outerPlan);
     655                 :       42322 :                         estate->es_query_dsa = NULL;
     656                 :             : 
     657   [ +  +  +  + ]:       42322 :                         if (!TupIsNull(outerTupleSlot))
     658                 :             :                         {
     659                 :       42301 :                                 gm_state->gm_slots[0] = outerTupleSlot;
     660                 :       42301 :                                 return true;
     661                 :             :                         }
     662                 :             :                         /* need_to_scan_locally serves as "done" flag for leader */
     663                 :          21 :                         gm_state->need_to_scan_locally = false;
     664         [ +  + ]:       42322 :                 }
     665                 :          21 :                 return false;
     666                 :             :         }
     667                 :             : 
     668                 :             :         /* Otherwise, check the state of the relevant tuple buffer. */
     669                 :         257 :         tuple_buffer = &gm_state->gm_tuple_buffers[reader - 1];
     670                 :             : 
     671         [ +  + ]:         257 :         if (tuple_buffer->nTuples > tuple_buffer->readCounter)
     672                 :             :         {
     673                 :             :                 /* Return any tuple previously read that is still buffered. */
     674                 :         109 :                 tup = tuple_buffer->tuple[tuple_buffer->readCounter++];
     675                 :         109 :         }
     676         [ +  + ]:         148 :         else if (tuple_buffer->done)
     677                 :             :         {
     678                 :             :                 /* Reader is known to be exhausted. */
     679                 :           8 :                 return false;
     680                 :             :         }
     681                 :             :         else
     682                 :             :         {
     683                 :             :                 /* Read and buffer next tuple. */
     684                 :         280 :                 tup = gm_readnext_tuple(gm_state,
     685                 :         140 :                                                                 reader,
     686                 :         140 :                                                                 nowait,
     687                 :         140 :                                                                 &tuple_buffer->done);
     688         [ +  + ]:         140 :                 if (!tup)
     689                 :         126 :                         return false;
     690                 :             : 
     691                 :             :                 /*
     692                 :             :                  * Attempt to read more tuples in nowait mode and store them in the
     693                 :             :                  * pending-tuple array for the reader.
     694                 :             :                  */
     695                 :          14 :                 load_tuple_array(gm_state, reader);
     696                 :             :         }
     697                 :             : 
     698         [ +  - ]:         123 :         Assert(tup);
     699                 :             : 
     700                 :             :         /* Build the TupleTableSlot for the given tuple */
     701                 :         246 :         ExecStoreMinimalTuple(tup,      /* tuple to store */
     702                 :         123 :                                                   gm_state->gm_slots[reader],        /* slot in which to
     703                 :             :                                                                                                                  * store the tuple */
     704                 :             :                                                   true);        /* pfree tuple when done with it */
     705                 :             : 
     706                 :         123 :         return true;
     707                 :       42579 : }
     708                 :             : 
     709                 :             : /*
     710                 :             :  * Attempt to read a tuple from given worker.
     711                 :             :  */
     712                 :             : static MinimalTuple
     713                 :         257 : gm_readnext_tuple(GatherMergeState *gm_state, int nreader, bool nowait,
     714                 :             :                                   bool *done)
     715                 :             : {
     716                 :         257 :         TupleQueueReader *reader;
     717                 :         257 :         MinimalTuple tup;
     718                 :             : 
     719                 :             :         /* Check for async events, particularly messages from workers. */
     720         [ +  + ]:         257 :         CHECK_FOR_INTERRUPTS();
     721                 :             : 
     722                 :             :         /*
     723                 :             :          * Attempt to read a tuple.
     724                 :             :          *
     725                 :             :          * Note that TupleQueueReaderNext will just return NULL for a worker which
     726                 :             :          * fails to initialize.  We'll treat that worker as having produced no
     727                 :             :          * tuples; WaitForParallelWorkersToFinish will error out when we get
     728                 :             :          * there.
     729                 :             :          */
     730                 :         257 :         reader = gm_state->reader[nreader - 1];
     731                 :         257 :         tup = TupleQueueReaderNext(reader, nowait, done);
     732                 :             : 
     733                 :             :         /*
     734                 :             :          * Since we'll be buffering these across multiple calls, we need to make a
     735                 :             :          * copy.
     736                 :             :          */
     737         [ +  + ]:         257 :         return tup ? heap_copy_minimal_tuple(tup, 0) : NULL;
     738                 :         257 : }
     739                 :             : 
     740                 :             : /*
     741                 :             :  * We have one slot for each item in the heap array.  We use SlotNumber
     742                 :             :  * to store slot indexes.  This doesn't actually provide any formal
     743                 :             :  * type-safety, but it makes the code more self-documenting.
     744                 :             :  */
     745                 :             : typedef int32 SlotNumber;
     746                 :             : 
     747                 :             : /*
     748                 :             :  * Compare the tuples in the two given slots.
     749                 :             :  */
     750                 :             : static int32
     751                 :         318 : heap_compare_slots(Datum a, Datum b, void *arg)
     752                 :             : {
     753                 :         318 :         GatherMergeState *node = (GatherMergeState *) arg;
     754                 :         318 :         SlotNumber      slot1 = DatumGetInt32(a);
     755                 :         318 :         SlotNumber      slot2 = DatumGetInt32(b);
     756                 :             : 
     757                 :         318 :         TupleTableSlot *s1 = node->gm_slots[slot1];
     758                 :         318 :         TupleTableSlot *s2 = node->gm_slots[slot2];
     759                 :         318 :         int                     nkey;
     760                 :             : 
     761         [ +  - ]:         318 :         Assert(!TupIsNull(s1));
     762         [ +  - ]:         318 :         Assert(!TupIsNull(s2));
     763                 :             : 
     764         [ +  + ]:         487 :         for (nkey = 0; nkey < node->gm_nkeys; nkey++)
     765                 :             :         {
     766                 :         318 :                 SortSupport sortKey = node->gm_sortkeys + nkey;
     767                 :         318 :                 AttrNumber      attno = sortKey->ssup_attno;
     768                 :         318 :                 Datum           datum1,
     769                 :             :                                         datum2;
     770                 :         318 :                 bool            isNull1,
     771                 :             :                                         isNull2;
     772                 :         318 :                 int                     compare;
     773                 :             : 
     774                 :         318 :                 datum1 = slot_getattr(s1, attno, &isNull1);
     775                 :         318 :                 datum2 = slot_getattr(s2, attno, &isNull2);
     776                 :             : 
     777                 :         636 :                 compare = ApplySortComparator(datum1, isNull1,
     778                 :         318 :                                                                           datum2, isNull2,
     779                 :         318 :                                                                           sortKey);
     780         [ +  + ]:         318 :                 if (compare != 0)
     781                 :             :                 {
     782         [ +  + ]:         149 :                         INVERT_COMPARE_RESULT(compare);
     783                 :         149 :                         return compare;
     784                 :             :                 }
     785         [ +  + ]:         318 :         }
     786                 :         169 :         return 0;
     787                 :         318 : }
        

Generated by: LCOV version 2.3.2-1