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

parse_oper.c

Blame
    • Tom Lane's avatar
      d54ca567
      Install a lookaside cache to speed up repeated lookups of the same operator · d54ca567
      Tom Lane authored
      by short-circuiting schema search path and ambiguous-operator resolution
      computations.  Remarkably, this buys as much as 45% speedup of repetitive
      simple queries that involve operators that are not an exact match to the
      input datatypes.  It should be marginally faster even for exact-match
      cases, though I've not had success in proving an improvement in benchmark
      tests.  Per report from Guillame Smet and subsequent discussion.
      d54ca567
      History
      Install a lookaside cache to speed up repeated lookups of the same operator
      Tom Lane authored
      by short-circuiting schema search path and ambiguous-operator resolution
      computations.  Remarkably, this buys as much as 45% speedup of repetitive
      simple queries that involve operators that are not an exact match to the
      input datatypes.  It should be marginally faster even for exact-match
      cases, though I've not had success in proving an improvement in benchmark
      tests.  Per report from Guillame Smet and subsequent discussion.