1. 13 Feb, 2009 7 commits
  2. 12 Feb, 2009 14 commits
    • Davi Arnaut's avatar
      Backport from 6.0 fix for Bug#38249 · bf83aa43
      Davi Arnaut authored
      2722 Konstantin Osipov	2008-10-03
      Fix Bug#38249 innodb_log_arch_dir still in support files
      Remove a non-supported variable from cnf file templates.
      bf83aa43
    • Magnus Svensson's avatar
      Bug#42797 mtr.pl - temporary directory are deleted when child exit's · 12a86cec
      Magnus Svensson authored
      - Since we are only using the auto cleanup in one place of mtr.pl today, disable the
      autocleanup and write our own END handler that clean up the tmpdir only when the process
      that created it exits.
      12a86cec
    • Georgi Kodinov's avatar
      72c1323b
    • Georgi Kodinov's avatar
      merged 5.0-bugteam to a working tree · d851c798
      Georgi Kodinov authored
      d851c798
    • Georgi Kodinov's avatar
      Bug #33813: Schema names are case-sensitive in DROP FUNCTION · 371102e4
      Georgi Kodinov authored
            
      Additional fix:
       1. Revert the unification of DROP FUNCTION
      and DROP PROCEDURE, because DROP FUNCTION can be used to
      drop UDFs (that have a non-qualified name and don't require
      database name to be present and valid).
       2. Fixed the case sensitivity problem by adding a call to 
      check_db_name() (similar to the sp_name production).
      371102e4
    • Sergey Vojtovich's avatar
      0127de17
    • V Narayanan's avatar
      Bug#40675 MySQL 5.1 crash with index merge algorithm and Merge tables · e9302e2f
      V Narayanan authored
                  
      A Query in the MyISAM merge table was crashing 
      if the index merge algorithm was being used
      
      Index Merge optimization requires the reading of 
      multiple indexes at the same time. Reading multiple 
      indexes at once with current SE API means that we 
      need to have handler instance for each to-be-read 
      index. This is done by creating clones of the handlers 
      instances. The clone internally does a open of the handler.
      
      The open for a MERGE engine is handled in the following 
      phases
      
      1) open parent table
      2) generate list of underlying
         table
      3) attach underlying tables
      
      But the current implementation does only the first 
      phase (i.e.) open parent table.
      
      The current patch fixes this at the MERGE engine level, 
      by handling the clone operation within the MERGE engine 
      rather than in the storage engine API. It opens and 
      attaches the MyISAM tables on the MyISAM storage engine 
      interface directly within the MERGE engine. The new MyISAM 
      table instances, as well as the MERGE clone itself, are not 
      visible in the table cache. This is not a problem because
      all locking is handled by the original MERGE table from which
      this is cloned of.
      
      mysql-test/r/merge.result:
        updated the result file to reflect the new tests
        added to test the fix
      mysql-test/t/merge.test:
        Added new tests to verify that the index merge
        algorithm does not crash in the merge engine.
      storage/myisammrg/ha_myisammrg.cc:
        Implement the clone method, that handles
        
        1) Cloning the handler
        2) Opening underlying MYISAM child tables
        3) Copies the state of the original handler and the children
           into the cloned instances
        4) Sets the appropriate flags
      storage/myisammrg/ha_myisammrg.h:
        Added a flag that is set to indicate that the current 
        instance is cloned. Also added the prototype or the clone 
        method.
      storage/myisammrg/myrg_open.c:
        Since we do now again use myrg_open() in the server
        removed the comments marking this as deadcode.
      e9302e2f
    • Sergey Vojtovich's avatar
      81a315fa
    • Sergey Vojtovich's avatar
      Merge 5.0-bugteam -> 5.1-bugteam. · d4eaeaab
      Sergey Vojtovich authored
      d4eaeaab
    • Georgi Kodinov's avatar
      merged bug 33813 to 5.1-bugteam · a1663885
      Georgi Kodinov authored
      a1663885
    • Sergey Vojtovich's avatar
      BUG#36737 - having + full text operator crashes mysql · e2fe3db9
      Sergey Vojtovich authored
            
      MATCH() function accepts column list as an argument. It was possible to override
      this requirement with aliased non-column select expression. Which results in
      server crash.
      
      With this fix aliased non-column select expressions are not accepted by MATCH()
      function, returning an error.
      
      mysql-test/r/fulltext.result:
        A test case for BUG#36737.
      mysql-test/t/fulltext.test:
        A test case for BUG#36737.
      sql/item_func.cc:
        Only accept fields as arguments to MATCH().
      e2fe3db9
    • Georgi Kodinov's avatar
      merged bug 33813 to 5.0-bugteam · 85bab2e7
      Georgi Kodinov authored
      85bab2e7
    • Chad MILLER's avatar
      Merge from bug tree. · 6eb4cef5
      Chad MILLER authored
      6eb4cef5
    • Chad MILLER's avatar
      Merge from bug tree. · 6300ad8b
      Chad MILLER authored
      6300ad8b
  3. 11 Feb, 2009 5 commits
  4. 10 Feb, 2009 14 commits
    • Mats Kindahl's avatar
      Merging with 5.1-bugteam · 9bb2b474
      Mats Kindahl authored
      9bb2b474
    • Mats Kindahl's avatar
      Bug #36763 · e9179186
      Mats Kindahl authored
      TRUNCATE TABLE fails to replicate when stmt-based binlogging is not supported.
      
      Correcting some tests that was failing in pushbuild as well as fixing result
      file for some tests that are not executed in the default MTR run.
      
      mysql-test/suite/binlog/t/binlog_truncate_innodb.test:
        Need to reset master to avoid the check to be for the wrong binlog file.
      mysql-test/suite/binlog/t/binlog_truncate_myisam.test:
        Need to reset master to avoid the check to be for the wrong binlog file.
      e9179186
    • Georgi Kodinov's avatar
      merged 5.0-bugteam to 5.1-bugteam · f1f5d7d7
      Georgi Kodinov authored
      f1f5d7d7
    • Georgi Kodinov's avatar
      fixed a libedit compilation problem · de7665ac
      Georgi Kodinov authored
      de7665ac
    • Mats Kindahl's avatar
      Merging with 5.1-bugteam · 6520a8a1
      Mats Kindahl authored
      6520a8a1
    • Chad MILLER's avatar
      Merge from bugteam team tree. · ad2e40f0
      Chad MILLER authored
      ad2e40f0
    • Mats Kindahl's avatar
      BUG#36763: TRUNCATE TABLE fails to replicate when stmt-based binlogging is not supported. · 8d43b845
      Mats Kindahl authored
      Post-merge fixes. Changes to some result sets.
      
      mysql-test/r/commit_1innodb.result:
        TRUNCATE TABLE does not cause the binary log to do commits any more.
      mysql-test/suite/binlog/r/binlog_row_mix_innodb_myisam.result:
        TRUNCATE TABLE is not transactional, hence does not have BEGIN/COMMIT around itself.
      mysql-test/suite/binlog/r/binlog_stm_mix_innodb_myisam.result:
        TRUNCATE TABLE is not transactional, hence does not have BEGIN/COMMIT around itself.
      mysql-test/suite/rpl/r/rpl_innodb_mixed_dml.result:
        TRUNCATE TABLE is not transactional, hence does not have BEGIN/COMMIT around itself.
      mysql-test/suite/rpl/r/rpl_truncate_2myisam.result:
        STOP SLAVE was replaced with include file.
      mysql-test/suite/rpl/r/rpl_truncate_3innodb.result:
        STOP SLAVE was replaced with include file.
      8d43b845
    • Chad MILLER's avatar
      Bug#30261: "mysqld --help" no longer possible for root · b8b9d723
      Chad MILLER authored
      The check for root-ness would signal an error.  Errors would make the
      server exit before usage (help) information was printed.
      
      Now, test for whether we want help regardless of whether we're going
      to exit with an error.  If plugins are not initialized by the time we 
      print usage information, inform the user that some parameters are 
      missing.
      b8b9d723
    • Georgi Kodinov's avatar
      merged 5.0-bugteam -> 5.1-bugteam · f90f02d6
      Georgi Kodinov authored
      f90f02d6
    • Georgi Kodinov's avatar
      From jperkin : Merge libedit 2.11 and related files, · da2e124f
      Georgi Kodinov authored
      based on NetBSD CVS as of 2009/02/06 20:09:00.
      da2e124f
    • Vladislav Vaintroub's avatar
      merge · c99c001b
      Vladislav Vaintroub authored
      c99c001b
    • Luis Soares's avatar
      BUG#13684: SP: DROP PROCEDURE|FUNCTION IF EXISTS not binlogged if routine does not exist · feb6654e
      Luis Soares authored
      There is an inconsistency with DROP DATABASE IF EXISTS, DROP
      TABLE IF EXISTS and DROP VIEW IF EXISTS: those are binlogged even
      if the DB or TABLE does not exist, whereas DROP PROCEDURE IF
      EXISTS does not. It would be nice or at least consistent if DROP
      PROCEDURE/STATEMENT worked the same too.
            
      Fixed DROP PROCEDURE|FUNCTION IF EXISTS by adding a call to
      write_bin_log in mysql_execute_command. Checked also if all
      documented "DROP (...) IF EXISTS" get binlogged. Left out DROP
      SERVER IF EXISTS because it seems that it only gets binlogged when
      using row event (see BUG#25705).
      feb6654e
    • Matthias Leich's avatar
      Merge 5.0 -> 5.1 · 05fb3c48
      Matthias Leich authored
      05fb3c48
    • Bjorn Munch's avatar
      Bug #42590 MTR v1 crashes under Active State Perl · c8528e02
      Bjorn Munch authored
      Perl crashes when MTR 2 tries to start v1
      Replaced require with system()
      c8528e02