1. 16 Apr, 2016 2 commits
  2. 15 Apr, 2016 2 commits
  3. 14 Apr, 2016 2 commits
  4. 13 Apr, 2016 2 commits
    • Vicențiu Ciorbaru's avatar
      Make ntile use args[0] for it's argument. · 31fb045c
      Vicențiu Ciorbaru authored
      Don't hold a separate pointer as args[0] changes during fix_fields /
      split_sum_func.
      31fb045c
    • Vicențiu Ciorbaru's avatar
      Fix another bug in dense_rank. · 3dd08a11
      Vicențiu Ciorbaru authored
      When ordering by a column and partitioning by another, we must reset the
      peer_tracker for dense_rank, regardless if the value for the order
      column changes or not.
      
      Example:
      select a, b, dense_rank() over (partition by b order by a)
      a  |  b  |  dense_rank
      ----------------------
      1  | p1  |           1
      2  | p1  |           2
      2  | p2  |           1   // Here, without this fix we returned 0.
      2  | p2  |           2   // And 1 here.
      3dd08a11
  5. 11 Apr, 2016 4 commits
  6. 10 Apr, 2016 4 commits
  7. 09 Apr, 2016 1 commit
  8. 08 Apr, 2016 5 commits
  9. 07 Apr, 2016 6 commits
  10. 06 Apr, 2016 10 commits
  11. 05 Apr, 2016 2 commits