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

pg_upgrade_support.c

Blame
    • Peter Eisentraut's avatar
      30982be4
      Integrate pg_upgrade_support module into backend · 30982be4
      Peter Eisentraut authored
      
      Previously, these functions were created in a schema "binary_upgrade",
      which was deleted after pg_upgrade was finished.  Because we don't want
      to keep that schema around permanently, move them to pg_catalog but
      rename them with a binary_upgrade_... prefix.
      
      The provided functions are only small wrappers around global variables
      that were added specifically for pg_upgrade use, so keeping the module
      separate does not create any modularity.
      
      The functions still check that they are only called in binary upgrade
      mode, so it is not possible to call these during normal operation.
      
      Reviewed-by: default avatarMichael Paquier <michael.paquier@gmail.com>
      30982be4
      History
      Integrate pg_upgrade_support module into backend
      Peter Eisentraut authored
      
      Previously, these functions were created in a schema "binary_upgrade",
      which was deleted after pg_upgrade was finished.  Because we don't want
      to keep that schema around permanently, move them to pg_catalog but
      rename them with a binary_upgrade_... prefix.
      
      The provided functions are only small wrappers around global variables
      that were added specifically for pg_upgrade use, so keeping the module
      separate does not create any modularity.
      
      The functions still check that they are only called in binary upgrade
      mode, so it is not possible to call these during normal operation.
      
      Reviewed-by: default avatarMichael Paquier <michael.paquier@gmail.com>