Skip to content
Snippets Groups Projects
Select Git revision
  • benchmark-tools
  • postgres-lambda
  • master default
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
23 results

execParallel.c

Blame
    • Robert Haas's avatar
      8126eaee
      Clean up a few parallelism-related things that pgindent wants to mangle. · 8126eaee
      Robert Haas authored
      In nodeFuncs.c, pgindent wants to introduce spurious indentation into
      the definitions of planstate_tree_walker and planstate_walk_subplans.
      Fix that by spreading the definition out across several lines, similar
      to what is already done for other walker functions in that file.
      
      In execParallel.c, in the definition of SharedExecutorInstrumentation,
      pgindent wants to insert more whitespace between the type name and the
      member name.  That causes it to mangle comments later on the line.  Fix
      by moving the comments out of line.  Now that we have a bit more room,
      add some more details that may be useful to the next person reading
      this code.
      8126eaee
      History
      Clean up a few parallelism-related things that pgindent wants to mangle.
      Robert Haas authored
      In nodeFuncs.c, pgindent wants to introduce spurious indentation into
      the definitions of planstate_tree_walker and planstate_walk_subplans.
      Fix that by spreading the definition out across several lines, similar
      to what is already done for other walker functions in that file.
      
      In execParallel.c, in the definition of SharedExecutorInstrumentation,
      pgindent wants to insert more whitespace between the type name and the
      member name.  That causes it to mangle comments later on the line.  Fix
      by moving the comments out of line.  Now that we have a bit more room,
      add some more details that may be useful to the next person reading
      this code.