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

indxpath.c

Blame
    • Thomas G. Lockhart's avatar
      6912beea
      Allow binary-compatible indices to be considered when checking for valid · 6912beea
      Thomas G. Lockhart authored
       indices for restriction clauses containing a constant.
      Note that if an index does not match directly (usually because the types
       on both side of the clause don't match), and if a binary-compatible index
       is identified, then the operator function will be replaced by a new
       one. Should not be a problem, but be sure that if types are listed as
       being binary compatible (in parse_coerce.h) then the comparison functions
       are also binary-compatible, giving equivalent results.
      6912beea
      History
      Allow binary-compatible indices to be considered when checking for valid
      Thomas G. Lockhart authored
       indices for restriction clauses containing a constant.
      Note that if an index does not match directly (usually because the types
       on both side of the clause don't match), and if a binary-compatible index
       is identified, then the operator function will be replaced by a new
       one. Should not be a problem, but be sure that if types are listed as
       being binary compatible (in parse_coerce.h) then the comparison functions
       are also binary-compatible, giving equivalent results.