1. 18 Oct, 2006 1 commit
    • unknown's avatar
      Make --with-ndbcluster only be valid together with --bench · 85cfdc5b
      unknown authored
      Improve code that detects if ndb shuold be installed
      Remove call to stop_all_servers after install db, if any servers are still running 
      and need to be stopped they will be stopped atuomatically
      
      
      mysql-test/lib/mtr_cases.pl:
        All tests that have "source include/have_ndb.inc" are ndb tests
      mysql-test/mysql-test-run.pl:
        Set --with-ndbcluster to only be valid together with --bench
        Rename opt_ndbcluster_supported to glob_ndbcluster_supported it's not an option
        Fix warnings
      85cfdc5b
  2. 17 Oct, 2006 2 commits
    • unknown's avatar
      Remove warnings · 40ac9689
      unknown authored
      Set comment properly before calling mtr_report_test failed and report_failure_restart 
      
      
      mysql-test/lib/mtr_report.pl:
        Remove warnings
        No need to check ndb installed ok here, when that is detected comment is set to indicate the problem
      40ac9689
    • unknown's avatar
      When calculating what features to use for _this_ test run, don't look at test... · dd5edc0a
      unknown authored
      When calculating what features to use for _this_ test run, don't look at test that already are deterined to be skipped
      
      
      
      dd5edc0a
  3. 15 Oct, 2006 1 commit
    • unknown's avatar
      Cleanup mtr_timer · b8177c3e
      unknown authored
      Add verbose printouts making it possible to see what happens.
      Make it an error if trying to stop a non existing timer
      Print warning if fork fails.
      
      
      b8177c3e
  4. 14 Oct, 2006 5 commits
  5. 13 Oct, 2006 9 commits
  6. 12 Oct, 2006 11 commits
  7. 11 Oct, 2006 11 commits
    • unknown's avatar
      Fixes for embedded server test · d6d46923
      unknown authored
      
      client/mysqltest.c:
        Fix typo
      d6d46923
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1-maint · f29fb041
      unknown authored
      into  polly.local:/home/kaa/src/maint/m41-maint--07OGk
      
      
      f29fb041
    • unknown's avatar
      mtr_im_stop returns 1 if all is well · 6c0ad741
      unknown authored
      6c0ad741
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1-maint · 89924c58
      unknown authored
      into  polly.local:/home/kaa/src/maint/m41-maint--07OGk
      
      
      sql/item_timefunc.cc:
        Auto merged
      89924c58
    • unknown's avatar
      Improve restart logic all code to detect restart is now in the functions · a0081378
      unknown authored
      'run_testcase_need_master/slave_restart'
      Remove the faulty qw
      Only look for mysql_fix_privilege_tables if not windows
      
      
      mysql-test/lib/mtr_cases.pl:
        Move all code to determine when to restart into 'run_testcase_need_master/slave_restart' 
        Add possibility to wite --force-restart in -master.opt file, this will force a restart and
        since master is not started with any special options there is no need to restart
        again afterwards.
      mysql-test/mysql-test-run.pl:
        Remove the qw surrounding ENV{'LD_LIBRARY_PATH'}
        Only look for the sh script mysql_fix_privileges when not on windows
        Remove warnings about using unitialized variables
        Improve the restart logic, eall code to determine when to restart is
        now in run_testcase_need_master_restart and run_testcase_need_slave_restart
      mysql-test/t/bdb-alter-table-2-master.opt:
        Use --force-restart
      mysql-test/t/not_embedded_server-master.opt:
        Use --force-restart
      a0081378
    • unknown's avatar
      Merge ahristov@bk-internal.mysql.com:/home/bk/mysql-4.1-maint · 175209d2
      unknown authored
      into  example.com:/work/bug23074/my41-bug23074
      
      
      175209d2
    • unknown's avatar
      Cset exclude: Kristofer.Pettersson@naruto.|ChangeSet|20060922092201|15946 · 18b91b02
      unknown authored
      
      sql/item_timefunc.cc:
        Exclude
      18b91b02
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1-maint · 5623f2e9
      unknown authored
      into  polly.local:/home/kaa/src/maint/m41-maint--07OGk
      
      
      sql/item_timefunc.cc:
        Auto merged
      5623f2e9
    • unknown's avatar
      Merge polly.local:/tmp/maint/bug11655/my41-bug11655 · 3baf2034
      unknown authored
      into  polly.local:/home/kaa/src/maint/m41-maint--07OGk
      
      
      sql/field.cc:
        Auto merged
      sql/item_timefunc.cc:
        Auto merged
      mysql-test/r/func_time.result:
        Manually merged
      mysql-test/t/func_time.test:
        Manually merged
      3baf2034
    • unknown's avatar
      Fix some bad code in mysqltest.c which cause segfault · 3caef95e
      unknown authored
      
      client/mysqltest.c:
        Remove vsnprintf() and DBUG_PRINT from die() function, as it's not portable to Windows, and it's not allowed to
        call vsnprintf() and then vfprintf() with the same args.
        Can't just print the buffer here, because the buffer is a fixed size.
        If the message is longer than will fit int he buffer, it would get
        truncated on Unix, and the full thing would be printed on Windows.
        This DBUG_PRINT isn't important enough for this hassle, so just get rid
        of it.
      3caef95e
    • unknown's avatar
      Fix a typo regarding checking whether HA_VAR_LENGTH_KEY is · a4a319cf
      unknown authored
      set. This has always worked because when flag is !=0 then
      HA_VAR_LENGTH_KEY is always set. Therefore, a test case cannot
      reveal a faulty behavior.
      
      Fix for bug#23074: typo in myisam/sort.c
      
      
      myisam/sort.c:
        fix typo. Nevertheless, it has worked as expected
        because when a bit in flag is set HA_VAR_LENGTH_KEY has
        been always set too. Actually, no problem exposed through
        DDL.
      a4a319cf