1. 24 Mar, 2017 1 commit
  2. 21 Mar, 2017 1 commit
  3. 17 Mar, 2017 1 commit
  4. 14 Mar, 2017 1 commit
    • Varun Gupta's avatar
      MDEV-6486: Assertion `!table || (!table->read_set || bitmap_is_set(table->read_set, field_index))' · adbe1c5f
      Varun Gupta authored
      failed with SELECT SQ, TEXT field
      
      The functon find_all_keys does call Item_subselect::walk, which calls walk() for the subquery
      The issue is that when a field is represented by Item_outer_ref(Item_direct_ref(Item_copy_string( ...))).
      Item_copy_string does have a pointer to an Item_field in Item_copy::item but does not implement Item::walk method, so we are not
      able to set the bitmap for that field. This is the reason why the assert fails.
      
      Fixed by adding the walk method to Item_copy class.
      adbe1c5f
  5. 13 Mar, 2017 1 commit
  6. 12 Mar, 2017 1 commit
  7. 09 Mar, 2017 1 commit
  8. 08 Mar, 2017 6 commits
  9. 06 Mar, 2017 1 commit
  10. 05 Mar, 2017 1 commit
  11. 03 Mar, 2017 1 commit
    • Marko Mäkelä's avatar
      MDEV-11520: Retry posix_fallocate() after EINTR. · 6b8173b6
      Marko Mäkelä authored
      The function posix_fallocate() as well as the Linux system call
      fallocate() can return EINTR when the operation was interrupted
      by a signal. In that case, keep retrying the operation, except
      if InnoDB shutdown has been initiated.
      6b8173b6
  12. 28 Feb, 2017 1 commit
  13. 27 Feb, 2017 23 commits