1. 25 Aug, 2000 5 commits
  2. 24 Aug, 2000 5 commits
  3. 23 Aug, 2000 4 commits
  4. 22 Aug, 2000 6 commits
  5. 21 Aug, 2000 4 commits
  6. 20 Aug, 2000 5 commits
  7. 19 Aug, 2000 1 commit
  8. 13 Aug, 2000 1 commit
    • Tom Lane's avatar
      Clean up handling of variable-free qual clauses. System now does the · 37168b8d
      Tom Lane authored
      right thing with variable-free clauses that contain noncachable functions,
      such as 'WHERE random() < 0.5' --- these are evaluated once per
      potential output tuple.  Expressions that contain only Params are
      now candidates to be indexscan quals --- for example, 'var = ($1 + 1)'
      can now be indexed.  Cope with RelabelType nodes atop potential indexscan
      variables --- this oversight prevents 7.0.* from recognizing some
      potentially indexscanable situations.
      37168b8d
  9. 12 Aug, 2000 2 commits
  10. 11 Aug, 2000 4 commits
  11. 10 Aug, 2000 1 commit
  12. 09 Aug, 2000 1 commit
  13. 08 Aug, 2000 1 commit
    • Tom Lane's avatar
      Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist' · 62e29fe2
      Tom Lane authored
      from Param nodes, per discussion a few days ago on pghackers.  Add new
      expression node type FieldSelect that implements the functionality where
      it's actually needed.  Clean up some other unused fields in Func nodes
      as well.
      NOTE: initdb forced due to change in stored expression trees for rules.
      62e29fe2