1. 02 Sep, 2015 1 commit
  2. 01 Sep, 2015 3 commits
  3. 31 Aug, 2015 3 commits
  4. 30 Aug, 2015 1 commit
  5. 29 Aug, 2015 5 commits
  6. 28 Aug, 2015 1 commit
  7. 27 Aug, 2015 2 commits
    • Monty's avatar
      MDEV-6152: Remove calls to current_thd while creating Item · 3bca8db4
      Monty authored
      - Part 4: Removing calls to sql_alloc() and sql_calloc()
      
      Other things:
      - Added current_thd in some places to make it clear that it's called (easier to remove later)
      - Move memory allocation from Item_func_case::fix_length_and_dec() to Item_func_case::fix_fields()
      - Added mem_root to some new calls
      - Fixed some wrong UNINIT_VAR() calls
      - Fixed a bug in generate_partition_syntax() in case of errors
      - Added mem_root to argument to new thread_info
      - Simplified my_parse_error() call in sql_yacc.yy
      3bca8db4
    • Monty's avatar
      MDEV-6152: Remove calls to current_thd while creating Item · 3cb578c0
      Monty authored
      - Part 3: Adding mem_root to push_back() and push_front()
      
      Other things:
      - Added THD as an argument to some partition functions.
      - Added memory overflow checking for XML tag's in read_xml()
      3cb578c0
  8. 26 Aug, 2015 9 commits
  9. 25 Aug, 2015 3 commits
  10. 22 Aug, 2015 1 commit
  11. 21 Aug, 2015 3 commits
  12. 18 Aug, 2015 4 commits
    • Monty's avatar
      Merge /my/maria-10.1-default into 10.1 · 4374da63
      Monty authored
      4374da63
    • Monty's avatar
      Fixed failing tests and compiler warnings · dfac82e4
      Monty authored
      - UNINIT_VAR() was required for 4.8.3 on openSUSE 13.2
      dfac82e4
    • Monty's avatar
      Ensure that fields declared with NOT NULL doesn't have DEFAULT values if not... · 6b203426
      Monty authored
      Ensure that fields declared with NOT NULL doesn't have DEFAULT values if not specified and if not timestamp or auto_increment
      
      In original code, sometimes one got an automatic DEFAULT value in some cases, in other cases not.
      
      For example:
      create table t1 (a int primary key)      - No default
      create table t2 (a int, primary key(a))  - DEFAULT 0
      create table t1 SELECT ....              - Default for all fields, even if they where defined as NOT NULL
      ALTER TABLE ... MODIFY could sometimes add an unexpected DEFAULT value.
      
      The patch is quite big because we had some many test cases that used
      CREATE ... SELECT or CREATE ... (...PRIMARY KEY(xxx)) which doesn't have an automatic DEFAULT anymore.
      
      Other things:
      - Removed warnings from InnoDB when waiting from semaphore (got this when testing things with --big)
      6b203426
    • Monty's avatar
      MDEV-8475 stale .TMM file causes MyiSAM and Aria engine to stop serving the table · 92fd6583
      Monty authored
      Issue was two fold (both in MyISAM and Aria)
      - optimize and repair failed if there was an old .TMM file around. As optimized and repair are protected against multiple execution, I decided to change so that we just truncate the file if it exists.
      - I had missed to check for error condition if creation of the temporary index file failed. This caused the strange behaviour that it looked as if optimized would have worked once.
      92fd6583
  13. 17 Aug, 2015 1 commit
    • Alexander Barkov's avatar
      Adding EXPLAIN SELECT tests for: · 5fe8b747
      Alexander Barkov authored
      MDEV-7649 wrong result when comparing utf8 column with an invalid literal
      This is a preparatory patch for:
      MDEV-8433 Make field<'broken-string' use indexes
      5fe8b747
  14. 14 Aug, 2015 3 commits
    • Alexander Barkov's avatar
      Adding MY_CHARSET_HANDLER::native_to_mb(). · 78b80cb6
      Alexander Barkov authored
      This is a pre-requisite patch for:
      - MDEV-8433 Make field<'broken-string' use indexes
      - MDEV-8625 Bad result set with ignorable characters when using a prefix key
      - MDEV-8626 Bad result set with contractions when using a prefix key
      78b80cb6
    • Jan Lindström's avatar
      MDEV-8589: Non-default ENCRYPTION_KEY_ID is ignored upon reading a table · bfb6ea02
      Jan Lindström authored
      Analysis: Problem was that when a new tablespace is created a default
      encryption info is also created and stored to the tablespace. Later a
      new encryption information was created with correct key_id but that
      does not affect on IV.
      
      Fix: Push encryption mode and key_id to lower levels and create
      correct encryption info when a new tablespace is created.
      
      This fix does not contain test case because, currently incorrect
      encryption key causes page corruption and a lot of error messages
      to error log causing mtr to fail.
      bfb6ea02
    • Jan Lindström's avatar
      MDEV-8591: Database page corruption on disk or a failed space, Assertion... · a8075359
      Jan Lindström authored
      MDEV-8591: Database page corruption on disk or a failed space, Assertion failure in file buf0buf.cc line 2856 on querying a table using wrong default encryption key
      
      Improved error messaging to show based on original page before
      encryption is page maybe encrypted or just corrupted.
      a8075359