An error occurred fetching the project authors.
  1. 14 Dec, 2004 1 commit
    • unknown's avatar
      corrected mysqltest.dsp · 820d68d9
      unknown authored
      corrected mysql_test_run_new.dsp
      added dependency
      corrected path of mysql_test_run_new.dsp
      fixed wrong code
      added my_create_tables.c
      removed command_line
      fixed #elif
      restored NAME_MAX and MAX_FNAME
      added create_system_files()
      added compare() for windows
      added all files of testes in script
      added mysql-test in script
      
      
      BitKeeper/etc/ignore:
        Added mysql-4.1.8-win-src.zip to the ignore list
      VC++Files/client/mysqltest.dsp:
        corrected dsp file
      VC++Files/mysql-test/mysql_test_run_new.dsp:
        corrected mysql_test_run_new.dsp
      VC++Files/mysql.dsw:
        added dependency
        corrected path of mysql_test_run_new.dsp
      client/mysqltest.c:
        fixed wrong code
      mysql-test/Makefile.am:
        added my_create_tables.c
      mysql-test/my_manage.c:
        removed command_line
        fixed #elif
      mysql-test/my_manage.h:
        restored NAME_MAX and MAX_FNAME
      mysql-test/mysql_test_run_new.c:
        added create_system_files()
        added compare for windows
      scripts/make_win_src_distribution.sh:
        added all files of testes
        added mysql-test
      820d68d9
  2. 08 Nov, 2004 2 commits
    • unknown's avatar
      Makefile.am: · 2ab265d0
      unknown authored
        added so that it is possible to make mysql_test_run_new
        but not done for target all do:
         make mysql_test_run_new
      
      
      mysql-test/Makefile.am:
        added so that it is possible to make mysql_test_run_new
        but not done for target all do:
         make mysql_test_run_new
      2ab265d0
    • unknown's avatar
      Makefile.am: · 61838e4c
      unknown authored
        remove mysql_test_run_new for now, it breaks the make
      
      
      mysql-test/Makefile.am:
        remove mysql_test_run_new for now, it breaks the make
      61838e4c
  3. 05 Nov, 2004 1 commit
  4. 04 Nov, 2004 1 commit
  5. 03 Nov, 2004 1 commit
    • unknown's avatar
      Fix for bug #6387 "Queried timestamp values do not match the inserted · d259ba40
      unknown authored
      value if server runs in time zone with leap seconds".
      
      Now in my_gmt_sec() function we take into account difference between
      our target and estimation in seconds part.
      
      
      mysql-test/Makefile.am:
        Added mysql-test/std_data/Moscow_leap reuired by new timezone3.test
        to source distribution.
      sql/time.cc:
        my_gmt_sec():
         When comparing our target broken-down datetime t value and proper 
         representation of our estimation *l_time we should take into account
         that they could differ in second part if we have time zone leap seconds.
         
         Also added comments about some assumptions used in this function.
      d259ba40
  6. 15 Sep, 2004 1 commit
    • unknown's avatar
      WL#964 · 7d94788c
      unknown authored
      porting mysql_test_run on Linux and Windows
      
      
      client/mysqltest.c:
        added windows code
      mysql-test/Makefile.am:
        added code of creating make file
      mysql-test/r/fulltext.result:
        added FORMAT() for compatible with Windows version
      mysql-test/r/fulltext_cache.result:
        added FORMAT()
      mysql-test/r/fulltext_multi.result:
        added FORMAT()
      mysql-test/r/fulltext_order_by.result:
        added FORMAT()
      mysql-test/r/type_float.result:
        added --replace-result
      mysql-test/t/fulltext.test:
        added FORMAT()
      mysql-test/t/fulltext_cache.test:
        added FORMAT()
      mysql-test/t/fulltext_multi.test:
        added FORMAT()
      mysql-test/t/fulltext_order_by.test:
        added FORMAT()
      mysql-test/t/innodb.test:
        added --replace-result
      mysql-test/t/insert.test:
        added --replace_result
      mysql-test/t/type_float.test:
        added --replace-result
      mysql-test/t/variables.test:
        added --replace_result
      7d94788c
  7. 14 Aug, 2004 1 commit
  8. 25 Jun, 2004 1 commit
  9. 23 Jun, 2004 1 commit
    • unknown's avatar
      handler interface cleanups: · 9a554b47
      unknown authored
        more logical table/index_flags
        return  HA_ERR_WRONG_COMMAND instead of abstract methods where appropriate
        max_keys and other limits renamed to max_supported_keys/etc
        max_keys/etc are now wrappers to max_supported_keys/etc 
        ha_index_init/ha_rnd_init/ha_index_end/ha_rnd_end are now wrappers to real {index,rnd}_{init,end} to enforce strict pairing
      
      
      include/myisam.h:
        increasing myisam_max_temp_file_length
      include/my_base.h:
        handler interface cleanup
      myisam/mi_static.c:
        warning removed
      mysql-test/Makefile.am:
        followup
      mysql-test/r/fulltext.result:
        fulltext indexes are not ordered
      mysql-test/r/rpl_user_variables.result:
        followup
      sql/field.cc:
        index_flags
      sql/filesort.cc:
        rnd_init -> ha_rnd_init
        rnd_end -> ha_rnd_end
      sql/ha_berkeley.cc:
        cleanup
      sql/ha_berkeley.h:
        table/index_flags revamped
      sql/ha_heap.cc:
        ensure index is accessed only after index_init (esp. important for temp tables)
      sql/ha_heap.h:
        table/index_flags revamped
      sql/ha_innodb.cc:
        don't workaround MySQL sloppiness
      sql/ha_innodb.h:
        table/index_flags revamped
      sql/ha_isam.h:
        table/index_flags revamped
      sql/ha_isammrg.h:
        table/index_flags revamped
      sql/ha_myisam.cc:
        ensure index is accessed only after index_init (esp. important for temp tables)
      sql/ha_myisam.h:
        table/index_flags revamped
      sql/ha_myisammrg.h:
        table/index_flags revamped
      sql/handler.cc:
        handler interface cleanups
      sql/handler.h:
        handler interface cleanups:
          more logical table/index_flags
          return  HA_ERR_WRONG_COMMAND instead of abstract methods
          max_keys and other limits renamed to max_supported_keys/etc
          max_keys/etc are now wrappers to max_supported_keys/etc 
          ha_index_init/ha_rnd_init/ha_index_end/ha_rnd_end are now wrappers to enforce strict pairing
      sql/item_subselect.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/lex.h:
        renamed to avoid conflicts
      sql/opt_range.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
        table/index_flags cleanup
      sql/opt_range.h:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/opt_sum.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
        table/index_flags cleanup
      sql/records.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_acl.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_cache.cc:
        cleanup
      sql/sql_delete.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_handler.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_help.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_insert.cc:
        table/index_flags cleanup
      sql/sql_select.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
        table/index_flags cleanup
      sql/sql_table.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
        table/index_flags cleanup
      sql/sql_update.cc:
        index_init/index_end/rnd_init/rnd_end strict pairing fixed
      sql/sql_yacc.yy:
        INDEX -> INDEX_SYM
      sql/table.cc:
        table/index_flags cleanup
      9a554b47
  10. 11 Jun, 2004 1 commit
  11. 05 Jun, 2004 1 commit
  12. 27 May, 2004 1 commit
  13. 02 Nov, 2003 1 commit
    • unknown's avatar
      Cleanups (comments and compiler warnings) · 18665803
      unknown authored
      dded init of variable to fix core dump on startup errors
      
      
      mysql-test/Makefile.am:
        Added transformation of socket address for mysql-test-run
      mysql-test/mysql-test-run.sh:
        Added option --socket
      sql/derror.cc:
        Removed compiler warning
      sql/mysql_priv.h:
        Moved assert up to be able to use asserts in other header files
      sql/mysqld.cc:
        Fixed comment
      sql/sql_bitmap.h:
        Added copyright notice
        Removed not needed header files
      sql/sql_class.cc:
        Added init of variable to fix core dump on startup errors
      sql/sql_test.cc:
        Fixed compiler errors (from key_map code)
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      18665803
  14. 01 Sep, 2003 1 commit
    • unknown's avatar
      Implemented replication over SSL · 8a548ffd
      unknown authored
       Added proper options to CHANGE MASTER TO, new fields to SHOW SLAVE STATUS,
       Honoring this parameters during connection to master.
       Introduced new format of master.info file
      
      
      include/mysqld_error.h:
        Added error code for "slave without SSL ignored SSL params warning"
      mysql-test/Makefile.am:
        Copy files required for rpl_openssl test during the make process
      mysql-test/r/rpl000015.result:
        Added fields to SHOW SLAVE STATUS for replication over SSL
      mysql-test/r/rpl_empty_master_crash.result:
        Added fields to SHOW SLAVE STATUS for replication over SSL
      mysql-test/r/rpl_flush_log_loop.result:
        Added fields to SHOW SLAVE STATUS for replication over SSL
      mysql-test/r/rpl_log.result:
        Added fields to SHOW SLAVE STATUS for replication over SSL
      mysql-test/r/rpl_log_pos.result:
        Added fields to SHOW SLAVE STATUS for replication over SSL
      mysql-test/r/rpl_redirect.result:
        Added fields to SHOW SLAVE STATUS for replication over SSL
      mysql-test/r/rpl_replicate_do.result:
        Added fields to SHOW SLAVE STATUS for replication over SSL
      mysql-test/r/rpl_rotate_logs.result:
        Added fields to SHOW SLAVE STATUS for replication over SSL
      sql/lex.h:
        Added MASTER_SSL lexems for CHANGE MASTER
      sql/mysqld.cc:
        Added --master-ssl-ca parameter. Fixed description of other master-ssl parameters
      sql/repl_failsafe.cc:
        Added SSL support to connect_to_master()
      sql/share/czech/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/danish/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/dutch/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/english/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/estonian/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/french/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/german/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/greek/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/hungarian/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/italian/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/japanese/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/korean/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/norwegian-ny/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/norwegian/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/polish/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/portuguese/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/romanian/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/russian/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/serbian/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/slovak/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/spanish/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/swedish/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/share/ukrainian/errmsg.txt:
        Added "slave without SSL ignored SSL params" warning
      sql/slave.cc:
        Introduced new format of master.info file
        Added support of SSL params in master.info and SHOW SLAVE STATUS
        Added support of SSL connections
      sql/slave.h:
        Added SSL parameters to MASTER_INFO
      sql/sql_lex.h:
        Added SSL parameters for CHANGE MASTER TO
      sql/sql_repl.cc:
        Added SSL parameters for CHANGE MASTER TO
      sql/sql_yacc.yy:
        Added SSL parameters for CHANGE MASTER TO
      8a548ffd
  15. 05 Mar, 2003 1 commit
  16. 04 Mar, 2003 2 commits
  17. 28 Feb, 2003 1 commit
  18. 29 Oct, 2002 1 commit
    • unknown's avatar
      Changed binlog name padding from binlog.001 to binlog.000001 · 46cd8ff4
      unknown authored
      mysql-test/Makefile.am:
        Changed binlog.001 to be binlog.000001
      mysql-test/r/rpl000015.result:
        Changed binlog.001 to be binlog.000001
      mysql-test/r/rpl000018.result:
        Changed binlog.001 to be binlog.000001
      mysql-test/r/rpl_flush_log_loop.result:
        Changed binlog.001 to be binlog.000001
      mysql-test/r/rpl_log.result:
        Changed binlog.001 to be binlog.000001
      mysql-test/r/rpl_log_pos.result:
        Changed binlog.001 to be binlog.000001
      mysql-test/r/rpl_rotate_logs.result:
        Changed binlog.001 to be binlog.000001
      mysql-test/t/rpl000017-slave.sh:
        Changed binlog.001 to be binlog.000001
      mysql-test/t/rpl_log.test:
        Changed binlog.001 to be binlog.000001
      mysql-test/t/rpl_rotate_logs.test:
        Changed binlog.001 to be binlog.000001
      sql/log.cc:
        Changed binlog.001 to be binlog.000001
      46cd8ff4
  19. 08 Oct, 2002 1 commit
    • unknown's avatar
      Fixed missing table_list->name -> table_list->alias convert · 3dd6cce9
      unknown authored
      myisam/mi_open.c:
        Fixed problem with wrongly calculated max_data_file_length
      mysql-test/Makefile.am:
        Added  missing .require test files
      scripts/mysqlhotcopy.sh:
        Remove end / from directory names (portability fix)
      tests/grant.res:
        Update of test results
      3dd6cce9
  20. 07 Oct, 2002 1 commit
  21. 30 Jun, 2001 1 commit
    • unknown's avatar
      support for eval_result and let $var = `query` syntax in mysql-test · bd286b23
      unknown authored
      fixes for rpl_log test to make it config-independent
      
      
      BitKeeper/etc/ignore:
        Added mysql-test/r/rpl_log.eval to the ignore list
      client/mysqltest.c:
        support for eval_result and let $var = `query` syntax
      mysql-test/Makefile.am:
        import more variables into mysql-test-run
      mysql-test/mysql-test-run.sh:
        if we got wrong result on eval_result test case, diff against the
        expanded result, not the template
      mysql-test/r/rpl_log.result:
        change config-dependent parts of the result to dynamic variables
      mysql-test/t/rpl_log.test:
        get server version from the server
        remove obsoleted replace hack to solve port problem - use eval_result
        instead
      bd286b23
  22. 21 Apr, 2001 1 commit
    • unknown's avatar
      Fixed probelm with count(*) and normal functions when no matchin rows. · 05744411
      unknown authored
      Changed 'lib' to 'master-data'
      Fix for slow slaves
      
      
      Docs/manual.texi:
        Changelog
      include/mysql.h:
        Fixes for Cygwin
      libmysql/libmysql.c:
        Fixes for Cygwin
      mysql-test/Makefile.am:
        Include missing test files
      mysql-test/include/master-slave.inc:
        Fixes for slow slaves
      mysql-test/install_test_db.sh:
        Change 'lib' to 'master-data'
      mysql-test/mysql-test-run.sh:
        Change 'lib' to 'master-data'
      mysql-test/r/group_by.result:
        Test case for count(*) problem
      mysql-test/t/group_by.test:
        Test case for count(*) problem
      mysql-test/t/rpl000018-master.sh:
        Change 'lib' to 'master-data'
      sql/sql_select.cc:
        Fix for count(*) problem
      05744411
  23. 19 Apr, 2001 1 commit
  24. 02 Feb, 2001 1 commit
    • unknown's avatar
      Use INSTALL_DATA instead of cp. · a556607b
      unknown authored
      mysql.server is a script, not data.
      
      
      Docs/Makefile.am:
        Use INSTALL_DATA instead of cp
      libmysql/Makefile.am:
        Use INSTALL_DATA instead of cp
      mysql-test/Makefile.am:
        Use INSTALL_DATA instead of cp
      sql-bench/Makefile.am:
        Use INSTALL_DATA instead of cp
      support-files/Makefile.am:
        mysql.server is a script, not data.
      a556607b
  25. 31 Jan, 2001 1 commit
    • unknown's avatar
      Use $(INSTALL_DATA) instead of cp -p in mysql-test and sql-bench. · 0e30cd09
      unknown authored
      Clean up $(INSTALL_DATA) use in sql/share.
      
      
      mysql-test/Makefile.am:
        Use $(INSTALL_DATA) instead of cp -p.
      sql-bench/Makefile.am:
        Use $(INSTALL_DATA) instead of cp -p.
      sql/share/Makefile.am:
        Use $(INSTALL_DATA), instead of for loop + basename.
      0e30cd09
  26. 21 Jan, 2001 2 commits
    • unknown's avatar
      Remove removed files from Makefile.am · ab9646ca
      unknown authored
      mysql-test/Makefile.am:
        Remove removed files
      ab9646ca
    • unknown's avatar
      Changes for --with-server-suffix · ab7afc8c
      unknown authored
      Fixed mutex bug in logging (crash on windows when doing SET PASSWORD=)
      Changed MERGE  tables to not use FILE
      
      
      BitKeeper/deleted/.del-m.MRG~3f5632c37af00f18:
        Delete: mysql-test/std_data/m.MRG
      BitKeeper/deleted/.del-m.frm~e351dfe0b6824c0c:
        Delete: mysql-test/std_data/m.frm
      Docs/manual.texi:
        Added DNS section
      configure.in:
        Update to 3.23.32
      include/Makefile.am:
        Added my_config.h
      include/mysql_com.h:
        Changes for --with-server-suffix
      include/mysql_version.h.in:
        cleanup
      merge/open.c:
        Don't use FILE
      mysql-test/Makefile.am:
        removed not needed data files
      mysql-test/r/merge.result:
        generate merge file
      mysql-test/t/merge.test:
        generate merge file
      sql-bench/Results/ATIS-mysql-NT_4.0:
        New benchmark results
      sql-bench/Results/RUN-mysql-NT_4.0:
        New benchmark results
      sql-bench/Results/alter-table-mysql-NT_4.0:
        New benchmark results
      sql-bench/Results/big-tables-mysql-NT_4.0:
        New benchmark results
      sql-bench/Results/connect-mysql-NT_4.0:
        New benchmark results
      sql-bench/Results/create-mysql-NT_4.0:
        New benchmark results
      sql-bench/Results/insert-mysql-NT_4.0:
        New benchmark results
      sql-bench/Results/select-mysql-NT_4.0:
        New benchmark results
      sql-bench/Results/wisconsin-mysql-NT_4.0:
        New benchmark results
      sql/log.cc:
        Ensure that mutex are initialized before used
      sql/log_event.h:
        Changes for --with-server-suffix
      sql/mysql_priv.h:
        Changes for --with-server-suffix
      sql/mysqlbinlog.cc:
        Changes for --with-server-suffix
      sql/mysqld.cc:
        changed strnmov -> strmake
      sql/net_pkg.cc:
        Prepare for adding char-set conversion to SHOW commands
      ab7afc8c
  27. 19 Jan, 2001 1 commit
    • unknown's avatar
      Add --with-server-suffix (MYSQL_SERVER_SUFFIX). · c25f29bc
      unknown authored
      configure.in:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      include/mysql_version.h.in:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      myisam/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      mysql-test/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      scripts/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      scripts/mysqlbug.sh:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      sql-bench/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      sql/mysqld.cc:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      support-files/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      c25f29bc
  28. 02 Jan, 2001 2 commits
    • unknown's avatar
      Added missing .require files · 40847806
      unknown authored
      40847806
    • unknown's avatar
      Fixes to get mysql-test included in the distributions · 6cfd66f0
      unknown authored
      client/mysqldump.c:
        Fixed to not use strncasecmp
      client/mysqlimport.c:
        Fixed to not use strncasecmp
      mysql-test/Makefile.am:
        Changes needed for RPM
      mysql-test/mysql-test-run.sh:
        Changes to work with binary installations
      scripts/make_binary_distribution.sh:
        Added missing mysql-test files
      sql-bench/Makefile.am:
        Changes needed for RPM
      sql/mysqld.cc:
        Portability fix
      support-files/mysql.spec.sh:
        Added mysql-test to sql-bench
      6cfd66f0
  29. 14 Dec, 2000 1 commit
    • unknown's avatar
      fixed typo · 12394666
      unknown authored
      BitKeeper/etc/ignore:
        Added BitKeeper/tmp/gone to the ignore list
      12394666
  30. 13 Dec, 2000 3 commits
    • unknown's avatar
      mysql-test/Makefile.am · 1c0f675a
      unknown authored
          fixed typo
      scripts/make_binary_distribution.sh
          added .MRG and .frm files
      
      
      mysql-test/Makefile.am:
        fixed typo
      scripts/make_binary_distribution.sh:
        added .MRG and .frm files
      1c0f675a
    • unknown's avatar
      install_test_db.sh fixes for distribution · 855bddab
      unknown authored
      mysql-test-run.sh	fixes for distribution
      Makefile.am	Fixes for distribution
      
      
      mysql-test/Makefile.am:
        Fixes for distribution
      mysql-test/mysql-test-run.sh:
        fixes for distribution
      mysql-test/install_test_db.sh:
        fixes for distribution
      855bddab
    • unknown's avatar
      Makefile.am Removed README · 767fbc5e
      unknown authored
      mysql-test/Makefile.am:
        Removed README
      767fbc5e
  31. 07 Dec, 2000 2 commits
    • unknown's avatar
      mysql-test/Makefile.am · 8a61d511
      unknown authored
          removed extra files, adjusted for renames
      
      
      mysql-test/Makefile.am:
        removed extra files, adjusted for renames
      8a61d511
    • unknown's avatar
      fixed up mysql-test - will not push this yet, as more clean up/testing is to follow · 1a603185
      unknown authored
      BitKeeper/deleted/.del-README~b8e00a1b57b91f69:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-README~2bddc2706d0834d0:
        ***MISSING WEAVE***
      mysql-test/r/alt000001.result:
        mvdir
      mysql-test/r/ins000001.result:
        mvdir
      mysql-test/r/rpl000001.a.result:
        mvdir
      mysql-test/r/rpl000001.b.result:
        mvdir
      mysql-test/r/rpl000002.result:
        mvdir
      mysql-test/r/rpl000003.result:
        mvdir
      mysql-test/r/rpl000004.a.result:
        mvdir
      mysql-test/r/rpl000004.b.result:
        mvdir
      mysql-test/r/rpl000005.result:
        mvdir
      mysql-test/r/rpl000006.result:
        mvdir
      mysql-test/r/rpl000007.result:
        mvdir
      mysql-test/r/rpl000008.result:
        mvdir
      mysql-test/r/rpl000009.result:
        mvdir
      mysql-test/r/rpl000010.result:
        mvdir
      mysql-test/r/rpl000011.result:
        mvdir
      mysql-test/r/rpl000012.result:
        mvdir
      mysql-test/r/rpl000012.status.result:
        mvdir
      mysql-test/r/rpl000013.result:
        mvdir
      mysql-test/r/rpl000013.status.result:
        mvdir
      mysql-test/r/sel000001.result:
        mvdir
      mysql-test/r/sel000002.result:
        mvdir
      mysql-test/r/sel000003.result:
        mvdir
      mysql-test/r/sel000004.result:
        mvdir
      mysql-test/r/sel000005.result:
        mvdir
      mysql-test/r/sel000006.result:
        mvdir
      mysql-test/r/sel000007.result:
        mvdir
      mysql-test/r/sel000008.result:
        mvdir
      mysql-test/r/sel000009.result:
        mvdir
      mysql-test/r/sel000010.result:
        mvdir
      mysql-test/r/sel000011.result:
        mvdir
      mysql-test/r/sel000012.result:
        mvdir
      mysql-test/r/sel000013.result:
        mvdir
      mysql-test/r/sel000014.result:
        mvdir
      mysql-test/r/sel000015.result:
        mvdir
      mysql-test/r/sel000016.result:
        mvdir
      mysql-test/r/sel000017.result:
        mvdir
      mysql-test/r/sel000018.result:
        mvdir
      mysql-test/r/sel000019.result:
        mvdir
      mysql-test/r/sel000020.result:
        mvdir
      mysql-test/r/sel000021.result:
        mvdir
      mysql-test/r/sel000022.result:
        mvdir
      mysql-test/r/sel000023.result:
        mvdir
      mysql-test/r/sel000024.result:
        mvdir
      mysql-test/r/sel000025.result:
        mvdir
      mysql-test/r/sel000026.result:
        mvdir
      mysql-test/r/sel000027.result:
        mvdir
      mysql-test/r/sel000028.result:
        mvdir
      mysql-test/r/sel000029.result:
        mvdir
      mysql-test/r/sel000030.result:
        mvdir
      mysql-test/r/sel000100.result:
        mvdir
      mysql-test/r/shw000001.result:
        mvdir
      mysql-test/t/README:
        mvdir
      mysql-test/t/err000001.test:
        mvdir
      mysql-test/t/rpl000007-slave.opt:
        mvdir
      mysql-test/t/rpl000008-slave.opt:
        mvdir
      mysql-test/t/rpl000009-slave.opt:
        mvdir
      mysql-test/t/rpl000010-slave.opt:
        mvdir
      mysql-test/t/rpl000013-slave.opt:
        mvdir
      BitKeeper/deleted/.del-start-mysqld~9c8f21a7ab97793a:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-stop-mysqld~89a1194045f05d1c:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-translate-tests~3869c1fdf0a5ea1a:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-README~108667adaeabe3f5:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-README~c5aaceda4c2b1a8:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-select-key.master~e6b83af25df0ce5:
        ***MISSING WEAVE***
      mysql-test/std_data/words.dat:
        Rename: mysql-test/std_data/words -> mysql-test/std_data/words.dat
      BitKeeper/deleted/.del-simple-select.master~6f3eb98812926caf:
        ***MISSING WEAVE***
      Makefile.am:
        add mysql-test to distribution
      configure.in:
        added mysql-test
      libmysql/Makefile.am:
        include hash.h
      libmysql/Makefile.shared:
        add hash to libmysqlclient
      mysql-test/Makefile.am:
        mysql-test is now in source dist also
      mysql-test/chew_on_this/select.res:
        ***MISSING WEAVE***
      mysql-test/install_test_db:
        renamed file, moved to different directory, and fixed up to work on binary dist
      mysql-test/mysql-test-run:
        clean-up of test suite, make it work on binary dist
      mysql-test/t/alt000001.test:
        moved directory
      mysql-test/t/ins000001.test:
        moved directory
      mysql-test/t/rpl000001.test:
        moved dir
      mysql-test/t/rpl000002.test:
        moved dir
      mysql-test/t/rpl000003.test:
        moved dir
      mysql-test/t/rpl000004.test:
        moved dir
      mysql-test/t/rpl000005.test:
        moved dir
      mysql-test/t/rpl000006.test:
        moved dir
      mysql-test/t/rpl000007.test:
        moved dir
      mysql-test/t/rpl000008.test:
        moved dir
      mysql-test/t/rpl000009.test:
        moved dir
      mysql-test/t/rpl000010.test:
        moved dir
      mysql-test/t/rpl000011.test:
        moved dir
      mysql-test/t/rpl000012.test:
        moved dir
      mysql-test/t/rpl000013.test:
        moved dir
      mysql-test/t/sel000001.test:
        moved dir
      mysql-test/t/sel000002.test:
        moved dir
      BitKeeper/etc/ignore:
        Added libmysql_r/hash.c scripts/mysql-3.23.29-gamma-pc-linux-gnu-i686.tar.gz to the ignore list
      mysql-test/t/sel000003.test:
        moved dir
      mysql-test/t/sel000004.test:
        moved dir
      mysql-test/t/sel000005.test:
        moved dir
      mysql-test/t/sel000100.test:
        moved dir
      mysql-test/t/shw000001.test:
        moved dir
      scripts/make_binary_distribution.sh:
        fixes to include mysql-test
        added -debug option to exit after building temp dir before tar.gz 
        removed a bunch of SCCS files
      1a603185