1. 29 Dec, 2018 5 commits
  2. 28 Dec, 2018 2 commits
    • Marko Mäkelä's avatar
      Merge 10.1 into 10.2 · 33caaba5
      Marko Mäkelä authored
      33caaba5
    • Eugene Kosov's avatar
      MDEV-17470 Orphan temporary files after interrupted ALTER cause InnoDB:... · c5a5eaa9
      Eugene Kosov authored
      MDEV-17470 Orphan temporary files after interrupted ALTER cause InnoDB: Operating system error number 17 and eventual fatal error 71
      
      Orphan #sql* tables may remain after ALTER TABLE
      was interrupted by timeout or KILL or client disconnect.
      
      This is a regression caused by MDEV-16515.
      
      Similar to temporary tables (MDEV-16647), we had better ignore the
      KILL when dropping the original table in the final part of ALTER TABLE.
      
      Closes #1020
      c5a5eaa9
  3. 25 Dec, 2018 1 commit
  4. 24 Dec, 2018 1 commit
  5. 22 Dec, 2018 1 commit
  6. 21 Dec, 2018 12 commits
  7. 20 Dec, 2018 15 commits
  8. 19 Dec, 2018 3 commits
    • Marko Mäkelä's avatar
      Merge 10.1 into 10.2 · 610e4034
      Marko Mäkelä authored
      610e4034
    • Marko Mäkelä's avatar
      MDEV-18025: Improve test case and consistency checks · dd72d7d5
      Marko Mäkelä authored
      Write a test case that computes valid crc32 checksums for
      an encrypted page, but zeroes out the payload area, so
      that the checksum after decryption fails.
      
      xb_fil_cur_read(): Validate the page number before trying
      any checksum calculation or decrypting or decompression.
      Also, skip zero-filled pages. For page_compressed pages,
      ensure that the FIL_PAGE_TYPE was changed. Also, reject
      FIL_PAGE_PAGE_COMPRESSED_ENCRYPTED if no decryption was attempted.
      dd72d7d5
    • Varun Gupta's avatar
      MDEV-15424: Unreasonable SQL Error (1356) on select from view · 82a4d55d
      Varun Gupta authored
      While printing a view containing a window function we were printing it as an
      Item_field object instead of an Item_window_func object. This is incorrect and this
      leads to us throwing an error ER_VIEW_INVALID.
      Fixed by adjusting the Item_ref:print function.
      Also made UDF function aware if there arguments have window function.
      82a4d55d