An error occurred fetching the project authors.
  1. 27 Jan, 2010 1 commit
    • unknown's avatar
      Fix test failures due to previous change of not setting TZ by default. · 7c8983e9
      unknown authored
      Fix by explicitly setting timezone for a few more tests that need it.
      (We avoid setting TZ everywhere by default as this breaks some tests
      on windows).
      
      Also add fix of two other windows failures due to non-portable
      suppressions, thanks to Alex Budovski.
      
      mysql-test/mysql-test-run.pl:
        Don't let --timezone option from one test stray into the next test
        (mostly to make results more deterministic rather than depend on
        whatever test happens to run just before).
      mysql-test/suite/maria/r/maria-recover.result:
        Fix suppression pattern to also work with Windows \ path separator.
      mysql-test/suite/maria/t/maria-recover.test:
        Fix suppression pattern to also work with Windows \ path separator.
      mysql-test/suite/parts/inc/partition_timestamp.inc:
        Set timezone explicitly for test that needs it.
      mysql-test/suite/parts/r/partition_recover_myisam.result:
        Fix suppression pattern to also work with Windows \ path separator.
      mysql-test/suite/parts/t/partition_recover_myisam.test:
        Fix suppression pattern to also work with Windows \ path separator.
      mysql-test/t/mysqlbinlog_row-master.opt:
        Set timezone explicitly for test that needs it.
      mysql-test/t/mysqlbinlog_row_innodb-master.opt:
        Set timezone explicitly for test that needs it.
      mysql-test/t/mysqlbinlog_row_myisam-master.opt:
        Set timezone explicitly for test that needs it.
      mysql-test/t/mysqlbinlog_row_trans-master.opt:
        Set timezone explicitly for test that needs it.
      7c8983e9
  2. 19 Jan, 2010 1 commit
    • unknown's avatar
      Fix Windows test failures in binlog tests in certain time zones. · 80ac8858
      unknown authored
      On Unix systems TZ can be set to change the time zone for specific processes only.
      But on Windows this does not fully work. It changes some aspects of time zones
      in the system but not others (notably localtime() vs. file system time stamps).
      
      This causes test failures in Windows in certain time zones (but not all),
      where PURGE BEFORE DATE statements get the wrong files when TZ is set to
      +03:00 by default.
      
      Fix by only setting TZ in the small number of tests that really need it, and leave
      it untouched in the rest.
      
      Thanks to Alex Budovski for helping with this.
      
      mysql-test/include/ps_conv.inc:
        Explicitly set TIME_ZONE, as mysql-test-run.pl now does not set it.
      mysql-test/mysql-test-run.pl:
        Do not set TZ by default, as it causes problems on Windows.
      mysql-test/suite/binlog/r/binlog_unsafe.result:
        Explicitly set TIME_ZONE, as mysql-test-run.pl now does not set it.
      mysql-test/suite/binlog/t/binlog_unsafe.test:
        Explicitly set TIME_ZONE, as mysql-test-run.pl now does not set it.
      mysql-test/suite/rpl/r/rpl_mixed_ddl_dml.result:
        Explicitly set TIME_ZONE, as mysql-test-run.pl now does not set it.
      mysql-test/suite/rpl/t/rpl_mixed_ddl_dml.test:
        Explicitly set TIME_ZONE, as mysql-test-run.pl now does not set it.
      mysql-test/t/mysqlbinlog2-master.opt:
        mysql-test-run.pl no longer sets TZ by default, so set it explicitly for this particular test.
      80ac8858
  3. 06 Jan, 2010 1 commit
    • Michael Widenius's avatar
      Removed compiler warnings · b96f268a
      Michael Widenius authored
      Fixed sporadic test failure for suit/pbxt/t/lock_multi.test
      Fixed sporadic test faulure for suit/rpl/t/do_grant.test
      OpenSolaris 5.11-x86 now compiles (tested with 32 bit)
      
      BUILD/compile-solaris-amd64-debug-forte:
        Added execute bit
      BUILD/compile-solaris-x86-32:
        Added execute bit
      BUILD/compile-solaris-x86-32-debug:
        Added execute bit
      BUILD/compile-solaris-x86-32-debug-forte:
        Added execute bit
      BUILD/compile-solaris-x86-forte-32:
        Added execute bit
      extra/libevent/devpoll.c:
        Removed compiler warning
      extra/libevent/evbuffer.c:
        Removed compiler warning
      extra/libevent/select.c:
        Removed compiler warning
      mysql-test/mysql-test-run.pl:
        Fixed sporadic test faulure for suit/rpl/t/do_grant.test (Seen on OpenSolaris)
      mysql-test/suite/pbxt/r/lock_multi.result:
        Fixed sporadic test failure for suit/pbxt/t/lock_multi.test (seen in buildbot)
        This was done by merging the test with main/lock_multi.test
      mysql-test/suite/pbxt/t/lock_multi.test:
        Fixed sporadic test failure for suit/pbxt/t/lock_multi.test (seen in buildbot)
        This was done by merging the test with main/lock_multi.test
      mysys/my_sync.c:
        Removed compiler warnings
      sql/ha_ndbcluster.cc:
        Fixed linking error on OpenSolaris when compiling without ndb
        Bug #34866 Can't compile on Solaris 9/Sparc with gcc
      storage/archive/azlib.h:
        Removed compiler warning about redefined symbols
      storage/maria/ma_blockrec.c:
        Removed compiler warning
      storage/maria/ma_loghandler.c:
        Removed compiler warning
      storage/maria/ma_test3.c:
        Removed compiler warning
      storage/myisam/mi_test3.c:
        Removed compiler warning
      storage/pbxt/src/ha_pbxt.cc:
        Removed compiler warning
        thr_main -> thr_main_pbxt
      storage/pbxt/src/restart_xt.cc:
        thr_main -> thr_main_pbxt
      storage/pbxt/src/thread_xt.cc:
        thr_main -> thr_main_pbxt
        This was needed as thr_main() is an internal thread function on OpenSolaris()
      storage/pbxt/src/thread_xt.h:
        thr_main -> thr_main_pbxt
      storage/xtradb/srv/srv0srv.c:
        Use compatiblity macro to get code to work on OpenSolaris
      support-files/compiler_warnings.supp:
        Ignore compiler warning from yassl
      b96f268a
  4. 04 Jan, 2010 1 commit
  5. 21 Dec, 2009 1 commit
    • unknown's avatar
      Don't include the `innodb' suite in the list of default test suites. · b7f11d10
      unknown authored
      This suite is for the innodb plugin, which we do not use in MariaDB
      (we instead have XtraDB as default storage engine, which includes the
      innodb plugin).
      
      We have included the same tests in the main suite, so no point in
      running them twice (and most of them are disabled anyway due to the
      absense of the innodb plugin).
      b7f11d10
  6. 06 Dec, 2009 1 commit
    • unknown's avatar
      Fix some compiler warnings. · 961821d7
      unknown authored
      Fix bad merge causing error when specifying test case in non-default suite for mysql-test-run.
      Implement the ability to add extra flags and configure options when running BUILD/xxx scripts.
      Improve unclear help text in mysql-test-run
      
      BUILD/FINISH.sh:
        Implement the ability to add extra flags and configure options when running BUILD/xxx scripts.
      BUILD/SETUP.sh:
        Implement the ability to add extra flags and configure options when running BUILD/xxx scripts.
      extra/yassl/taocrypt/include/block.hpp:
        Fix some compiler warnings.
      mysql-test/lib/mtr_cases.pm:
        Fix bad merge causing error when specifying test case in non-default suite for mysql-test-run.
        Also remove some non-essential differences to mysql version to simplify future merges.
      mysql-test/mysql-test-run.pl:
        Improve help texts.
      plugin/fulltext/plugin_example.c:
        Fix some compiler warnings.
      vio/viosslfactories.c:
        Fix some compiler warnings.
      961821d7
  7. 30 Nov, 2009 1 commit
  8. 27 Nov, 2009 1 commit
    • unknown's avatar
      After-merge fixes for MySQL 5.1.41 merge into MariaDB: more fixes for Buildbot problems. · 84911a9f
      unknown authored
      mysql-test/mysql-test-run.pl:
        Manually apply similar patch to the one in Bug#47983.
      mysql-test/suite/rpl/r/rpl_temporary_errors.result:
        Fix wrong failure with warning in error log due to per-test suppressions
        not being active during server shutdown.
      mysql-test/suite/rpl/t/rpl_temporary_errors.test:
        Fix wrong failure with warning in error log due to per-test suppressions
        not being active during server shutdown.
      sql/sql_select.cc:
        Manually cherry-pick fix for Bug#45989.
        For some reason, that fix was reverted in MySQL 5.1, even though it is
        necessary to plug the memory leak.
      84911a9f
  9. 26 Nov, 2009 2 commits
  10. 25 Nov, 2009 1 commit
    • unknown's avatar
      After-merge fix for merge of MySQL 5.1.41 into MariaDB: Valgrind fixes. · 3cc20873
      unknown authored
      mysql-test/mysql-test-run.pl:
        Fix Valgrind warnings: add more post-shutdown warning suppressions, and revert
        bad previous change.
      sql/log_event.cc:
        Manually apply fix for Bug#48340 (basically missing initialisation
        of thd->lex->local_file in Load_log_event::do_apply_event())
      3cc20873
  11. 24 Nov, 2009 1 commit
    • unknown's avatar
      After-merge fix for MySQL 5.1.41 merge: suppress some warnings during shutdown. · fc2f3176
      unknown authored
      The MySQL 5.1.41 merge adds back some more warning lines in error log to be
      checked. So some suppressions for these new ones need to be added to the code
      in MariaDB that checks for warnings during server shutdown (MySQL only checks
      for warnings that occur while executing the test cases themselves).
      fc2f3176
  12. 23 Nov, 2009 1 commit
    • unknown's avatar
      After-merge fixes for MySQL 5.1.41 merge into MariaDB. · e5203306
      unknown authored
      Makefile.am:
        Fix incorrect automerges.
      mysql-test/mysql-test-run.pl:
        Fix bad merge.
        We revert some of the MySQL-side changes, as the problem is that they may accidentally ignore some warnings in mysqld.err that should be reported.
        Also remove some differences between MySQL and MariaDB where there is no semantic difference (to make future merges easier).
      e5203306
  13. 16 Nov, 2009 1 commit
    • Michael Widenius's avatar
      Safety change to ensure read/black trees (used with heap tables) works on 64... · 815b9fed
      Michael Widenius authored
      Safety change to ensure read/black trees (used with heap tables) works on 64 bit setups where ulong <> size_t
      Don't retry test cases by default
      Fixed bug where we could (under unlikely error conditions) access not initialized variable
      
      include/my_tree.h:
        Safety change to ensure read/black trees (used with heap tables) works on 64 bit setups where ulong <> size_t
        (Pointed out by Bryan Aker)
      mysql-test/mysql-test-run.pl:
        Don't retry test cases by default
        This makes it too easy to miss failures and we have anyway to fix race conditions, not ignore them.
      mysys/tree.c:
        Safety change to ensure read/black trees (used with heap tables) works on 64 bit setups where ulong <> size_t
      sql/sql_delete.cc:
        Fixed bug where we could (under unlikely error conditions) access not initialized variable.
        (Pointed out by Bryan Aker)
      815b9fed
  14. 05 Nov, 2009 1 commit
  15. 30 Oct, 2009 1 commit
    • Michael Widenius's avatar
      Added federatedx storage engine · 226f0c76
      Michael Widenius authored
      Fixed compiler warnings
      
      
      client/mysqladmin.cc:
        Fixed compiler warning
      extra/yassl/taocrypt/src/twofish.cpp:
        Fixed compiler warning
      libmysqld/Makefile.am:
        Use federatedx instead of federated
        (Should actually be removed)
      mysql-test/mysql-test-run.pl:
        Fixed warning
      mysql-test/valgrind.supp:
        Removed warning found on 64 bit Linux machine
      storage/pbxt/src/cache_xt.cc:
        Fixed compile warning
      storage/xtradb/include/buf0buf.ic:
        Fixed compiler warning
      226f0c76
  16. 29 Oct, 2009 1 commit
    • Michael Widenius's avatar
      Added federatedx storage engine · 49b519ca
      Michael Widenius authored
      Fixed compiler warnings
      
      
      client/mysqladmin.cc:
        Fixed compiler warning
      extra/yassl/taocrypt/src/twofish.cpp:
        Fixed compiler warning
      libmysqld/Makefile.am:
        Use federatedx instead of federated
        (Should actually be removed)
      mysql-test/mysql-test-run.pl:
        Fixed warning
      mysql-test/valgrind.supp:
        Removed warning found on 64 bit machine
      49b519ca
  17. 26 Oct, 2009 1 commit
    • Michael Widenius's avatar
      Fixed compiler warning message · 5bddbc44
      Michael Widenius authored
      - Added checking of return value for system(), freopen(), fgets() and chown()
      - Ensure that calls that require a format strings gets a format string
      - Other trivial things
      Updated test suite results (especially for pbxt and embedded server)
      Removed warning for "Invalid (old?) table or database name 'mysqld.1'" from pbxt tests
      Speed up some pbxt tests by inserting begin ; commit; around "while loops with inserts"
      Added mysqld startup option '--debug-flush'
      Create maria_recovery.trace in data directory instead of current directory
      
      client/mysql.cc:
        Check return value from system()
      client/mysql_upgrade.c:
        Check return value from fgets()
      client/mysqladmin.cc:
        Check return value from fgets()
      client/mysqlslap.c:
        Check return value from system() (but ignore it, as it's not critical)
      extra/yassl/src/crypto_wrapper.cpp:
        Check return value from fgets() (but ignore it, as it's internal file)
      extra/yassl/taocrypt/src/aes.cpp:
        Added extra {} to remove compiler warning
      extra/yassl/taocrypt/src/blowfish.cpp:
        Added extra {} to remove compiler warning
      extra/yassl/taocrypt/src/misc.cpp:
        Ifdef not used code
      include/mysys_err.h:
        Added error message for failing chown()
      mysql-test/mysql-test-run.pl:
        Don't give warning for skipping ndbcluster (never enabled in MariaDB)
      mysql-test/suite/funcs_1/r/is_columns_is_embedded.result:
        Update with new information schema information
      mysql-test/suite/funcs_1/r/is_tables_is_embedded.result:
        New test
      mysql-test/suite/funcs_1/r/is_tables_myisam_embedded.result:
        Update test results (has not been tested for a long time)
      mysql-test/suite/funcs_1/r/is_tables_mysql_embedded.result:
        Update test results (has not been tested for a long time)
      mysql-test/suite/funcs_1/t/is_tables_is.test:
        Don't run with embedded server (as results differ)
        I added a new test for embedded server
      mysql-test/suite/funcs_1/t/is_tables_is_embedded.test:
        New test
      mysql-test/suite/pbxt/my.cnf:
        Allow one to run pbxt tests without having to specify --mysqld=--default-storage-engine=pbxt
      mysql-test/suite/pbxt/t/count_distinct3.test:
        Speed up test by inserting begin; ... commit;
      mysql-test/suite/pbxt/t/subselect.test:
        Speed up test by inserting begin; ... commit;
      mysys/errors.c:
        Added error message for failing chown()
      mysys/my_copy.c:
        Added error message for failing chown()
      mysys/my_redel.c:
        Added error message for failing chown()
      mysys/safemalloc.c:
        Added cast to get rid of compiler warning
      sql/ha_partition.cc:
        Fixed wrong argument to sql_print_error() (it requires a format string)
      sql/log.cc:
        Test return value of freopen()
      sql/mysqld.cc:
        Test return value of freopen()
        Added startup option '--debug-flush' to be used when one gets a core dump (easy to explain to people on IRC)
      sql/rpl_rli.cc:
        Fixed wrong argument to sql_print_error() (it requires a format string)
      sql/set_var.cc:
        Added {} to get rid of compiler warnings
      sql/slave.cc:
        Fixed wrong argument to mi->report() and sql_print...() (they require a format string)
      sql/sql_cache.cc:
        Fixed wrong argument to sql_printinformation() (it requires a format string)
      sql/sql_parse.cc:
        Test return value of fgets()
      sql/sql_plugin.cc:
        Fixed wrong argument to sql_print_error() (it requires a format string)
      sql/sql_select.cc:
        Use unique table name for internal temp tables instead of full path
        (Simple speed & space optimization)
      sql/udf_example.c:
        Removed compiler warning about not used variable
      storage/maria/ha_maria.cc:
        Fixed wrong argument to sql_print_error() and ma_check_print_error() (they require a format string)
      storage/maria/ma_recovery.c:
        Create maria_recovery.trace in data directory instead of current directory
      storage/maria/unittest/ma_test_loghandler-t.c:
        Fixed wrong argument to ok();  Requires a format string
      storage/pbxt/src/strutil_xt.cc:
        Detect temporary tables by checking if that path for the table is in the mysql data directory.
        The database for temporary tables is after this patch, from PBXT point of view, ""
        This is needed to stop PBXT from calling filename_to_tablename() with the base directory as an argument, which caused
        ERROR: Invalid (old?) table or database name 'mysqld.1'" in the log when running the test suite.
      tests/mysql_client_test.c:
        Fixed compiler warnings
      unittest/mysys/base64-t.c:
        Fixed wrong argument to diag() (it requires a format string)
        Added a comment that the current 'print' of differing buffers doesn't print the right thing,
        but didn't fix this as it's not important (unless we find a bug in the real code)
      5bddbc44
  18. 19 Oct, 2009 1 commit
  19. 18 Oct, 2009 1 commit
  20. 17 Oct, 2009 1 commit
  21. 14 Oct, 2009 1 commit
  22. 13 Oct, 2009 1 commit
    • Michael Widenius's avatar
      Force restart before maria_showlog_error to get rid of status from previous connections · c13f68fa
      Michael Widenius authored
      This fixes a race condition in the test system
      
      mysql-test/include/maria_empty_logs.inc:
        Added comment
      mysql-test/include/wait_for_status_var.inc:
        Fixed type in variable name. Add ' around variables for better error message
      mysql-test/mysql-test-run.pl:
        Remove -skip-falcon (not to be used), add skip-pbxt to bootstrap
      mysql-test/suite/maria/t/maria_showlog_error-master.opt:
        Force restart before maria_showlog_error to get rid of status from previous connection
      c13f68fa
  23. 09 Oct, 2009 1 commit
  24. 08 Oct, 2009 4 commits
  25. 07 Oct, 2009 1 commit
    • unknown's avatar
      Fixes for package name change mysql -> mariadb. · 68602b93
      unknown authored
       - Don't need any m1 prefix for the first release based on given MySQL
         version number.
      
       - Fix mysql-test-run to understand that some stuff is installed under
         share/mariadb rather than share/mysql.
      68602b93
  26. 06 Oct, 2009 4 commits
  27. 05 Oct, 2009 3 commits
    • unknown's avatar
      MBug#443092: test cases mysql and mysql_upgrade fails with wildcard DNS · d64dc0c8
      unknown authored
      When DNS is not working and returns some address even for non-existing
      host names, some test cases fail with wrong error.
      
      Fix by disabling these tests on such systems.
      d64dc0c8
    • unknown's avatar
      MBug#443014: Too many 'skipped' messages in mysql-test-run · 76d47f53
      unknown authored
      Remove mysql-test-run.pl unnecessary and confusing 'skipped' messages.
      
       - In mysql-test-run.pl, we auto-generate combinations of replication
         tests. But this sometimes generates combinations that are meaningless,
         like running a test that requires row-based replication with
         statement-based. These superfluous combinationes should not be
         reported as skipped, they should just be deleted.
      
       - Remove ndb suites from default suites, as we do not support NDB
         in MariaDB.
      
      Keep skip messages resulting from running mysql-test-run.pl in special
      ways, eg. --mysqld=--binlog-format=statement.
      76d47f53
    • Bjorn Munch's avatar
      Bug #47243 Allow MTR to read max auto setting for --parallel from env. variable · 861cf983
      Bjorn Munch authored
      In stead of hard-coded 8, read from $MTR_MAX_PARALLEL if set
      861cf983
  28. 29 Sep, 2009 3 commits
    • unknown's avatar
      Fix running test suite from installed directory rather than source directory. · a84aa378
      unknown authored
      Fix trivial typo in BUILD/* scripts.
      
      BUILD/SETUP.sh:
        Fix typo.
      mysql-test/mysql-test-run.pl:
        Fix mysql-test-run.pl to be able to find plugins used in testing also when running the
        test suite from an installed mysqld package.
      a84aa378
    • Ingo Struewing's avatar
      WL#4259 - Debug Sync Facility · 4d57b851
      Ingo Struewing authored
      Backport from 6.0 to 5.1.
      Only those sync points are included, which are used in debug_sync.test.
      
        The Debug Sync Facility allows to place synchronization points
        in the code:
        
        open_tables(...)
        
        DEBUG_SYNC(thd, "after_open_tables");
        
        lock_tables(...)
        
        When activated, a sync point can
        
        - Send a signal and/or
        - Wait for a signal
        
        Nomenclature:
        
        - signal:            A value of a global variable that persists
                             until overwritten by a new signal. The global
                             variable can also be seen as a "signal post"
                             or "flag mast". Then the signal is what is
                             attached to the "signal post" or "flag mast".
        
        - send a signal:     Assign the value (the signal) to the global
                             variable ("set a flag") and broadcast a
                             global condition to wake those waiting for
                             a signal.
        
        - wait for a signal: Loop over waiting for the global condition until
                             the global value matches the wait-for signal.
        
        Please find more information in the top comment in debug_sync.cc
        or in the worklog entry.
      
      
      .bzrignore:
        WL#4259 - Debug Sync Facility
        Added the symbolic link libmysqld/debug_sync.cc.
      CMakeLists.txt:
        WL#4259 - Debug Sync Facility
        Added definition for ENABLED_DEBUG_SYNC.
      configure.in:
        WL#4259 - Debug Sync Facility
        Added definition for ENABLED_DEBUG_SYNC.
      include/my_sys.h:
        WL#4259 - Debug Sync Facility
        Added definition for the DEBUG_SYNC_C macro.
      libmysqld/CMakeLists.txt:
        WL#4259 - Debug Sync Facility
        Added sql/debug_sync.cc.
      libmysqld/Makefile.am:
        WL#4259 - Debug Sync Facility
        Added sql/debug_sync.cc.
      mysql-test/include/have_debug_sync.inc:
        WL#4259 - Debug Sync Facility
        New include file.
      mysql-test/mysql-test-run.pl:
        WL#4259 - Debug Sync Facility
        Added option --debug_sync_timeout.
      mysql-test/r/debug_sync.result:
        WL#4259 - Debug Sync Facility
        New test result.
      mysql-test/r/have_debug_sync.require:
        WL#4259 - Debug Sync Facility
        New require file.
      mysql-test/t/debug_sync.test:
        WL#4259 - Debug Sync Facility
        New test file.
      mysys/my_static.c:
        WL#4259 - Debug Sync Facility
        Added definition for debug_sync_C_callback_ptr.
      mysys/thr_lock.c:
        WL#4259 - Debug Sync Facility
        Added sync point "wait_for_lock".
      sql/CMakeLists.txt:
        WL#4259 - Debug Sync Facility
        Added debug_sync.cc and debug_sync.h.
      sql/Makefile.am:
        WL#4259 - Debug Sync Facility
        Added debug_sync.cc and debug_sync.h.
      sql/debug_sync.cc:
        WL#4259 - Debug Sync Facility
        New source file.
      sql/debug_sync.h:
        WL#4259 - Debug Sync Facility
        New header file.
      sql/mysqld.cc:
        WL#4259 - Debug Sync Facility
        Added opt_debug_sync_timeout.
        Added calls to debug_sync_init() and debug_sync_end().
        Fixed a purecov comment (unrelated).
      sql/set_var.cc:
        WL#4259 - Debug Sync Facility
        Added server variable "debug_sync".
      sql/set_var.h:
        WL#4259 - Debug Sync Facility
        Added declaration for server variable "debug_sync".
      sql/share/errmsg.txt:
        WL#4259 - Debug Sync Facility
        Added error messages ER_DEBUG_SYNC_TIMEOUT and ER_DEBUG_SYNC_HIT_LIMIT.
      sql/sql_base.cc:
        WL#4259 - Debug Sync Facility
        Added sync points "after_flush_unlock" and "before_lock_tables_takes_lock".
      sql/sql_class.cc:
        WL#4259 - Debug Sync Facility
        Added initialization for debug_sync_control to THD::THD.
        Added calls to debug_sync_init_thread() and debug_sync_end_thread().
      sql/sql_class.h:
        WL#4259 - Debug Sync Facility
        Added element debug_sync_control to THD.
      storage/myisam/myisamchk.c:
        Fixed a typo in an error message string (unrelated).
      4d57b851
    • Davi Arnaut's avatar
      Don't use the semicolon character as a argument separator as it · 88365681
      Davi Arnaut authored
      can be interpreted as a shell metacharacter in some circumstances.
      For example, it is interpreted as a command separator when invoking
      a debugger.
      
      mysql-test/lib/mtr_cases.pm:
        Use ':' as the separator on non-Windows platforms.
      mysql-test/mysql-test-run.pl:
        Remove unnecessary use of the separator.
      88365681
  29. 26 Sep, 2009 1 commit