An error occurred fetching the project authors.
  1. 28 Dec, 2005 1 commit
    • unknown's avatar
      Bug#15591 Occasional test suite abort due to port in use · 57b20336
      unknown authored
      If the server is started with --port-open-timeout=# 
      retry to bind the TCP port if it fails with EADDRINUSE.
      Use the new option in mysql-test-run.sh.
      
      
      mysql-test/mysql-test-run.sh:
        Bug#15591 Occasional test suite abort due to port in use
        Use the new option --port-open-timeout=# for server starts.
        This should fix occasionally late closed TCP ports.
      sql/mysqld.cc:
        Bug#15591 Occasional test suite abort due to port in use
        If the server is started with --port-open-timeout=# 
        retry to bind the TCP port if it fails with EADDRINUSE.
      57b20336
  2. 15 Dec, 2005 1 commit
    • unknown's avatar
      Fixed stress parts in shell and perl versions of mysql-test-run script to limit stress testing · 7c4ada14
      unknown authored
      with 20 test loops in case when any limit parameter was specified
      
      
      
      mysql-test/lib/mtr_stress.pl:
        Limit stress testing with 20 test loops in case when any limit parameter was specified
      mysql-test/mysql-test-run.pl:
        Limit stress testing with 20 test loops in case when any limit parameter was specified
      mysql-test/mysql-test-run.sh:
        Limit stress testing with 20 test loops in case when any limit parameter was specified
      7c4ada14
  3. 10 Nov, 2005 1 commit
    • unknown's avatar
      WL#2971 "change log-bin-trust-routine-creators=0 to apply only to functions". · 5d9c8e95
      unknown authored
      Indeed now that stored procedures CALL is not binlogged, but instead the invoked substatements are,
      the restrictions applied by log-bin-trust-routine-creators=0 are superfluous for procedures.
      They still need to apply to functions where function calls are written to the binlog (for example as "DO myfunc(3)").
      We rename the variable to log-bin-trust-function-creators but allow the old name until some future version (and issue a warning if old name is used).
      
      
      mysql-test/mysql-test-run.pl:
        update to new option name
      mysql-test/mysql-test-run.sh:
        update to new option name
      mysql-test/mysql_test_run_new.c:
        update to new option name
      mysql-test/r/rpl_sp.result:
        result update
      mysql-test/t/rpl_sp-slave.opt:
        we need to skip this error to not hit BUG#14769
      mysql-test/t/rpl_sp.test:
        Test update:
        1) as log-bin-trust-routine-creators now affects only functions, the testing of this option, which was
        mainly done on procedures, is moved to functions
        2) cleanup is simplified; and instead of many SHOW BINLOG EVENTS we do a big one in the end, which is more
        maintainable.
        3) we test a few more function and procedures cases to see how they replicate.
        4) removing out-of-date comments
      sql/item_func.cc:
        This warning is wrong since binlogging of functions was changed in August. If a function fails
        in the middle, it will be binlogged with its error code (i.e. properly).
      sql/mysql_priv.h:
        variable name changed
      sql/mysqld.cc:
        option name changes. A precision about --read-only.
      sql/set_var.cc:
        a new class sys_var_trust_routine_creators to be able to issue a "this is a deprecated variable" warning if used.
      sql/set_var.h:
        new class to be able to issue a "this is a deprecated variable" warning if used.
      sql/share/errmsg.txt:
        routine -> function
      sql/sp.cc:
        log-bin-trust-routine-creators now applies only to functions.
      sql/sql_parse.cc:
        1) sending ER_FAILED_ROUTINE_BREAK_BINLOG is wrong since August as we don't binlog CALL anymore but instead binlog the substatements;
        the clear_error() goes away too as it was necessary only when we created a binlog event from the "CALL" statement.
        2) log-bin-trust-routine-creators now applies only to functions.
      sql/sql_trigger.cc:
        comments.
      5d9c8e95
  4. 03 Nov, 2005 1 commit
  5. 01 Nov, 2005 1 commit
  6. 25 Oct, 2005 2 commits
    • unknown's avatar
      BUG# 12123 · cf59103d
      unknown authored
      Made change to mysqlimport to set character_set_database to binary to 
      make importing various charsets/columns work correctly.
      
      
      client/mysqlimport.c:
        BUG# 12123
        
        Added 'set @@character_set_database=binary' to make loading of tables with
        mixed charset types and non-latin characters load.
      mysql-test/mysql-test-run.pl:
        BUG #12123
        
        Added $MYSQL_IMPORT in order to test mysqlimport bug.
      mysql-test/mysql-test-run.sh:
        BUG #12123
        
        Added $MYSQL_IMPORT in order to test mysqlimport bug.
      mysql-test/r/mysqldump.result:
        BUG #12123
        
        Added dumping and reloading (using mysql, mysqldump, and mysqlimport) to
        show that this fix handles dumping and reloading of non-latin1 charsets
        in table with different charset columns (mixing of charsets, also can be a
        UTF table with latin1 tables). Note the select before and after dump and 
        restore - should be exact.
      mysql-test/t/mysqldump.test:
        BUG #12123
        
        Added dumping and reloading (using mysql, mysqldump, and mysqlimport) to
        show that this fix handles dumping and reloading of non-latin1 charsets
        in table with different charset columns (mixing of charsets, also can be a
        UTF table with latin1 tables). Note the select before and after dump and 
        restore - should be exact. (results of this)
      cf59103d
    • unknown's avatar
      Makefile.am: · e17b176e
      unknown authored
        Option to set environment variable MTR_BUILD_THREAD to a small
        number, from what mysql-test-run calculate port numbers that
        will not conflict with other runs with different thread num
      
      
      Makefile.am:
        Option to set environment variable MTR_BUILD_THREAD to a small
        number, from what mysql-test-run calculate port numbers that
        will not conflict with other runs with different thread num
      e17b176e
  7. 18 Oct, 2005 3 commits
  8. 13 Sep, 2005 1 commit
    • unknown's avatar
      Added option --valgrind-mysqltest to mysql-test-run · f8f1c016
      unknown authored
      Added flag to Field::store(longlong) to specify if value is unsigned.
      This fixes bug #12750: Incorrect storage of 9999999999999999999 in DECIMAL(19, 0)
      Fixed warning from valgrind in CREATE ... SELECT
      Fixed double free of mysql.options if reconnect failed
      
      
      mysql-test/mysql-test-run.sh:
        Added option --valgrind-mysqltest to allow one to run mysqltest with valgrind
      mysql-test/r/bigint.result:
        Update results after fix for Field::store(longlong)
      mysql-test/r/range.result:
        Update results after fix for Field::store(longlong)
      mysql-test/r/strict.result:
        Update results after fix for Field::store(longlong)
        (This fixes some wrong results when storing things into bigint columns)
      mysql-test/r/type_ranges.result:
        Update results after fix for Field::store(longlong)
      mysql-test/t/bigint.test:
        Added testing for #12750: Incorrect storage of 9999999999999999999 in DECIMAL(19, 0)
      mysql-test/t/innodb.test:
        Removed comments affected by this bug fix
      mysql-test/t/mysqldump.test:
        Fixed result to not depend on existing config files
      mysql-test/t/range.test:
        0xff numbers are now unsigned
      mysql-test/t/strict.test:
        Added errors for things that previously (wrongly) succeeded
      sql-common/client.c:
        Fixed double free of mysql.options if reconnect failed
      sql/field.cc:
        Added flag to Field::store(longlong) to specify if value is unsigned
      sql/field.h:
        Added flag to Field::store(longlong) to specify if value is unsigned
      sql/field_conv.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/ha_ndbcluster.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/handler.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/item.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/item_sum.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/sp.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/sql_acl.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/sql_help.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/sql_show.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/sql_table.cc:
        Fixed varning from valgrind
      sql/sql_udf.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/tztime.cc:
        Fixed calls to Field::store(longlong,flag)
      sql/unireg.cc:
        Fixed calls to Field::store(longlong,flag)
      f8f1c016
  9. 09 Sep, 2005 1 commit
    • unknown's avatar
      A fix (bug #12917: The --defaults-extra-file option is ignored by the 5.0 client binaries). · af05c8d3
      unknown authored
      
      mysql-test/mysql-test-run.pl:
        A fix (bug #12917: The --defaults-extra-file option is ignored by the 5.0 client binaries).
        MYSQL_MY_PRINT_DEFAULTS added
      mysql-test/mysql-test-run.sh:
        A fix (bug #12917: The --defaults-extra-file option is ignored by the 5.0 client binaries).
        MYSQL_MY_PRINT_DEFAULTS added
      mysys/default.c:
        A fix (bug #12917: The --defaults-extra-file option is ignored by the 5.0 client binaries).
        Set defaults_extra_file as we use it widely.
      af05c8d3
  10. 26 Aug, 2005 1 commit
  11. 15 Jul, 2005 1 commit
    • unknown's avatar
      BUG#11316 mysqltest, problems when assigning value with '#' to $variable · d57a0e52
      unknown authored
       - Fixed problem, only detect comment if the # is on start of line AND starting line of the current command.
       - Wrote tests for most of the mysqltest commands, added stricter checking of correct syntax.
      
      
      client/mysqltest.c:
        Updated mysql test to do stricter checking of syntax. For example when the number 
        of arguments to a command is known, everything else is "junk" => die. 
        Better checking of argument types.
        Added better debug printouts.
        Added improved printouts when wrong syntax is detected.
        Fix two bugs where mysqltest could not detect end of comamnd properly, as described in bug#11316
        Fix segfault when performing too many source commands.
        Fix segfault when doing too many while loop levels.
        Add printout of line number in die
        Remove lineno and \n in all strings passed to die function.
        Decrese BLOCK_STACK_DEPTH from 32 to 16, does any test use more than 1 level?
      mysql-test/mysql-test-run.pl:
        export MYSQL_TEST environment variable, used from msyqltest.test
      mysql-test/mysql-test-run.sh:
        export MYSQL_TEST environment variable, used from msyqltest.test
      mysql-test/r/mysqltest.result:
        Updated test results
      mysql-test/r/rpl_flush_log_loop.result:
        Updated test result.
        Approved by lars
      mysql-test/t/innodb-deadlock.test:
        Correct wrong syntax
        Superfluos ;
      mysql-test/t/innodb-lock.test:
        Correct wrong syntax
        Superfluos ;
      mysql-test/t/mysqltest.test:
        Add several new tests  for mysqltest.
        Foxus on detecting wrong syntax in test files.
        Use exec with expected error to execute test scripts that will kill mysqltest
        Change some negative test that were previously commented out to use the above method.
      mysql-test/t/ndb_autodiscover2.test:
        Correct wrong syntax
        Superfluos ;
      mysql-test/t/rpl_change_master.test:
        Correct wrong syntax
        Superfluos ;
      mysql-test/t/rpl_deadlock.test:
        Correct wrong syntax
        Superfluos ;
      mysql-test/t/rpl_drop_temp.test:
        Correct wrong syntax
        Superfluos ;
      mysql-test/t/rpl_flush_log_loop.test:
        Fix after detecting wrong syntax, missing ;
        Discussed with lars.
      mysql-test/t/rpl_insert_id.test:
        Missing ;
      mysql-test/t/rpl_rotate_logs.test:
        Correct wrong syntax
        Superfluos ;
      mysql-test/t/rpl_until.test:
        Missing delimiter
      mysql-test/include/mysqltest_while.inc:
        New file to test too many while levels
      d57a0e52
  12. 24 Jun, 2005 1 commit
    • unknown's avatar
      mysql-test-run.sh: · b743e2b4
      unknown authored
        Corrected path to CA certificate
      
      
      mysql-test/mysql-test-run.sh:
        Corrected path to CA certificate
      b743e2b4
  13. 21 Jun, 2005 1 commit
    • unknown's avatar
      patch · c2a84d5f
      unknown authored
      client/mysqldump.c:
        Add description of quote_for_like
        Add quoting of \ to \\\\ in quote_for_like
        Add DBUG_*
        Rearranged code in dump_selected_tables so the first thing it will do is to check that the tables to dump are available
        Unless --force is used, program will exit if not all specified tables can be found
        Add files to dump to HASH table for easy iteration
        Simpler handling of ignore_table list.
        Add new error code used when table user selected to dump  can not be found in db
      client/mysqltest.c:
        Make it possible to exec a command that fails by setting --error <errno> before the command to exec.
        Check that the error returned from executed program matches the expected error.
        Add DBUG_* printouts
      mysql-test/mysql-test-run.sh:
        export MYSQL_DUMP_DIR used in "--replace_result"
      mysql-test/r/mysqldump.result:
        Added test for illegal / nonexisting table and database names
      mysql-test/t/mysqldump.test:
        Added test for illegal / nonexisting table and database names
      c2a84d5f
  14. 10 Jun, 2005 2 commits
    • unknown's avatar
      mtr_process.pl: · 4cc8730d
      unknown authored
        Added a sleep for 5 seconds when shuting down,
        work around for strange problem with server restarts
      mtr_cases.pl:
        Set default time zone as opt to mysqld
      mysql-test-run.pl:
        Enabled --mysqld=<flags> to work
        Put some Windows path names into environment,
        to be used in --replace_result
      mysql-test-run.sh:
        Make shell script tolerant to Windows change in test cases
      
      
      mysql-test/mysql-test-run.sh:
        Make shell script tolerant to Windows change in test cases
      mysql-test/mysql-test-run.pl:
        Enabled --mysqld=<flags> to work
        Put some Windows path names into environment,
        to be used in --replace_result
      mysql-test/lib/mtr_cases.pl:
        Set default time zone as opt to mysqld
      mysql-test/lib/mtr_process.pl:
        Added a sleep for 5 seconds when shuting down,
        work around for strange problem with server restarts
      4cc8730d
    • unknown's avatar
      mysql-test/mysql-test-run.sh · 19d66f2b
      unknown authored
          don't start ndb cluster if no test uses it.
      
      
      mysql-test/mysql-test-run.sh:
        don't start ndb cluster if no test uses it.
      19d66f2b
  15. 09 Jun, 2005 1 commit
    • unknown's avatar
      mysql-test-run.pl, mysql-test-run.sh: · 62b1f1e3
      unknown authored
        Corrected path to SSL certificate files
      
      
      mysql-test/mysql-test-run.sh:
        Corrected path to SSL certificate files
      mysql-test/mysql-test-run.pl:
        Corrected path to SSL certificate files
      62b1f1e3
  16. 05 Jun, 2005 1 commit
    • unknown's avatar
      Cleanup during review · b08b3a15
      unknown authored
      Simple optimization for 2 argument usage to function of variable arguments
      Fix stack overrun when using 1+1+1+1+1+1+1+....
      Update crash-me results for 5.0
      Don't call post_open if pre_open() fails (optimization)
      
      
      
      sql-bench/limits/mysql-4.1.cfg:
        Rename: sql-bench/limits/mysql.cfg -> sql-bench/limits/mysql-4.1.cfg
      libmysql/libmysql.c:
        More portable define
      mysql-test/mysql-test-run.sh:
        Write also InnoDB warnings to warnings.log
      mysql-test/t/type_newdecimal.test:
        Don't get errors if innodb is not defined
      mysys/my_alloc.c:
        Cleanup comments
      mysys/thr_lock.c:
        Cleanup comments
      sql/item.h:
        Remove not needed initializer
      sql/item_func.cc:
        Simple optimization for 2 argument usage to function of variable arguments
      sql/mysql_priv.h:
        We use more stackspace with the introduction of int_op() etc.
        This change ensures we don't run out of stack when doing 1+1+1+1...
        (Tested on x86, 32 bit)
      sql/sp_head.cc:
        Don't call post_open if pre_open() fails
      sql/sp_rcontext.cc:
        More comments
        Change so that post_open() doesn't have to be called if pre_open() fails
      sql/sql_parse.cc:
        Fold long lines
      sql/sql_select.cc:
        Simple reorganization to reduce number of if's
        Ensure that table_map is updated for where clause (fixed warning from valgrind)
      b08b3a15
  17. 26 May, 2005 1 commit
  18. 25 May, 2005 1 commit
    • unknown's avatar
      Use one err file for each master · 827db5e4
      unknown authored
      mysql-test/mysql-test-run.sh:
        Add master id to end of MASTER_MY_ERR  so that both masters doesnt write to the same file.
      827db5e4
  19. 18 May, 2005 1 commit
    • unknown's avatar
      test fixes · afe67793
      unknown authored
      mysql-test/mysql-test-run.sh:
        always use --no-defaults
      mysql-test/t/range.test:
        range.test does not requires innodb
      afe67793
  20. 15 May, 2005 1 commit
    • unknown's avatar
      mysqltest.c, mysql-test-run.sh: · f4425b50
      unknown authored
        Not to conflict with Windows return code 2 for "not found", use 62 for "skip"
      mysql-test-run.sh, suppress.purify:
        Use Purify suppress file
      
      
      mysql-test/suppress.purify:
        Purify suppress file
      mysql-test/mysql-test-run.sh:
        Use Purify suppress file
        Not to conflict with Windows return code 2 for "not found", use 62 for "skip"
      client/mysqltest.c:
        Not to conflict with Windows return code 2 for "not found", use 62 for "skip"
      f4425b50
  21. 05 May, 2005 1 commit
    • unknown's avatar
      Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146... · af12ff65
      unknown authored
        Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146 binlogging/replication of routines (stored procs and functions).
        Approximative, because it's using our binlogging way (what we call "query"-level) and this is not as good as record-level binlog (5.1) would be. It imposes several
        limitations to routines, and has caveats (which I'll document, and for which the server will try to issue errors but that is not always possible).
        Reason I don't propagate caller info to the binlog as planned is that on master and slave
        users may be different; even with that some caveats would remain.
      
      
      mysql-test/mysql-test-run.sh:
        In the testsuite we know what we do, we are not creating nasty routines, and breaking binlog is ok except in rpl_sp.
      mysql-test/r/blackhole.result:
        Updating results now that 4.1 has been merged
      mysql-test/valgrind.supp:
            Some suppressions for Valgrind (useful on my machine Suse 9.1);
            this is just adding to the already existing suppressions of pthread and dl.
      sql/item_func.cc:
            Don't binlog the substatements when executing a function. If the function
            is declared to modify data and does not complete, warning "broken binlog".
            Note that SELECT myfunc() will not be binlogged even if myfunc() updates data (will be documented);
            but INSERT INTO t VALUES(myfunc()) will be binlogged (what decides is if the caller
            gets binlogged; the function changes nothing to binlogging).
      sql/log_event.cc:
            Just making functions which can be re-used when we binlog more strings
            in status_vars in Query_log_event (e.g. one day "user", "host").
      sql/log_event.h:
        comment
      sql/mysql_priv.h:
            --log-bin-trust-routine-creators
      sql/mysqld.cc:
            --log-bin-trust-routine-creators
      sql/set_var.cc:
            --log-bin-trust-routine-creators
      sql/share/errmsg.txt:
        error messages to warn about problems with routines and binlog
      sql/slave.cc:
            If in a routine, replication table inclusion/exclusion rules always answer "replicate!" (see comment in code).
      sql/sp.cc:
            If binlog is on: errors if one wants to create a non-deterministic update routine
            (repeatability problem - note that the test is not perfect for functions) or does not have SUPER (because routines can easily
            be made to destroy slave's data with just CREATE ROUTINE and EXECUTE priv on master).
            --log-bin-trust-routine-creators removes these errors.
            Binlogging of CREATE PROCEDURE|FUNCTION.
      sql/sql_acl.cc:
            No thd==0 in tables_ok().
      sql/sql_parse.cc:
            Binlogging of CALL (and not of the substatements of the SP).
            If SP returns error, we don't binlog it (see comment); we push warning in this case.
            Binlogging of ALTER|DROP PROCEDURE|FUNCTION with safety messages.
      af12ff65
  22. 28 Apr, 2005 1 commit
  23. 07 Apr, 2005 1 commit
    • unknown's avatar
      Moved some old test and added a new test to only be run with mysql-test-run --big · e10d8144
      unknown authored
      Fixed warnings by valgrind for sum_distinct.test
      Enable buffered-record-reads after filesort for InnoDB tables with short primary key
      Enabled sort-with-data for MyISAM temporary files
      
      
      BitKeeper/etc/ignore:
        added tools/mysqltestmanager
      client/mysqltest.c:
        Ensure that BIG_TEST is always set to 0 or 1
        Fix the 'eval' also honors 'require'
      mysql-test/mysql-test-run.sh:
        Enlarge InnoDB table space for --big tests
      mysql-test/r/heap.result:
        Fix after adding more optimzation for filsort
      mysql-test/r/sum_distinct.result:
        Move 'slow' part of test to sum_distinct-big.test
      mysql-test/t/heap.test:
        Ensure that results are indpendent of optimizer
      mysql-test/t/sum_distinct.test:
        Move 'slow' part of test to sum_distinct-big.test
      sql/filesort.cc:
        Use 'sort with data' also on temporary files and with INSERT ... SELECT
      sql/ha_innodb.h:
        Remove HA_FAST_KEY_READ to enable buffered-record-reads after filesort
      sql/handler.h:
        More comments
      sql/mysql_priv.h:
        A bit smaller limit for cache for buffered-records-read (after testing)
      sql/records.cc:
        Don't use buffered-record-reads if ref_length > MAX_REFLENGTH
        Fixed warning from valgrind in 'sum_distinct'
      sql/sql_select.cc:
        Ensure that tempory tables has query_id set for all fields
        (Required for sort-with-data to work on temp files)
      e10d8144
  24. 06 Apr, 2005 1 commit
    • unknown's avatar
      Fixed errors descovered by valgrind 2.4 · 080c8ab3
      unknown authored
      Added suppression file for some valgrind warnings that are not real errors
      
      
      mysql-test/mysql-test-run.sh:
        Added suppression of some valgrind warnings that are not real errors
      mysql-test/r/heap.result:
        Cleanup old tests and added new tests
      mysql-test/t/heap.test:
        Cleanup old tests and added new tests
      mysys/default.c:
        Removed duplicate fn_format()
      scripts/make_binary_distribution.sh:
        Added valgrind suppress file
      sql/ha_federated.cc:
        Ensure that 'socket' is initialized properly
      sql/ha_heap.cc:
        Ensure that with_auto_increment is initialized properly
      sql/mysqld.cc:
        Ensure that create_time is initialized for cached threads
      sql/sql_parse.cc:
        Indentation fix
      strings/decimal.c:
        Fixed wrong tests
      080c8ab3
  25. 03 Apr, 2005 1 commit
    • unknown's avatar
      Enable IM in the binary distribution and fix Bug #9513 (mysql.server script... · d67f4397
      unknown authored
      Enable IM in the binary distribution and fix Bug #9513 (mysql.server script from the binary distibution
      doesn't work out of the box)
      
      
      client/Makefile.am:
        old mysqlmanager, mysqlmanagerc and mysqlmanager-pwgen renamed into mysqltestmanager, mysqltestmanagerc and
        mysqltestmanager-pwgen respectively
      mysql-test/mysql-test-run.sh:
        Old mysqlmanager, mysqlmanagerc and mysqlmanager-pwgen renamed into
        mysqltestmanager, mysqltestmanagerc and mysqltestmanager-pwgen respectively
      scripts/make_binary_distribution.sh:
        Fix the script to include IM and process mysql.server correctly
      server-tools/instance-manager/Makefile.am:
        change default socket name to follow mysqld style (and thus, fix the ptoblem with non-existant localstatedir
        in the binary distribution)
      support-files/mysql.spec.sh:
        Fix mysql.spec template to reflect the name change
      tools/Makefile.am:
        old mysqlmanager renamed into mysqltestmanager
      d67f4397
  26. 31 Mar, 2005 1 commit
    • unknown's avatar
      Remove result.es files and support for them, which requires splitting · f0148b21
      unknown authored
      up a couple of tests and adjusting the output of others. Exposes two
      bugs (9472 and 9508).
      
      
      BitKeeper/deleted/.del-drop_temp_table.result.es~bc4cfb1ee1257458:
        Delete: mysql-test/r/drop_temp_table.result.es
      BitKeeper/deleted/.del-insert_select.result.es~ae7eb9891d6c07c4:
        Delete: mysql-test/r/insert_select.result.es
      BitKeeper/deleted/.del-myisam-blob.result.es~d498dae7d9f1a6d4:
        Delete: mysql-test/r/myisam-blob.result.es
      BitKeeper/deleted/.del-packet.result.es~6e71c3b634806185:
        Delete: mysql-test/r/packet.result.es
      BitKeeper/deleted/.del-query_cache.result.es~246ad731a517d9ab:
        Delete: mysql-test/r/query_cache.result.es
      BitKeeper/deleted/.del-select.result.es~240635f6a3f1a079:
        Delete: mysql-test/r/select.result.es
      BitKeeper/deleted/.del-type_blob.result.es~a4a0d4454b2d0218:
        Delete: mysql-test/r/type_blob.result.es
      BitKeeper/deleted/.del-type_float.result.es~a5533e4118eadc04:
        Delete: mysql-test/r/type_float.result.es
      BitKeeper/deleted/.del-type_ranges.result.es~bb77517f4c9dc978:
        Delete: mysql-test/r/type_ranges.result.es
      mysql-test/mysql-test-run.sh:
        Remove support for special result extension -- bad idea!
      mysql-test/t/ps_1general.test:
        Explain --replace_result
      mysql-test/r/insert_select.result:
        Update results
      mysql-test/r/select.result:
        Update results
      mysql-test/r/type_blob.result:
        Update results
      mysql-test/r/type_float.result:
        Update results
      mysql-test/r/type_ranges.result:
        Update results
      mysql-test/t/drop_temp_table.test:
        Skip this test with embedded server
      mysql-test/t/insert_select.test:
        Move binlog test to new file
      mysql-test/t/select.test:
        Replace grants column from 'show full columns'
      mysql-test/t/type_blob.test:
        Replace grants column from 'show full columns'
      mysql-test/t/type_float.test:
        Replace grants column from 'show full columns'
      mysql-test/t/type_ranges.test:
        Replace grants column from 'show full columns'
      sql/sql_select.cc:
        Fix conditional around query_cache_abort() call.
      f0148b21
  27. 30 Mar, 2005 2 commits
    • unknown's avatar
      Eliminate most of the remaining hardcoded list of tests to skip · 57221d3d
      unknown authored
      by adding check for embedded server within tests and splitting some
      tests into multiple test files.
      
      
      mysql-test/mysql-test-run.sh:
        Remove most of hardcoded list of tests to skip
      mysql-test/r/ps_1general.result:
        Update results
      mysql-test/r/timezone2.result:
        Update results
      mysql-test/r/user_var.result:
        Update results
      mysql-test/r/variables.result:
        Update results
      mysql-test/t/mix_innodb_myisam_binlog.test:
        Disable test with embedded server
      mysql-test/t/mysql_protocols.test:
        Disable test with embedded server
      mysql-test/t/mysqlbinlog.test:
        Disable test with embedded server
      mysql-test/t/mysqlbinlog2.test:
        Disable test with embedded server
      mysql-test/t/mysqldump.test:
        Disable test with embedded server
      mysql-test/t/packet.test:
        Disable test with embedded server
      mysql-test/t/ps_1general.test:
        Move parts of test to new ps_grant
      mysql-test/t/rename.test:
        Disable test with embedded server
      mysql-test/t/show_check.test:
        Disable test with embedded server
      mysql-test/t/system_mysql_db_fix.test:
        Disable test with embedded server
      mysql-test/t/timezone2.test:
        Move part of test to timezone_grant
      mysql-test/t/user_var.test:
        Move part of test to new user_var-binlog
      mysql-test/t/variables.test:
        Move part of test to rpl_variables
      57221d3d
    • unknown's avatar
      Clean up InnoDB testing with embedded server. · baf121de
      unknown authored
      BitKeeper/deleted/.del-innodb.result.es~ba2a97747fd41a3a:
        Delete: mysql-test/r/innodb.result.es
      mysql-test/mysql-test-run.sh:
        Remove innodb tests from list of tests automatically skipped
        with embedded server
      mysql-test/r/innodb.result:
        Update results
      mysql-test/t/innodb-deadlock.test:
        Skip with embedded server
      mysql-test/t/innodb-lock.test:
        Skip with embedded server
      mysql-test/t/innodb.test:
        Move test of replace delayed to new test file, add to --replace_result
        to clean up path
      baf121de
  28. 29 Mar, 2005 2 commits
    • unknown's avatar
      Shift skipping of some tests with embedded server from within · ff9a1bd2
      unknown authored
      mysql-test-run to the tests themselves.
      
      
      mysql-test/t/bdb-deadlock.test:
        Don't run this test with embedded server
      mysql-test/mysql-test-run.sh:
        Remove tests from being skipped with embedded server
      mysql-test/t/connect.test:
        Skip test under embedded server
      mysql-test/t/flush_block_commit.test:
        Skip test under embedded server
      mysql-test/t/grant.test:
        Skip test under embedded server
      mysql-test/t/grant2.test:
        Skip test under embedded server
      mysql-test/t/grant_cache.test:
        Skip test under embedded server
      ff9a1bd2
    • unknown's avatar
      Backport of ChangeSet 1.1700.256.8: Export the variable MASTER_MY_PORT1 from... · 9dc90a16
      unknown authored
      Backport of ChangeSet 1.1700.256.8: Export the variable MASTER_MY_PORT1 from the place where the second master is started
      
      
      
      9dc90a16
  29. 22 Mar, 2005 1 commit
    • unknown's avatar
      mysql-test-run.sh, mysql-test-run.pl: · 27a711b4
      unknown authored
        InnoDB needs longer start time for second slave on slow hosts
      
      
      mysql-test/mysql-test-run.pl:
        InnoDB needs longer start time for second slave on slow hosts
      mysql-test/mysql-test-run.sh:
        InnoDB needs longer start time for second slave on slow hosts
      27a711b4
  30. 18 Mar, 2005 1 commit
    • unknown's avatar
      mysql-test-run.sh: · 1cc46f67
      unknown authored
        Disabled old feature to disable test cases
      
      
      mysql-test/mysql-test-run.sh:
        Disabled old feature to disable test cases
      1cc46f67
  31. 16 Mar, 2005 2 commits
    • unknown's avatar
      Fix to get --skip-ndb to work · 36c35836
      unknown authored
      36c35836
    • unknown's avatar
      mysql-test-run.sh: · 6f36a062
      unknown authored
        Check that there is a disabled.def before using it
      disabled.def:
        Reenable ndb tests accidently disabled
      
      
      mysql-test/t/disabled.def:
        Reenable ndb tests accidently disabled
      mysql-test/mysql-test-run.sh:
        Check that there is a disabled.def before using it
      6f36a062
  32. 15 Mar, 2005 2 commits
    • unknown's avatar
      Partly reverty back patch (in heap-auto-increment-key detection) to ensure... · da911ec8
      unknown authored
      Partly reverty back patch (in heap-auto-increment-key detection) to ensure that auto_key and auto_key_type are calculated the same way
      
      
      heap/hp_create.c:
        Partly reverty back patch to ensure that auto_key and auto_key_type are calculated the same way
      include/heap.h:
        Partly reverty back patch to ensure that auto_key and auto_key_type are calculated the same way
      mysql-test/mysql-test-run.sh:
        made --skip-ndb a synonyme for --skip-ndbcluster
      sql/ha_heap.cc:
        Partly reverty back patch to ensure that auto_key and auto_key_type are calculated the same way
      da911ec8
    • unknown's avatar
      mysql-test-run.sh: · 6272f6f2
      unknown authored
        Added feature to disable tests from a list in a file "disabled.def"
        Moved down the code that disables, so that --do-test and --start-from
        don't list the disabled tests not in range.
      disabled.def:
        List of test cases to temporarely disable
      
      
      mysql-test/t/disabled.def:
        List of test cases to temporarely disable
      mysql-test/mysql-test-run.sh:
        Added feature to disable tests from a list in a file "disabled.def"
        Moved down the code that disables, so that --do-test and --start-from
        don't list the disabled tests not in range.
      6272f6f2