An error occurred fetching the project authors.
  1. 12 Feb, 2006 1 commit
    • unknown's avatar
      This patch removes the remaining TYPE= code from MySQL. It cleans up a number... · 48d435b1
      unknown authored
      This patch removes the remaining TYPE= code from MySQL. It cleans up a number of tests where it was being called still (and failing). Also I cleaned up all of the extra scripts so that they now work. 
      
      
      BitKeeper/deleted/.del-raid.test~501e9e00b3c27a55:
        Delete: mysql-test/t/raid.test
      mysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test:
        Test change
      mysql-test/r/binlog_stm_mix_innodb_myisam.result:
        New results
      mysql-test/r/ctype_ujis.result:
        New results
      mysql-test/r/innodb_concurrent.result:
        New results.
      mysql-test/r/rpl_heap.result:
        New results
      mysql-test/r/warnings.result:
        New results
      mysql-test/t/ctype_ujis.test:
        Fixed ENGINE=, test should now actually function
      mysql-test/t/innodb_concurrent.test:
        Fixed test for engine
      mysql-test/t/rpl_heap.test:
        Fixed test for engine
      mysql-test/t/system_mysql_db_fix.test:
        Fixed setup.
      mysql-test/t/warnings.test:
        Removed deprecated tests
      scripts/fill_func_tables.sh:
        Fixed script
      scripts/mysql_convert_table_format.sh:
        Fixed script
      sql/ha_innodb.cc:
        Fixed comment
      sql/sql_yacc.yy:
        Removed deprecated syntax
      tests/fork_big.pl:
        Fixed scipt
      tests/fork_big2.pl:
        Fixed script
      tests/mail_to_db.pl:
        Fixed script
      tests/mysql_client_test.c:
        Fixed test
      48d435b1
  2. 15 Aug, 2005 1 commit
    • unknown's avatar
      Save and clear run context before executing a stored function or trigger and restore it afterwards. · a914b527
      unknown authored
      This allows us to use statement replication with functions and triggers
      The following things are fixed with this patch:
      - NOW() and automatic timestamps takes the value from the main event for functions and triggers (which allows these to replicate with statement level logging)
      - No side effects for triggers or functions with auto-increment values(), last_insert_id(), rand() or found_rows()
      - Triggers can't return result sets
      
      Fixes bugs:
      #12480: NOW() is not constant in a trigger
      #12481: Using NOW() in a stored function breaks statement based replication
      #12482: Triggers has side effects with auto_increment values
      #11587: trigger causes lost connection error
      
      
      mysql-test/r/trigger.result:
        Added test fpr big
      mysql-test/t/sp-error.test:
        Changed error message numbers
      mysql-test/t/trigger.test:
        Added test for trigger returning result (#11587)
      sql/item_func.cc:
        Store the first used seed value for RAND() value.
        (This makes rand() replicatable in functions and triggers)
        Save and clear run context before executing a stored function and restore it afterwards.
        This removes side effects of stored functions for RAND(), auto-increment values and NOW() and makes most stored function replicatable
      sql/share/errmsg.txt:
        Reuse error message also for triggers
      sql/sp_head.cc:
        If in function or trigger, don't change value of NOW()
        (This allows us to use statement replication with functions that directly or indirectly uses timestamps)
      sql/sql_class.cc:
        Added framework for storing and retrieving run context while exceuting triggers or stored functions.
      sql/sql_class.h:
        Added framework for storing and retrieving run context while exceuting triggers or stored functions.
      sql/sql_parse.cc:
        If in function or trigger, don't change value of NOW()
        (This allows us to use statement replication with functions that directly or indirectly uses timestamps)
      sql/sql_trigger.cc:
        Moved process_triggers function from sql_trigger.h
        Use reset/restore sub_statement_state while executing triggers to avoid side effects and make them replicatable
      sql/sql_trigger.h:
        Moved process_triggers function from sql_trigger.h
        Use reset/restore sub_statement_state while executing triggers to avoid side effects and make them replicatable
      sql/sql_yacc.yy:
        Give error message if trigger can return a result set (Bug #11587)
      tests/fork_big2.pl:
        Removed return from end of lines
      mysql-test/r/rpl_trigger.result:
        New BitKeeper file ``mysql-test/r/rpl_trigger.result''
      mysql-test/t/rpl_trigger.test:
        New BitKeeper file ``mysql-test/t/rpl_trigger.test''
      a914b527
  3. 25 Nov, 2003 1 commit
    • unknown's avatar
      fork_big2.pl: · 75fa6a6a
      unknown authored
        Added resize key cache test.
      
      
      tests/fork_big2.pl:
        Added resize key cache test.
      75fa6a6a
  4. 11 Dec, 2002 1 commit
    • unknown's avatar
      rename of net_pkg.cc to protocol.cc · f918dfc8
      unknown authored
      Class for sending data from server to client (Protocol)
      This handles both the old ( <= 4.0 ) protocol and then new binary protocol that is used for prepared statements.
      
      
      libmysql/libmysql.c:
        Jump over reserved bits in the binary protocol
      libmysqld/Makefile.am:
        rename of net_pkg.cc to protocol.cc
      mysql-test/r/case.result:
        Fixed previously wrong test
      mysql-test/r/cast.result:
        Fixed previously wrong test
      sql/Makefile.am:
        Rename of net_pkg.cc to protocol.cc
      sql/field.cc:
        Binary protocol
        Added key handling functions for new VARCHAR type
      sql/field.h:
        New protocol
      sql/ha_berkeley.cc:
        New protocol
      sql/ha_berkeley.h:
        New protocol
      sql/ha_innodb.cc:
        New protocol
      sql/ha_myisam.cc:
        New protocol
      sql/item.cc:
        New protocol
      sql/item.h:
        New protocol
      sql/item_func.cc:
        Removed old code from 3.23
      sql/item_func.h:
        Set cached_result_type as it was previosly used before set
      sql/item_subselect.cc:
        Standard make_field() is now good enough
      sql/item_subselect.h:
        Use default make_field()
      sql/item_sum.cc:
        Clean up Item_sum::make_field()
      sql/item_sum.h:
        Use standard make_field()
      sql/item_timefunc.h:
        return correct types for casts()
        Use standard make_field()
      sql/log_event.cc:
        New protocol
      sql/log_event.h:
        New protocol
      sql/mysql_priv.h:
        Move things to protocol.h
      sql/opt_range.cc:
        Indentation cleanups + small optimization
      sql/procedure.h:
        Use MYSQL_TYPE instead of FIELD_TYPE
      sql/protocol.cc:
        Class for sending data from server to client.
        This handles both the old ( <= 4.0 ) protocol and then new binary protocol that is used for prepared statements.
      sql/repl_failsafe.cc:
        New protocol
      sql/slave.cc:
        New protocol
      sql/sql_acl.cc:
        New protocol
      sql/sql_base.cc:
        Move send_fields() to protocol.cc
      sql/sql_class.cc:
        New protocol
      sql/sql_class.h:
        New protocol
      sql/sql_db.cc:
        New protocol
      sql/sql_error.cc:
        New protocol
      sql/sql_handler.cc:
        New protocol
      sql/sql_help.cc:
        New protocol
      sql/sql_parse.cc:
        Remove wrong assert (variable was not initalized at this point)
      sql/sql_prepare.cc:
        New protocol
      sql/sql_repl.cc:
        New protocol
      sql/sql_select.cc:
        New protocol
      sql/sql_show.cc:
        New protocol
      sql/sql_string.h:
        New functions used by the protocol functions
      sql/sql_table.cc:
        New protocol
      sql/structs.h:
        Make second_part ulong to prepare for ANSI sub-seconds
      sql/time.cc:
        New convert function needed by the new protocol functions
      f918dfc8
  5. 17 Oct, 2001 1 commit
    • unknown's avatar
      Don't do signal() on windows (Causes instability problems) · aeaf3fcf
      unknown authored
      Safer, a bit faster filesort.
      Code changes to avoid calls to current_thd() (faster code).
      Removed all compiler warnings from readline.
      
      
      BitKeeper/etc/ignore:
        Add my_global.h back.
      Docs/manual.texi:
        4.0.1 Changelog
      include/my_sys.h:
        Added strmake_root
      libmysql/libmysql.c:
        Don't do signal() on windows (Causes instability problems)
      mysys/my_alloc.c:
        Added strmake_root
      readline/bind.c:
        Remove warnings
      readline/complete.c:
        Remove warnings
      readline/display.c:
        Remove warnings
      readline/funmap.c:
        Remove warnings
      readline/histexpand.c:
        Remove warnings
      readline/histfile.c:
        Remove warnings
      readline/history.h:
        Remove warnings
      readline/histsearch.c:
        Remove warnings
      readline/isearch.c:
        Remove warnings
      readline/kill.c:
        Remove warnings
      readline/macro.c:
        Remove warnings
      readline/readline.c:
        Remove warnings
      readline/readline.h:
        Remove warnings
      readline/rltty.c:
        Remove warnings
      readline/search.c:
        Remove warnings
      readline/shell.c:
        Remove warnings
      readline/terminal.c:
        Remove warnings
      readline/tilde.c:
        Remove warnings
      readline/tilde.h:
        Remove warnings
      readline/undo.c:
        Remove warnings
      readline/util.c:
        Remove warnings
      readline/vi_mode.c:
        Remove warnings
      sql-bench/server-cfg.sh:
        Added use of truncate table
      sql-bench/test-insert.sh:
        Added use of truncate table
        Changed some tests to use keys instead of 'range'
      sql-bench/test-wisconsin.sh:
        Cleanup
      sql/field.cc:
        Add 'thd' to send() (To avoid usage of 'current_thd')
      sql/field.h:
        Add 'thd' to send() (To avoid usage of 'current_thd')
      sql/filesort.cc:
        Safer memory allocation;  Don't allocate pointer to buffers directly, but use an IO_CACHE instead.
        This will allow us to use more memory for keys and will also work better if the number of rows that is to be sorted is much larger than expected.
      sql/item.cc:
        Add 'thd' to send() (To avoid usage of 'current_thd')
      sql/item.h:
        Add 'thd' to send() (To avoid usage of 'current_thd')
      sql/item_func.h:
        Cleanup
      sql/opt_range.cc:
        Use mem_root instead of sql_alloc() to get more speed
      sql/sql_class.cc:
        Add 'thd' to send() (To avoid usage of 'current_thd')
      sql/sql_class.h:
        Added strmake()
      sql/sql_handler.cc:
        Add 'thd' to send() (To avoid usage of 'current_thd')
      sql/sql_lex.cc:
        Use mem_root instead of sql_alloc() to get more speed
      sql/sql_select.cc:
        Add 'thd' to send() (To avoid usage of 'current_thd')
      tests/fork2_test.pl:
        Fixed typos
      tests/fork_big.pl:
        Fixed typos
      tests/insert_and_repair.pl:
        Fixed typos
      tests/rename_test.pl:
        Fixed typos
      tests/test_delayed_insert.pl:
        Fixed typos
      aeaf3fcf
  6. 17 Jul, 2001 1 commit
    • unknown's avatar
      Removed wrong warning from thr_lock · 9302266b
      unknown authored
      Fixed problem with UPDATE and BDB tables
      Fixed problem with GRANT FILE privilege on database level
      mysqld --warnings works now
      Fixed problem with SHOW OPEN TABLES when not using BDB
      Added some tests for ALTER TABLE to the test scripts
      
      
      Docs/manual.texi:
        Added link to copyleft license.
        Updated Changelog
      configure.in:
        Fixed typo
      mysys/thr_lock.c:
        Removed wrong warning
      sql/ha_berkeley.cc:
        Fixed problem with UPDATE
      sql/sql_acl.cc:
        Fixed problem with GRANT FILE privilege on database level
      sql/sql_parse.cc:
        Fixed that you don't get aborted connection error if you are not using --warning
      sql/sql_show.cc:
        Fixed problem with SHOW OPEN TABLES when not using BDB
      tests/fork2_test.pl:
        Added test of ALTER TABLE
      tests/fork_big.pl:
        Added test of ALTER TABLE
      9302266b
  7. 03 Jun, 2001 1 commit
    • unknown's avatar
      Added ABS() to make tests more portable. · cf42a955
      unknown authored
      New postgresql crash-me file.
      Increased blob size in benchmarks from 65K to 1M.
      
      
      mysql-test/t/select.test:
        Added ABS() to make tests more portable
      mysys/tree.c:
        Added missing call to tree->free  (MySQL didn't use this)
      sql-bench/Comments/postgres.benchmark:
        Updated documentation
      sql-bench/bench-init.pl.sh:
        Updated version number (changed blob size)
      sql-bench/limits/pg.cfg:
        New postgres results
      sql-bench/server-cfg.sh:
        Updated to PostgreSQL 7.1.1
      sql-bench/test-connect.sh:
        Changed select_big -> select_big_str
      tests/fork_big.pl:
        Added count(distinct) test
      cf42a955
  8. 13 Apr, 2001 2 commits
    • unknown's avatar
      Changes to get mysqld-max to compile · 3b78ab65
      unknown authored
      BUILD/SETUP.sh:
        Changed to use -ffixed-ebp with -fomit-frame-pointer
      BUILD/compile-pentium:
        Changed to use reckless flags as defaults as this appears to work
        good, even with stack-traces.
      Build-tools/Do-all-build-steps:
        Innobase -> Innodb
      Docs/manual.texi:
        Added information about -ffixed-ebp
      scripts/safe_mysqld.sh:
        Added option --mysqld-version
        Use mysqld-max binary as default if installed and --mysqld or --mysqld-version
        is not used
      support-files/mysql-max.spec.sh:
        Fixed bugs
      support-files/mysql.spec.sh:
        Added Max package
      tests/fork_big.pl:
        Added --user and --password
      3b78ab65
    • unknown's avatar
      Changed Innobase to Innodb · 3e6215d9
      unknown authored
      Deleted a lot of old benchmark runs
      
      
      BitKeeper/deleted/.del-ATIS-mysql-Linux_2.2.14_i686_xeon~3e820c28bf4af63a:
        Delete: sql-bench/Results/ATIS-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-RUN-mysql-Linux_2.2.14_i686_xeon~17854e751e1d9d1d:
        Delete: sql-bench/Results/RUN-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-alter-table-mysql-Linux_2.2.14_i686_xeon~64cc4b874cd6fabf:
        Delete: sql-bench/Results/alter-table-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-big-tables-mysql-Linux_2.2.14_i686_xeon~290c2c3de9d8e6b:
        Delete: sql-bench/Results/big-tables-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-connect-mysql-Linux_2.2.14_i686_xeon~ea19dc3ec55b3618:
        Delete: sql-bench/Results/connect-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-create-mysql-Linux_2.2.14_i686_xeon~50d15991293030ef:
        Delete: sql-bench/Results/create-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-insert-mysql-Linux_2.2.14_i686_xeon~c683ee4b9d214298:
        Delete: sql-bench/Results/insert-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-select-mysql-Linux_2.2.14_i686_xeon~ead3f11b46ac626f:
        Delete: sql-bench/Results/select-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-wisconsin-mysql-Linux_2.2.14_i686_xeon~7525b23938631801:
        Delete: sql-bench/Results/wisconsin-mysql-Linux_2.2.14_i686_xeon
      BitKeeper/deleted/.del-ATIS-mysql-Linux_2.2.14_my_SMP_i686~d275df58a04737c8:
        Delete: sql-bench/Results/ATIS-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-RUN-mysql-Linux_2.2.14_my_SMP_i686~d4766c7f8e70d7a2:
        Delete: sql-bench/Results/RUN-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-alter-table-mysql-Linux_2.2.14_my_SMP_i686~155a83b53c0e9d6:
        Delete: sql-bench/Results/alter-table-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-big-tables-mysql-Linux_2.2.14_my_SMP_i686~f1127add9307098b:
        Delete: sql-bench/Results/big-tables-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-connect-mysql-Linux_2.2.14_my_SMP_i686~45d2cdf9bea9cc37:
        Delete: sql-bench/Results/connect-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-create-mysql-Linux_2.2.14_my_SMP_i686~d46860c29c5d51ee:
        Delete: sql-bench/Results/create-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-insert-mysql-Linux_2.2.14_my_SMP_i686~e1771e0a164bc310:
        Delete: sql-bench/Results/insert-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-select-mysql-Linux_2.2.14_my_SMP_i686~ee2a063d66a183d:
        Delete: sql-bench/Results/select-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-wisconsin-mysql-Linux_2.2.14_my_SMP_i686~b7552710d35202b6:
        Delete: sql-bench/Results/wisconsin-mysql-Linux_2.2.14_my_SMP_i686
      BitKeeper/deleted/.del-ATIS-mysql-3.21-Linux_2.2.1_i686~660fb76ed6ccfb6f:
        Delete: sql-bench/Results/ATIS-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-RUN-mysql-3.21-Linux_2.2.1_i686~f6fdd64859e11de9:
        Delete: sql-bench/Results/RUN-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-alter-table-mysql-3.21-Linux_2.2.1_i686~f6f7ccd7b3c35f97:
        Delete: sql-bench/Results/alter-table-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-big-tables-mysql-3.21-Linux_2.2.1_i686~baa649caba113497:
        Delete: sql-bench/Results/big-tables-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-connect-mysql-3.21-Linux_2.2.1_i686~c0c26d4320182d85:
        Delete: sql-bench/Results/connect-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-create-mysql-3.21-Linux_2.2.1_i686~51581b24f45e0f5c:
        Delete: sql-bench/Results/create-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-insert-mysql-3.21-Linux_2.2.1_i686~fd082017c7c57a6:
        Delete: sql-bench/Results/insert-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-select-mysql-3.21-Linux_2.2.1_i686~ed3687e713ff0571:
        Delete: sql-bench/Results/select-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-wisconsin-mysql-3.21-Linux_2.2.1_i686~8147dc16a1dc6c47:
        Delete: sql-bench/Results/wisconsin-mysql-3.21-Linux_2.2.1_i686
      BitKeeper/deleted/.del-ATIS-mysql_3.21-Linux_2.0.35_i686~c25425e045ca8dfc:
        Delete: sql-bench/Results/ATIS-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-RUN-mysql_3.21-Linux_2.0.35_i686~ea8672d8473435:
        Delete: sql-bench/Results/RUN-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-alter-table-mysql_3.21-Linux_2.0.35_i686~762639f2560976bd:
        Delete: sql-bench/Results/alter-table-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-big-tables-mysql_3.21-Linux_2.0.35_i686~190e827e569c99a4:
        Delete: sql-bench/Results/big-tables-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-connect-mysql_3.21-Linux_2.0.35_i686~650abd213e6828c6:
        Delete: sql-bench/Results/connect-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-create-mysql_3.21-Linux_2.0.35_i686~df1b037d17b33587:
        Delete: sql-bench/Results/create-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-insert-mysql_3.21-Linux_2.0.35_i686~60c0965dff31db07:
        Delete: sql-bench/Results/insert-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-select-mysql_3.21-Linux_2.0.35_i686~5fadbac5f98696a:
        Delete: sql-bench/Results/select-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-wisconsin-mysql_3.21-Linux_2.0.35_i686~31703d40ea6b4f66:
        Delete: sql-bench/Results/wisconsin-mysql_3.21-Linux_2.0.35_i686
      BitKeeper/deleted/.del-ATIS-mysql-Linux_2.2.10_i686~3fa4d167cceff7e8:
        Delete: sql-bench/Results/ATIS-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-RUN-mysql-Linux_2.2.10_i686~712f52be5d195406:
        Delete: sql-bench/Results/RUN-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-alter-table-mysql-Linux_2.2.10_i686~93b78a85b720a186:
        Delete: sql-bench/Results/alter-table-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-big-tables-mysql-Linux_2.2.10_i686~99daa1c5370d077d:
        Delete: sql-bench/Results/big-tables-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-connect-mysql-Linux_2.2.10_i686~c92505d77e19d5ec:
        Delete: sql-bench/Results/connect-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-create-mysql-Linux_2.2.10_i686~9e7822f66df6aa76:
        Delete: sql-bench/Results/create-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-insert-mysql-Linux_2.2.10_i686~763edf9aec633f51:
        Delete: sql-bench/Results/insert-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-select-mysql-Linux_2.2.10_i686~a2e264d777b787d:
        Delete: sql-bench/Results/select-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-wisconsin-mysql-Linux_2.2.10_i686~301a82b12a84922b:
        Delete: sql-bench/Results/wisconsin-mysql-Linux_2.2.10_i686
      BitKeeper/deleted/.del-ATIS-mysql-win98~cd0705815d3af451:
        Delete: sql-bench/Results-win32/ATIS-mysql-win98
      BitKeeper/deleted/.del-RUN-mysql-win98~7f09e396772a8665:
        Delete: sql-bench/Results-win32/RUN-mysql-win98
      BitKeeper/deleted/.del-alter-table-mysql-win98~e8743982f790462:
        Delete: sql-bench/Results-win32/alter-table-mysql-win98
      BitKeeper/deleted/.del-big-tables-mysql-win98~99a1882effebbdf2:
        Delete: sql-bench/Results-win32/big-tables-mysql-win98
      BitKeeper/deleted/.del-connect-mysql-win98~2a11d5e3dfc0bc67:
        Delete: sql-bench/Results-win32/connect-mysql-win98
      BitKeeper/deleted/.del-create-mysql-win98~f66c2cb2909c4792:
        Delete: sql-bench/Results-win32/create-mysql-win98
      BitKeeper/deleted/.del-insert-mysql-win98~6d6cafc85a6c837:
        Delete: sql-bench/Results-win32/insert-mysql-win98
      BitKeeper/deleted/.del-select-mysql-win98~f370fac2d66a9faf:
        Delete: sql-bench/Results-win32/select-mysql-win98
      BitKeeper/deleted/.del-wisconsin-mysql-win98~8b3da9c5c5d2365b:
        Delete: sql-bench/Results-win32/wisconsin-mysql-win98
      BUILD/compile-pentium-debug-max:
        Innobase -> Innodb
      BUILD/compile-pentium-max:
        Innobase -> Innodb
      Docs/manual.texi:
        Innobase -> Innodb
      acinclude.m4:
        Innobase -> Innodb
      bdb/Makefile.in:
        Fix that make clean works
      configure.in:
        Innobase -> Innodb
      mysql-test/include/have_innodb.inc:
        Innobase -> Innodb
      mysql-test/install_test_db.sh:
        Innobase -> Innodb
      mysql-test/mysql-test-run.sh:
        Innobase -> Innodb
      mysql-test/r/have_innodb.require:
        Innobase -> Innodb
      mysql-test/r/innodb.result:
        Innobase -> Innodb
      mysql-test/t/innodb.test:
        Innobase -> Innodb
      scripts/mysql_install_db.sh:
        Innobase -> Innodb
      scripts/mysqlhotcopy.sh:
        Remove some warnings
      sql-bench/server-cfg.sh:
        Innobase -> Innodb
      sql/Makefile.am:
        Innobase -> Innodb
      sql/ha_innobase.cc:
        Innobase -> Innodb
      sql/ha_innobase.h:
        Innobase -> Innodb
      sql/handler.cc:
        Innobase -> Innodb
      sql/mysqld.cc:
        Innobase -> Innodb
      sql/sql_delete.cc:
        Innobase -> Innodb
      support-files/my-huge.cnf.sh:
        Innobase -> Innodb
      support-files/my-large.cnf.sh:
        Innobase -> Innodb
      support-files/my-medium.cnf.sh:
        Innobase -> Innodb
      support-files/my-small.cnf.sh:
        Innobase -> Innodb
      support-files/mysql-max.spec.sh:
        Innobase -> Innodb
      support-files/mysql.spec.sh:
        Innobase -> Innodb
      tests/fork_big.pl:
        Added checking of whole database
      3e6215d9
  9. 01 Apr, 2001 2 commits
    • unknown's avatar
      Added INNODB as a synonym for INNOBASE · f9323280
      unknown authored
      Fixed bug where FLUSH TABLES could make indexes unavailable for the next query
      Added --skip-safemalloc
      
      
      Docs/manual.texi:
        Added some information about --with-debug=full
      sql/lex.h:
        Added INNODB as a synonym for INNOBASE
      sql/mysqld.cc:
        Added myisam variables.
        Moved shutdown message to after databases has been closed.
        Removed old define for MacOS X.
        Added --skip-safemalloc.
        Added missing \ to strings
      sql/sql_base.cc:
        Fixed bug where FLUSH TABLES could make indexes unavailable for
        the next query.
      support-files/my-huge.cnf.sh:
        Added / to end of innobase directory options
      support-files/my-large.cnf.sh:
        Added / to end of innobase directory options
      support-files/my-medium.cnf.sh:
        Added / to end of innobase directory options
      support-files/my-small.cnf.sh:
        Added / to end of innobase directory options
      tests/fork_big.pl:
        Made test harder
      f9323280
    • unknown's avatar
      Fixed bug in ALTER TABLE · 1776fbac
      unknown authored
      Removed _mi_rkey() function
      New fork_big.pl multi-thread test
      
      
      BitKeeper/deleted/.del-fork3_test.pl~c4a7bffb4f8e813c:
        Delete: tests/fork3_test.pl
      BitKeeper/deleted/.del-fork_test.pl~3d3535329ed8cd5e:
        Delete: tests/fork_test.pl
      Docs/manual.texi:
        Changelog.
        Updated support information
      client/mysqladmin.c:
        Removed not used --timeout option
      configure.in:
        Update version
      myisam/mi_extra.c:
        Fixed bug in ALTER TABLE
      myisam/mi_rkey.c:
        Removed _mi_rkey() function
      myisam/myisamdef.h:
        Removed _mi_rkey() function
      myisammrg/myrg_rkey.c:
        Removed _mi_rkey() function
      myisammrg/myrg_rnext.c:
        Removed _mi_rkey() function
      mysql-test/t/alter_table.test:
        Added test case for ALTER TABLE bug
      sql/derror.cc:
        Moved shutdown message to clean_up
      sql/mysql_priv.h:
        Moved shutdown message to clean_up
      sql/sql_class.cc:
        Fixed bug in MySQL compiled with transactions but using --skip-"table-handler"
      sql/sql_show.cc:
        Use time_after_lock for time of query when debugging
      sql/sql_test.cc:
        Check memory overruns when using 'mysqladmin debug'
      strings/ctype-tis620.c:
        F
      1776fbac