An error occurred fetching the project authors.
  1. 07 Apr, 2015 1 commit
    • Jan Lindström's avatar
      InnoDB/XtraDB Encryption cleanup. · b4a4d823
      Jan Lindström authored
      Step 1:
      -- Remove page encryption from dictionary (per table
      encryption will be handled by storing crypt_data to page 0)
      -- Remove encryption/compression from os0file and all functions
      before that (compression will be added to buf0buf.cc)
      -- Use same CRYPT_SCHEME_1 for all encryption methods
      -- Do some code cleanups to confort InnoDB coding style
      b4a4d823
  2. 10 Feb, 2015 1 commit
  3. 09 Aug, 2014 1 commit
  4. 11 Feb, 2014 1 commit
  5. 10 Jan, 2014 1 commit
    • Jan Lindström's avatar
      Enhancement: Change atomic_writes table option to enum type. Now every file... · ec825721
      Jan Lindström authored
      Enhancement: Change atomic_writes table option to enum type. Now every file can either use atomic writes, not use it or use default.
      
      SYNTAX: ATOMIC_WRITES=['DEFAULT','ON','OFF']
      
      Idea here is to be able to define innodb_doublewrite = 1 but with following rules:
      
      ATOMIC_WRITES='DEFAULT' - if innodb_use_atomic_writes = 1, we do not write to doublewrite buffer the changes
                                if innodb_use_atomic_writes = 0, we write to doublewrite buffer
      ATOMIC_WRITES='ON'      - do not write to doublewrite buffer
      ATOMIC_WRITES='OFF'     - write to doublewrite buffer
      
      Note that doublewrite buffer can't be used if innodb_doublewrite = 0.
      
      ec825721
  6. 19 Dec, 2013 1 commit