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_clause.c

  • Tom Lane's avatar
    a5b37094
    Teach query_tree_walker, query_tree_mutator, and SS_finalize_plan to · a5b37094
    Tom Lane authored
    process function RTE expressions, which they were previously missing.
    This allows outer-Var references and subselects to work correctly in
    the arguments of a function RTE.  Install check to prevent function RTEs
    from cross-referencing Vars of sibling FROM-items, which doesn't make
    any sense (if you want to join, write a JOIN or WHERE clause).
    a5b37094
    History
    Teach query_tree_walker, query_tree_mutator, and SS_finalize_plan to
    Tom Lane authored
    process function RTE expressions, which they were previously missing.
    This allows outer-Var references and subselects to work correctly in
    the arguments of a function RTE.  Install check to prevent function RTEs
    from cross-referencing Vars of sibling FROM-items, which doesn't make
    any sense (if you want to join, write a JOIN or WHERE clause).