1. 28 Sep, 2016 12 commits
  2. 27 Sep, 2016 16 commits
  3. 26 Sep, 2016 5 commits
  4. 24 Sep, 2016 2 commits
  5. 23 Sep, 2016 3 commits
  6. 22 Sep, 2016 2 commits
    • Jan Lindström's avatar
      Do not use os_file_read() directly for reading first page of the · 1d55cfce
      Jan Lindström authored
      tablespace. Instead use fil_read() with syncronous setting.
      Fix test failures and mask tablespace number as it could
      change in concurrent mtr runs.
      1d55cfce
    • Jan Lindström's avatar
      MDEV-9931: InnoDB reads first page of every .ibd file at startup · 2bedc397
      Jan Lindström authored
      Analysis: By design InnoDB was reading first page of every .ibd file
      at startup to find out is tablespace encrypted or not. This is
      because tablespace could have been encrypted always, not
      encrypted newer or encrypted based on configuration and this
      information can be find realible only from first page of .ibd file.
      
      Fix: Do not read first page of every .ibd file at startup. Instead
      whenever tablespace is first time accedded we will read the first
      page to find necessary information about tablespace encryption
      status.
      
      TODO: Add support for SYS_TABLEOPTIONS where all table options
      encryption information included will be stored.
      2bedc397