1. 21 Jan, 2019 3 commits
  2. 19 Jan, 2019 1 commit
  3. 16 Jan, 2019 3 commits
  4. 15 Jan, 2019 1 commit
  5. 11 Jan, 2019 1 commit
  6. 02 Jan, 2019 1 commit
  7. 18 Dec, 2018 1 commit
  8. 17 Dec, 2018 1 commit
  9. 13 Dec, 2018 1 commit
  10. 28 Nov, 2018 1 commit
  11. 16 Nov, 2018 1 commit
  12. 15 Nov, 2018 2 commits
  13. 02 Nov, 2018 1 commit
  14. 01 Nov, 2018 2 commits
  15. 31 Oct, 2018 1 commit
  16. 30 Oct, 2018 3 commits
  17. 26 Oct, 2018 1 commit
  18. 24 Oct, 2018 4 commits
  19. 23 Oct, 2018 2 commits
  20. 20 Oct, 2018 1 commit
  21. 19 Oct, 2018 1 commit
  22. 17 Oct, 2018 1 commit
  23. 15 Oct, 2018 2 commits
  24. 10 Oct, 2018 1 commit
  25. 07 Oct, 2018 1 commit
    • Igor Babaev's avatar
      MDEV-17382 Hash join algorithm should not be used to join materialized · 0b7339eb
      Igor Babaev authored
                 derived table / view by equality
      
      Now rows of a materialized derived table are always put into a
      temporary table before join operation. If BNLH is used to join this
      table with the result of a partial join then both operands of the
      join are actually put into main memory. In most cases this is not
      efficient.
      We could avoid this by sending the rows of the derived table directly
      to the join operation. However this kind of data flow is not supported
      yet.
      Fixed by not allowing usage of hash join algorithm to join a materialized
      derived table if it's joined by an equality predicate of the form
      f=e where f is a field of the derived table.
      0b7339eb
  26. 21 Sep, 2018 2 commits