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

nodeMergejoin.c

  • Tom Lane's avatar
    c6e3ac11
    Create a "sort support" interface API for faster sorting. · c6e3ac11
    Tom Lane authored
    This patch creates an API whereby a btree index opclass can optionally
    provide non-SQL-callable support functions for sorting.  In the initial
    patch, we only use this to provide a directly-callable comparator function,
    which can be invoked with a bit less overhead than the traditional
    SQL-callable comparator.  While that should be of value in itself, the real
    reason for doing this is to provide a datatype-extensible framework for
    more aggressive optimizations, as in Peter Geoghegan's recent work.
    
    Robert Haas and Tom Lane
    c6e3ac11
    History
    Create a "sort support" interface API for faster sorting.
    Tom Lane authored
    This patch creates an API whereby a btree index opclass can optionally
    provide non-SQL-callable support functions for sorting.  In the initial
    patch, we only use this to provide a directly-callable comparator function,
    which can be invoked with a bit less overhead than the traditional
    SQL-callable comparator.  While that should be of value in itself, the real
    reason for doing this is to provide a datatype-extensible framework for
    more aggressive optimizations, as in Peter Geoghegan's recent work.
    
    Robert Haas and Tom Lane