1. 28 Jan, 2009 4 commits
    • Georgi Kodinov's avatar
      merged bug 42366 to 5.1-bugteam · 6a25326b
      Georgi Kodinov authored
      6a25326b
    • Georgi Kodinov's avatar
      Bug #42366: server-cert.pem expired: "Not After : Jan 27 08:54:13 2009 GMT" · 5c1975fa
      Georgi Kodinov authored
            
      Re-generated the PKI files needed.
      Removed the ones that are not needed.
      Updated the tests to reference the correct SSL subject.
      
      mysql-test/r/openssl_1.result:
        Bug #42366: Updated the tests to reference the correct SSL subject
      mysql-test/std_data/cacert.pem:
        Bug #42366: Re-generated the PKI files needed.
      mysql-test/std_data/client-cert.pem:
        Bug #42366: Re-generated the PKI files needed.
      mysql-test/std_data/client-key.pem:
        Bug #42366: Re-generated the PKI files needed.
      mysql-test/std_data/server-cert-des.pem:
        Bug #42366: Removed the ones that are not needed.
      mysql-test/std_data/server-cert.pem:
        Bug #42366: Re-generated the PKI files needed.
      mysql-test/std_data/server-key-des.pem:
        Bug #42366: Removed the ones that are not needed.
      mysql-test/std_data/server-key.pem:
        Bug #42366: Re-generated the PKI files needed.
      mysql-test/std_data/server8k-cert.pem:
        Bug #42366: Re-generated the PKI files needed.
      mysql-test/std_data/server8k-key.pem:
        Bug #42366: Re-generated the PKI files needed.
      mysql-test/t/openssl_1.test:
        Bug #42366: Updated the tests to reference the correct SSL subject
      5c1975fa
    • Satya B's avatar
      Fix for BUG#39886 - Table full for MEMORY table is not written into error log · 5b7dce81
      Satya B authored
      When a MEMORY table is full the error is returned to client but not written
      to error log.
      
      Fixed the handler api to write the error mesage to error log when the table is
      full.
      
      Note: No TestCase included as testing the error log is non-trivial.
      
      
      sql/handler.cc:
        Fixed handler::print_error() to write the error message to error log
        when the table is full.
      5b7dce81
    • Alfranio Correia's avatar
      b3ae2302
  2. 27 Jan, 2009 2 commits
    • Alfranio Correia's avatar
      BUG#36391: "mysqlbinlog creates invalid charset statements" · 6429ea15
      Alfranio Correia authored
            
      The fix for BUG#20103 "Escaping with backslash does not work as expected"
      was implemented too greedy though in that it not only changes the behavior
      of backslashes within strings but in general, so disabling command shortcuts
      like \G or \C (which in turn leads to Bug #36391: "mysqlbinlog creates invalid charset
      statements").
            
      The fix allows the escaping with backslash to take place only inside a string, 
      thus enabling the execution of command shortcuts and presevering the fix for
      BUG#20103.
      6429ea15
    • Andrei Elkin's avatar
      Bug #31240 load data infile replication between (4.0 or 4.1) and 5.1 fails · 37d6140a
      Andrei Elkin authored
      Fixing pb failures caused by mtr invokes the test with --tmpdir to which
      there are  sensitive operations in the test
      and setup_fake_relay_log.inc also needed --secure-file-priv for its own separate
      directory.
      
      Fixed with removing SELECT INTO OUTFILE and deploying --exec echo instead in the marco.
      The test's opt file should contain --secure-file-priv=$MYSQL_TEST_DIR as the test
      operations deal with files located in $MYSQL_TEST_DIR.
      
      mysql-test/include/setup_fake_relay_log.inc:
        Refining setup_fake_relay_log.inc to not use --secure-file-priv sensitive feature.
        The latter should remain available for the test.
      37d6140a
  3. 26 Jan, 2009 7 commits
    • Chad MILLER's avatar
      Merge from team tree. · 26e47940
      Chad MILLER authored
      26e47940
    • Chad MILLER's avatar
      Merge from 5.1 team tree. · 65fccd26
      Chad MILLER authored
      65fccd26
    • Horst Hunger's avatar
    • Chad MILLER's avatar
      Merge fix for bug 38145 from 5.0. · 476baa7c
      Chad MILLER authored
      476baa7c
    • Andrei Elkin's avatar
      Bug #31240 load data infile replication between (4.0 or 4.1) and 5.1 fails · a075272e
      Andrei Elkin authored
            
      Overriding a default value of --secure-file-priv on pb.mtr to be $MYSQLTEST_VARDIR which 
      makes pb's mtr happy to execute the regression test for the bug.
      
      
      mysql-test/suite/rpl/t/rpl_cross_version-master.opt:
        satisfying pb's mtr that uses --vardir to shm.
      a075272e
    • Andrei Elkin's avatar
      Bug #31240 load data infile replication between (4.0 or 4.1) and 5.1 fails · d2265e63
      Andrei Elkin authored
      Overriding a default value of --secure-file-priv on pb.mtr with a value allowable 
      the test to pass on pb.
      
      mysql-test/suite/rpl/t/rpl_cross_version-master.opt:
        Overriding a default value of --secure-file-priv with a value allowable the test to pass on pb.
      d2265e63
    • Ramil Kalimullin's avatar
      Fix for bug #37756: enabling fulltext indexes with · 29464634
      Ramil Kalimullin authored
        myisam_repair_threads > 1 causes crash
      
      Problem: parallel repair (myisam_repair_threads > 1) of a myisam
      table with two or more fulltext keys that use the same parser may
      lead to a server crash. ALTER TABLE ENABLE KEYS is affected as well.
      
      Fix: properly initialize fulltext structures for parallel repair.
      
      Note: 1. there's no deterministic test case.
      2. now we call parser->init() for each fulltext key
      (not for each fulltext parser used).
      
      
      storage/myisam/ft_parser.c:
        Fix for bug #37756: enabling fulltext indexes with
          myisam_repair_threads > 1 causes crash
        
        In ftparser_call_initializer() we "group" parsers
        and allocate parameters for each unique parser used.
        In case of parallel repairing we may have a bunch
        of parsers that use the only MI_INFO structure.
        Each of these parsers must have its own parameter
        structure in order not to interfere with others.
        
        Moreover, the allocation is done without mutex
        lock so parallel ftparser_call_initializer() calls
        are unsafe.
        
        Now we don't "group" the fulltext parsers.
        Parameter allocation code moved to ftparser_alloc_param()
        function which is called from mi_repair_parallel() as well
        to allocate parameters for each parser used.
      storage/myisam/ftdefs.h:
        Fix for bug #37756: enabling fulltext indexes with
          myisam_repair_threads > 1 causes crash
        
        ftparser_alloc_param(MI_INFO *info) added.
      storage/myisam/mi_check.c:
        Fix for bug #37756: enabling fulltext indexes with
          myisam_repair_threads > 1 causes crash
        
        ftparser_alloc_param(info) called in case of parallel
        repair to allocate fulltext parser parameters.
      storage/myisam/mi_open.c:
        Fix for bug #37756: enabling fulltext indexes with
          myisam_repair_threads > 1 causes crash
        
        set keyinfo->ftkey_nr and share->ftkeys.
      29464634
  4. 24 Jan, 2009 1 commit
  5. 23 Jan, 2009 6 commits
    • Horst Hunger's avatar
      due to merge · 328e2350
      Horst Hunger authored
      328e2350
    • Horst Hunger's avatar
      due to merge. · 1d745da8
      Horst Hunger authored
      1d745da8
    • Gleb Shchepa's avatar
      Bug#42188: crash and/or memory corruption with user variables · f9fd9801
      Gleb Shchepa authored
                 in trigger
      
      Interchangeable calls to the mysql_change_user client function
      and invocations of a trigger changing some user variable caused
      a memory corruption and a crash.
      
      The mysql_change_user API call forces TDH::cleanup() on a server
      that frees user variable entries.
      However it didn't reset Item_func_set_user_var::entry to NULL
      because Item_func_set_user_var::cleanup() was not overloaded.
      So, Item_func_set_user_var::entry held a pointer to freed memory,
      that caused a crash.
      
      The Item_func_set_user_var::cleanup method has been overloaded
      to cleanup the Item_func_set_user_var::entry field.
      
      
      mysql-test/r/user_var.result:
        Added test case for bug #42188.
      mysql-test/t/user_var.test:
        Added test case for bug #42188.
      sql/item_func.cc:
        Bug#42188: crash and/or memory corruption with user variables
                   in trigger
        
        The Item_func_set_user_var::cleanup method has been overloaded
        to cleanup the Item_func_set_user_var::entry field.
      sql/item_func.h:
        Bug#42188: crash and/or memory corruption with user variables
                   in trigger
        
        The Item_func_set_user_var::cleanup method has been overloaded
        to cleanup the Item_func_set_user_var::entry field.
      f9fd9801
    • Horst Hunger's avatar
      Fix for bug#39108: Set global wait timeout within the test, not more via opt file. · e48eae7f
      Horst Hunger authored
      Deleted the opt file. Replaced the sleeps by wait condition. Made some beautyfications.
      Inserted review results.   
      e48eae7f
    • Andrei Elkin's avatar
      Bug #31240 load data infile replication between (4.0 or 4.1) and 5.1 fails · ded9e6ec
      Andrei Elkin authored
      an additional changeset to remove printing a path name.
      
      mysql-test/suite/rpl/r/rpl_cross_version.result:
        removing a local exec env dependency
      mysql-test/suite/rpl/t/rpl_cross_version.test:
        refining a test to not have local exec env dependency.
      ded9e6ec
    • Andrei Elkin's avatar
      merge from 5.1-bt to a local tree. · d41b20ab
      Andrei Elkin authored
      d41b20ab
  6. 22 Jan, 2009 5 commits
    • Andrei Elkin's avatar
      Bug #31240 load data infile replication between (4.0 or 4.1) and 5.1 fails · 9e1299a9
      Andrei Elkin authored
      It's a regression issue.
      The reason of the bug appeared to be an error introduced into 5.1 source code.
      A piece of code in Create_file_log_event::do_apply_event() did not have test
      coverage which made make test and pb unaware.
            
      Fixed with inverting the old value of the return value from 
      Create_file_log_event::do_apply_event().
      The rpl test suite is extended with `rpl_cross_version' the file to hold 
      regression cases similar to the current.
      
      
      mysql-test/suite/rpl/r/rpl_cross_version.result:
        new results file
      mysql-test/suite/rpl/t/rpl_cross_version-master.opt:
        options to the server to be able to start replication to itself
      mysql-test/suite/rpl/t/rpl_cross_version.test:
        regression test for bug#31240.
      sql/log_event.cc:
        Correcting the return value from  Create_file_log_event::do_apply_event()
      9e1299a9
    • Satya B's avatar
      updating to the latest bugteam-5.1 branch · f44472c9
      Satya B authored
      f44472c9
    • Davi Arnaut's avatar
      Merge test case of Bug#40264 to mysql-5.1-bugteam · 3a9b2ebb
      Davi Arnaut authored
      sql/sql_cache.cc:
        Assert that results are always complete.
      3a9b2ebb
    • Davi Arnaut's avatar
      Bug#40264: Aborted cached query causes query to hang indefinitely on next cache hit · ae4d8dc6
      Davi Arnaut authored
      The problem is that the query cache was storing partial results
      if the statement failed when sending the results to the client.
      This could cause clients to hang when trying to read the results
      from the cache as they would, for example, wait indefinitely for
      a eof packet that wasn't saved.
      
      The solution is to always discard the caching of a query that
      failed to send its results to the associated client.
      
      mysql-test/r/query_cache_notembedded.result:
        Add test case result for Bug#40264
      mysql-test/t/query_cache_notembedded.test:
        Add test case for Bug#40264
      sql/sql_cache.cc:
        Abort if a unreported error was raised.
      ae4d8dc6
    • Satya B's avatar
      TestCase for BUG#41574 - REPAIR TABLE: crashes for compressed tables · 8257fc66
      Satya B authored
      Extending the existing testcase written for BUG#40949 to verify
      repair table operation for compressed tables
      
      
      
      mysql-test/r/myisampack.result:
        Modified result file for myisampack.test
      mysql-test/t/myisampack.test:
        Modified Testcase to test repair operation for compressed tables
      8257fc66
  7. 21 Jan, 2009 1 commit
  8. 20 Jan, 2009 1 commit
  9. 16 Jan, 2009 10 commits
  10. 15 Jan, 2009 3 commits
    • Joerg Bruehe's avatar
      Upmerge changesets from 5.0-build to 5.1-build. · 56bcb296
      Joerg Bruehe authored
      This does not bring any contents changes, it is purely
      metadata which are affected.
      
      Details:
      
      Even within 5.0, most of these changesets did not cause
      file contents changes, because they were backports done
      for the "service pack" builds of 5.0.66sp1 and 5.0.72sp1.
      
      The "real" changesets are also already present in 5.1,
      so this upmerge doesn't change any contents.
      
      The only "real" changeset in 5.0 was a fix of the shell
      scripts used to configure bdb (BerkeleyDB).
      As we completele removed bdb from the 5.1 sources already,
      the affected files are not present in the 5.1 source tree,
      so this changeset also does not cause any contents changes.
      56bcb296
    • Joerg Bruehe's avatar
      Again, the branch designation "-bugteam" made it to the main tree, · 04941d82
      Joerg Bruehe authored
      this should not happen.
      04941d82
    • Joerg Bruehe's avatar
      Merge the version number increase. · 65e075a0
      Joerg Bruehe authored
      65e075a0