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

ltree

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Robert Haas authored
    Commit 749a787c bumped the extension
    version on all of these extensions already, and we haven't had a
    release since then, so we can make further changes without bumping the
    extension version again.  Take this opportunity to mark all of the
    functions exported by these modules PARALLEL SAFE -- except for
    pg_trgm's set_limit().  Mark that one PARALLEL RESTRICTED, because it
    makes a persistent change to a GUC value.
    
    Note that some of the markings added by this commit don't have any
    effect; for example, gseg_picksplit() isn't likely to be mentioned
    explicitly in a query and therefore it's parallel-safety marking will
    never be consulted.  But this commit just marks everything for
    consistency: if it were somehow used in a query, that would be fine as
    far as parallel query is concerned, since it does not consult any
    backend-private state, attempt to write data, etc.
    
    Andreas Karlsson, with a few revisions by me.
    2910fc82
    History