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

backend

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Robert Haas authored
    For parallel query, we need to be able to pass a Plan to a worker, so
    that it knows what it's supposed to do.  We could invent our own way
    of serializing plans for that purpose, but piggybacking on the
    existing node infrastructure seems like a much better idea.
    
    Initially, we'll probably only support a limited number of nodes
    within parallel workers, but this commit adds support for everything
    in plannodes.h except CustomScan, because doing it all at once seems
    easier than doing it piecemeal, and it makes testing this code easier,
    too.  CustomScan is excluded because making that work requires a
    larger rework of that facility.
    
    Amit Kapila, reviewed and slightly revised by me.
    a0d9f6e4
    History