An error occurred fetching the project authors.
  1. 03 Apr, 2002 2 commits
    • unknown's avatar
      Merge and two bug fixes in my_getopt.c · c6dd4031
      unknown authored
      client/mysql.cc:
        merge
      client/mysqldump.c:
        merge
      myisam/myisamchk.c:
        merge
      mysys/my_getopt.c:
        Fixed a bug with short options when type was GET_BOOL.
        Fixed a bug in my_print_help() function.
      c6dd4031
    • unknown's avatar
      merge · 5b8b8fce
      unknown authored
      5b8b8fce
  2. 02 Apr, 2002 1 commit
    • unknown's avatar
      Changed mysql, mysqladmin, mysqlshow, mysqldump, mysqlimport, · d8285236
      unknown authored
      mysqlcheck and myisamchk to use new my_getopt struct.
      
      
      client/client_priv.h:
        Changes for my_getopt
      client/mysql.cc:
        Uses new my_getopt
      client/mysqladmin.c:
        Uses new my_getopt
      client/mysqlcheck.c:
        Uses new my_getopt
      client/mysqldump.c:
        Uses new my_getopt
      client/mysqlimport.c:
        Uses new my_getopt
      client/mysqlshow.c:
        Uses new my_getopt
      include/my_getopt.h:
        Added GET_BOOL type
      include/sslopt-case.h:
        This is shouldn't be needed anymore.
      include/sslopt-longopts.h:
        Uses new my_getopt
      myisam/myisamchk.c:
        Uses new my_getopt
      mysys/my_getopt.c:
        Some bug fixes and small feature adds to my_getopt
      sql/mysqld.cc:
        mysqld.cc will be changed next. sslopt-* had to be removed
        temporarily.
      d8285236
  3. 13 Mar, 2002 1 commit
    • unknown's avatar
      mi_check flags cleanup · c1025105
      unknown authored
      CHECK/REPAIR syntax cleanup
      REPAIR ... USE_FRM syntax
      
      
      include/myisam.h:
        mi_check flags cleanup
      myisam/mi_check.c:
        mi_check flags cleanup
      myisam/myisamchk.c:
        mi_check flags cleanup
      mysql-test/r/check.result:
        CHECK/REPAIR syntax cleanup
      mysql-test/r/show_check.result:
        CHECK/REPAIR syntax cleanup
      mysql-test/t/check.test:
        CHECK/REPAIR syntax cleanup
      mysql-test/t/show_check.test:
        CHECK/REPAIR syntax cleanup
      sql/ha_myisam.cc:
        mi_check flags cleanup
      sql/handler.h:
        mi_check flags cleanup
      sql/lex.h:
        REPAIR ... USE_FRM syntax
      sql/slave.cc:
        mi_check flags cleanup
      c1025105
  4. 06 Mar, 2002 1 commit
    • unknown's avatar
      Portability fixes · 39d05031
      unknown authored
      Fix bug when using option groups
      
      
      libmysql/libmysql.c:
        Fix bug when using option groups
      myisam/myisamchk.c:
        Portability fix
      mysys/my_getopt.c:
        Portability fix
      39d05031
  5. 11 Feb, 2002 1 commit
    • unknown's avatar
      Cleanup · 1847411a
      unknown authored
      Docs/manual.texi:
        Update information about IS NULL.
      myisam/myisamchk.c:
        Portability fix
      sql/mysqld.cc:
        Changed log_long_queries -> log_slow_queries
      1847411a
  6. 08 Feb, 2002 1 commit
    • unknown's avatar
      Fix some bugs introduced with the new my_getopt · bc1fc0a0
      unknown authored
      Added counting of rollback's and commits
      Fixed bug in 'SELECT 0 LIMIT 0'
      Fixed bug in 'SELECT SQL_CALC_FOUND_ROWS'
      
      
      Docs/manual.texi:
        Changelog
      configure.in:
        Cleanup
      myisam/myisamchk.c:
        Fix some bugs introduced with the new my_getopt
      mysql-test/r/limit.result:
        Test for bugfix
      mysql-test/r/rpl000001.result:
        fix wrong result
      mysql-test/r/select.result:
        Fix things after fixing ignore index()
      mysql-test/r/select_found.result:
        Test of bug in SQL_CALC_FOUND_ROWS
      mysql-test/t/limit.test:
        Test bug in LIMIT 0
      mysql-test/t/rpl000001.test:
        fix wrong result
      mysql-test/t/select_found.test:
        Test of bug in SQL_CALC_FOUND_ROWS
      sql/handler.cc:
        Added counting of rollback's and commits
      sql/mysql_priv.h:
        Added counting of rollback's and commits
      sql/mysqld.cc:
        Added counting of rollback's and commits
      sql/sql_select.cc:
        Fixed bug in 'SELECT 0 LIMIT 0'
        Fixed bug in 'SELECT SQL_CALC_FOUND_ROWS'
      bc1fc0a0
  7. 06 Feb, 2002 1 commit
    • unknown's avatar
      Bug fixes and new functionality added in my_getopt and myisamchk · 78eff8b0
      unknown authored
      include/my_getopt.h:
        Removed a member from my_getopt struct.
      myisam/myisamchk.c:
        pdated myisamchk. More features in use from my_getopt
      mysys/my_getopt.c:
        Fixed a bug in handle_options(). Short options were not tested
        whether existed when given from the command line. Fixed a bug
        in getopt_ll, got division by zero in some cases. Added new functions
        my_print_help() and my_print_variables() to be used by mysql server
        and most clients.
      78eff8b0
  8. 31 Jan, 2002 1 commit
    • unknown's avatar
      Fixes for new getopt · 6c1eb92e
      unknown authored
      Bug fix when using --no-deaults
      Sets ref_length to right value (faster rnd_pos() handling in InnoDB).
      Fixed problem with multi-table-delete and InnoDB
      Fixed problem with truncate table, which required a COMMIT before.
      Fixed multi-table-delete bug with InnoDB.
      Remove not used index from EXPLAIN
      
      
      Docs/manual.texi:
        ChangeLog
      include/my_getopt.h:
        Removed compiler warnings
      myisam/myisamchk.c:
        Fixes for new getopt
      mysql-test/r/explain.result:
        Updated test results
      mysql-test/r/innodb.result:
        Updated test results
      mysql-test/r/join.result:
        Updated test results
      mysql-test/t/innodb.test:
        Updated test results
      mysys/default.c:
        Bug fix when using --no-defaults
      mysys/my_getopt.c:
        Fixes for new getopt
      sql/ha_innodb.cc:
        Sets ref_length to right value (faster rnd_pos() handling).
        Fixed problem with multi-table-delete.
        Fixed problem with truncate table, which required a COMMIT before.
      sql/opt_sum.cc:
        Remove not used index from EXPLAIN
      sql/sql_cache.cc:
        Fixed core dump bug when not using query cache
      sql/sql_select.cc:
        Remove not used index from EXPLAIN
      6c1eb92e
  9. 30 Jan, 2002 1 commit
    • unknown's avatar
      New functionality to my_getopt. myisamchk now uses my_getopt · 11b1979b
      unknown authored
      only.
      
      
      include/my_getopt.h:
        Added u_max_value as for user definable maximum value for
        a variable in my_getopt.
      myisam/myisamchk.c:
        myisamchk now uses my_getopt struct for variables also.
        Variables can be set with -O var=val, --set-variable=var=val and
        --variable=val now.
      mysys/getvar.c:
        my_set_changeable_var moved to my_getopt.c
      mysys/my_getopt.c:
        Added special prefix --maximum[-variable-name=...] for user
        definable maximum values for variables, among other things.
      11b1979b
  10. 25 Jan, 2002 1 commit
    • unknown's avatar
      Added my_getopt struct and modified myisamchk to the bk tree. · 06b282aa
      unknown authored
      include/Makefile.am:
        Added my_getopt.h
      myisam/myisamchk.c:
        myisamcheck is using my_getopt struct now. Old code left:
        changeable_var[], will be changed later.
      mysys/Makefile.am:
        added my_getopt.c
      mysys/getvar.c:
        Added my_set_changeable_var. This is not being used yet, and
        is mostly a copy of set_changeable_var still.
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      06b282aa
  11. 06 Dec, 2001 1 commit
    • unknown's avatar
      Update copyright · 2306379e
      unknown authored
      Fixed memory leak on shutdown (Affects the embedded version & MyODBC)
      
      
      client/client_priv.h:
        Update copyright
      client/completion_hash.cc:
        Update copyright
      client/completion_hash.h:
        Update copyright
      client/connect_test.c:
        Update copyright
      client/errmsg.c:
        Update copyright
      client/get_password.c:
        Update copyright
      client/insert_test.c:
        Update copyright
      client/list_test.c:
        Update copyright
      client/my_readline.h:
        Update copyright
      client/mysql.cc:
        Update copyright
      client/mysqladmin.c:
        Update copyright
      client/mysqlbinlog.cc:
        Update copyright
      client/mysqlcheck.c:
        Update copyright
      client/mysqldump.c:
        Update copyright
      client/mysqlimport.c:
        Update copyright
      client/mysqlmanager-pwgen.c:
        Update copyright
      client/mysqlmanagerc.c:
        Update copyright
      client/mysqlshow.c:
        Update copyright
      client/mysqltest.c:
        Update copyright
      client/password.c:
        Update copyright
      client/readline.cc:
        Update copyright
      client/select_test.c:
        Update copyright
      client/showdb_test.c:
        Update copyright
      client/sql_string.cc:
        Update copyright
      client/sql_string.h:
        Update copyright
      client/ssl_test.c:
        Update copyright
      client/thimble.cc:
        Update copyright
      client/thread_test.c:
        Update copyright
      div/deadlock_test.c:
        Update copyright
      extra/comp_err.c:
        Update copyright
      extra/my_print_defaults.c:
        Update copyright
      extra/perror.c:
        Update copyright
      extra/replace.c:
        Update copyright
      extra/resolve_stack_dump.c:
        Update copyright
      extra/resolveip.c:
        Update copyright
      fs/database.c:
        Update copyright
      fs/libmysqlfs.c:
        Update copyright
      fs/mysqlcorbafs.c:
        Update copyright
      fs/mysqlcorbafs.h:
        Update copyright
      fs/mysqlcorbafs_test.c:
        Update copyright
      heap/_check.c:
        Update copyright
      heap/_rectest.c:
        Update copyright
      heap/heapdef.h:
        Update copyright
      heap/hp_block.c:
        Update copyright
      heap/hp_clear.c:
        Update copyright
      heap/hp_close.c:
        Update copyright
      heap/hp_create.c:
        Update copyright
      heap/hp_delete.c:
        Update copyright
      heap/hp_extra.c:
        Update copyright
      heap/hp_hash.c:
        Update copyright
      heap/hp_info.c:
        Update copyright
      heap/hp_open.c:
        Update copyright
      heap/hp_panic.c:
        Update copyright
      heap/hp_rename.c:
        Update copyright
      heap/hp_rfirst.c:
        Update copyright
      heap/hp_rkey.c:
        Update copyright
      heap/hp_rlast.c:
        Update copyright
      heap/hp_rnext.c:
        Update copyright
      heap/hp_rprev.c:
        Update copyright
      heap/hp_rrnd.c:
        Update copyright
      heap/hp_rsame.c:
        Update copyright
      heap/hp_scan.c:
        Update copyright
      heap/hp_static.c:
        Update copyright
      heap/hp_test1.c:
        Update copyright
      heap/hp_test2.c:
        Update copyright
      heap/hp_update.c:
        Update copyright
      heap/hp_write.c:
        Update copyright
      include/config-win.h:
        Update copyright
      include/dbug.h:
        Update copyright
      include/errmsg.h:
        Update copyright
      include/ft_global.h:
        Update copyright
      include/getopt.h:
        Update copyright
      include/hash.h:
        Update copyright
      include/heap.h:
        Update copyright
      include/m_ctype.h:
        Update copyright
      include/m_string.h:
        Update copyright
      include/md5.h:
        Update copyright
      include/merge.h:
        Update copyright
      include/my_alarm.h:
        Update copyright
      include/my_base.h:
        Update copyright
      include/my_bitmap.h:
        Update copyright
      include/my_dir.h:
        Update copyright
      include/my_global.h:
        Update copyright
      include/my_list.h:
        Update copyright
      include/my_net.h:
        Update copyright
      include/my_no_pthread.h:
        Update copyright
      include/my_nosys.h:
        Update copyright
      include/my_pthread.h:
        Update copyright
      include/my_sys.h:
        Update copyright
      include/my_tree.h:
        Update copyright
      include/myisam.h:
        Update copyright
      include/myisammrg.h:
        Update copyright
      include/myisampack.h:
        Update copyright
      include/mysql.h:
        Update copyright
      include/mysql_com.h:
        Update copyright
      include/mysql_embed.h:
        Update copyright
      include/mysqld_error.h:
        Update copyright
      include/mysys_err.h:
        Update copyright
      include/nisam.h:
        Update copyright
      include/queues.h:
        Update copyright
      include/raid.h:
        Update copyright
      include/sslopt-case.h:
        Update copyright
      include/sslopt-longopts.h:
        Update copyright
      include/sslopt-usage.h:
        Update copyright
      include/sslopt-vars.h:
        Update copyright
      include/t_ctype.h:
        Update copyright
      include/thr_alarm.h:
        Update copyright
      include/thr_lock.h:
        Update copyright
      include/violite.h:
        Update copyright
      isam/_cache.c:
        Update copyright
      isam/_dbug.c:
        Update copyright
      isam/_key.c:
        Update copyright
      isam/_locking.c:
        Update copyright
      isam/_packrec.c:
        Update copyright
      isam/_page.c:
        Update copyright
      isam/_search.c:
        Update copyright
      isam/_statrec.c:
        Update copyright
      isam/changed.c:
        Update copyright
      isam/close.c:
        Update copyright
      isam/create.c:
        Update copyright
      isam/delete.c:
        Update copyright
      isam/extra.c:
        Update copyright
      isam/info.c:
        Update copyright
      isam/isamchk.c:
        Update copyright
      isam/isamdef.h:
        Update copyright
      isam/log.c:
        Update copyright
      isam/open.c:
        Update copyright
      isam/panic.c:
        Update copyright
      isam/range.c:
        Update copyright
      isam/rfirst.c:
        Update copyright
      isam/rkey.c:
        Update copyright
      isam/rlast.c:
        Update copyright
      isam/rnext.c:
        Update copyright
      isam/rprev.c:
        Update copyright
      isam/rrnd.c:
        Update copyright
      isam/rsame.c:
        Update copyright
      isam/rsamepos.c:
        Update copyright
      isam/sort.c:
        Update copyright
      isam/static.c:
        Update copyright
      isam/test1.c:
        Update copyright
      isam/test2.c:
        Update copyright
      isam/test3.c:
        Update copyright
      isam/update.c:
        Update copyright
      isam/write.c:
        Update copyright
      libmysql/conf_to_src.c:
        Update copyright
      libmysql/dll.c:
        Update copyright
      libmysql/errmsg.c:
        Update copyright
      libmysql/get_password.c:
        Update copyright
      libmysql/libmysql.c:
        Update copyright
      libmysql/manager.c:
        Update copyright
      libmysql/net.c:
        Update copyright
      libmysql/password.c:
        Update copyright
      libmysqld/lib_sql.cc:
        Update copyright
      libmysqld/lib_vio.c:
        Update copyright
      libmysqld/libmysqld.c:
        Update copyright
      merge/mrg_close.c:
        Update copyright
      merge/mrg_create.c:
        Update copyright
      merge/mrg_def.h:
        Update copyright
      merge/mrg_delete.c:
        Update copyright
      merge/mrg_extra.c:
        Update copyright
      merge/mrg_info.c:
        Update copyright
      merge/mrg_locking.c:
        Update copyright
      merge/mrg_open.c:
        Update copyright
      merge/mrg_panic.c:
        Update copyright
      merge/mrg_rrnd.c:
        Update copyright
      merge/mrg_rsame.c:
        Update copyright
      merge/mrg_static.c:
        Update copyright
      merge/mrg_update.c:
        Update copyright
      myisam/ft_boolean_search.c:
        Update copyright
      myisam/ft_dump.c:
        Update copyright
      myisam/ft_eval.h:
        Update copyright
      myisam/ft_static.c:
        Update copyright
      myisam/ft_stem.c:
        Update copyright
      myisam/ft_stopwords.c:
        Update copyright
      myisam/ft_test1.h:
        Update copyright
      myisam/mi_cache.c:
        Update copyright
      myisam/mi_changed.c:
        Update copyright
      myisam/mi_check.c:
        Update copyright
      myisam/mi_checksum.c:
        Update copyright
      myisam/mi_close.c:
        Update copyright
      myisam/mi_create.c:
        Update copyright
      myisam/mi_dbug.c:
        Update copyright
      myisam/mi_delete.c:
        Update copyright
      myisam/mi_delete_all.c:
        Update copyright
      myisam/mi_delete_table.c:
        Update copyright
      myisam/mi_dynrec.c:
        Update copyright
      myisam/mi_extra.c:
        Update copyright
      myisam/mi_info.c:
        Update copyright
      myisam/mi_key.c:
        Update copyright
      myisam/mi_locking.c:
        Update copyright
      myisam/mi_log.c:
        Update copyright
      myisam/mi_open.c:
        Update copyright
      myisam/mi_packrec.c:
        Update copyright
      myisam/mi_page.c:
        Update copyright
      myisam/mi_panic.c:
        Update copyright
      myisam/mi_range.c:
        Update copyright
      myisam/mi_rename.c:
        Update copyright
      myisam/mi_rfirst.c:
        Update copyright
      myisam/mi_rlast.c:
        Update copyright
      myisam/mi_rnext_same.c:
        Update copyright
      myisam/mi_rrnd.c:
        Update copyright
      myisam/mi_rsame.c:
        Update copyright
      myisam/mi_rsamepos.c:
        Update copyright
      myisam/mi_scan.c:
        Update copyright
      myisam/mi_search.c:
        Update copyright
      myisam/mi_static.c:
        Update copyright
      myisam/mi_statrec.c:
        Update copyright
      myisam/mi_test1.c:
        Update copyright
      myisam/mi_test2.c:
        Update copyright
      myisam/mi_test3.c:
        Update copyright
      myisam/mi_unique.c:
        Update copyright
      myisam/mi_update.c:
        Update copyright
      myisam/mi_write.c:
        Update copyright
      myisam/myisamchk.c:
        Update copyright
      myisam/myisampack.c:
        Update copyright
      myisammrg/myrg_close.c:
        Update copyright
      myisammrg/myrg_create.c:
        Update copyright
      myisammrg/myrg_def.h:
        Update copyright
      myisammrg/myrg_delete.c:
        Update copyright
      myisammrg/myrg_locking.c:
        Update copyright
      myisammrg/myrg_open.c:
        Update copyright
      myisammrg/myrg_panic.c:
        Update copyright
      myisammrg/myrg_rsame.c:
        Update copyright
      myisammrg/myrg_static.c:
        Update copyright
      myisammrg/myrg_update.c:
        Update copyright
      myisammrg/myrg_write.c:
        Update copyright
      mysql-test/r/gcc296.result:
        Update of benchmark results
      mysql-test/r/innodb.result:
        Update of benchmark results
      mysql-test/r/join_outer.result:
        Update of benchmark results
      mysql-test/r/myisam.result:
        Update of benchmark results
      mysys/array.c:
        Update copyright
      mysys/charset.c:
        Fix for restart of character sets
      mysys/checksum.c:
        Update copyright
      mysys/default.c:
        Update copyright
      mysys/errors.c:
        Update copyright
      mysys/getopt.c:
        Cleanup
      mysys/getvar.c:
        Update copyright
      mysys/hash.c:
        Update copyright
      mysys/list.c:
        Update copyright
      mysys/make-conf.c:
        Update copyright
      mysys/md5.c:
        Update copyright
      mysys/mf_brkhant.c:
        Update copyright
      mysys/mf_cache.c:
        Update copyright
      mysys/mf_casecnv.c:
        Update copyright
      mysys/mf_dirname.c:
        Update copyright
      mysys/mf_fn_ext.c:
        Update copyright
      mysys/mf_format.c:
        Update copyright
      mysys/mf_getdate.c:
        Update copyright
      mysys/mf_iocache.c:
        Update copyright
      mysys/mf_iocache2.c:
        Update copyright
      mysys/mf_keycache.c:
        Update copyright
      mysys/mf_loadpath.c:
        Update copyright
      mysys/mf_pack.c:
        Update copyright
      mysys/mf_path.c:
        Update copyright
      mysys/mf_qsort.c:
        Update copyright
      mysys/mf_qsort2.c:
        Update copyright
      mysys/mf_radix.c:
        Update copyright
      mysys/mf_same.c:
        Update copyright
      mysys/mf_sleep.c:
        Update copyright
      mysys/mf_sort.c:
        Update copyright
      mysys/mf_soundex.c:
        Update copyright
      mysys/mf_stripp.c:
        Update copyright
      mysys/mf_tempfile.c:
        Update copyright
      mysys/mf_unixpath.c:
        Update copyright
      mysys/mf_util.c:
        Update copyright
      mysys/mf_wcomp.c:
        Update copyright
      mysys/mf_wfile.c:
        Update copyright
      mysys/mulalloc.c:
        Update copyright
      mysys/my_alarm.c:
        Update copyright
      mysys/my_alloc.c:
        Update copyright
      mysys/my_append.c:
        Update copyright
      mysys/my_bit.c:
        Update copyright
      mysys/my_bitmap.c:
        Update copyright
      mysys/my_chsize.c:
        Update copyright
      mysys/my_clock.c:
        Update copyright
      mysys/my_compress.c:
        Update copyright
      mysys/my_copy.c:
        Update copyright
      mysys/my_create.c:
        Update copyright
      mysys/my_delete.c:
        Update copyright
      mysys/my_div.c:
        Update copyright
      mysys/my_dup.c:
        Update copyright
      mysys/my_error.c:
        Update copyright
      mysys/my_fopen.c:
        Update copyright
      mysys/my_fstream.c:
        Update copyright
      mysys/my_getwd.c:
        Update copyright
      mysys/my_init.c:
        Free 'once_alloc' memory at shutdown.
      mysys/my_lib.c:
        Update copyright
      mysys/my_lock.c:
        Update copyright
      mysys/my_lockmem.c:
        Update copyright
      mysys/my_lread.c:
        Update copyright
      mysys/my_lwrite.c:
        Update copyright
      mysys/my_malloc.c:
        Update copyright
      mysys/my_messnc.c:
        Update copyright
      mysys/my_mkdir.c:
        Update copyright
      mysys/my_net.c:
        Update copyright
      mysys/my_once.c:
        Update copyright
      mysys/my_open.c:
        Update copyright
      mysys/my_pread.c:
        Update copyright
      mysys/my_pthread.c:
        Update copyright
      mysys/my_quick.c:
        Update copyright
      mysys/my_read.c:
        Update copyright
      mysys/my_realloc.c:
        Update copyright
      mysys/my_redel.c:
        Update copyright
      mysys/my_rename.c:
        Update copyright
      mysys/my_seek.c:
        Update copyright
      mysys/my_static.c:
        Update copyright
      mysys/my_static.h:
        Update copyright
      mysys/my_symlink.c:
        Update copyright
      mysys/my_symlink2.c:
        Update copyright
      mysys/my_tempnam.c:
        Update copyright
      mysys/my_thr_init.c:
        Update copyright
      mysys/my_vsnprintf.c:
        Update copyright
      mysys/my_wincond.c:
        Update copyright
      mysys/my_winthread.c:
        Update copyright
      mysys/my_write.c:
        Update copyright
      mysys/mysys_priv.h:
        Update copyright
      mysys/ptr_cmp.c:
        Update copyright
      mysys/queues.c:
        Update copyright
      mysys/raid.cc:
        Update copyright
      mysys/safemalloc.c:
        Update copyright
      mysys/string.c:
        Update copyright
      mysys/test_charset.c:
        Update copyright
      mysys/test_dir.c:
        Update copyright
      mysys/test_fn.c:
        Update copyright
      mysys/testhash.c:
        Update copyright
      mysys/thr_alarm.c:
        Update copyright
      mysys/thr_lock.c:
        Update copyright
      mysys/thr_mutex.c:
        Update copyright
      mysys/thr_rwlock.c:
        Update copyright
      mysys/tree.c:
        Update copyright
      mysys/typelib.c:
        Update copyright
      pstack/debug.c:
        Update copyright
      pstack/debug.h:
        Update copyright
      pstack/demangle.h:
        Update copyright
      pstack/ieee.c:
        Update copyright
      pstack/ieee.h:
        Update copyright
      pstack/pstack.c:
        Update copyright
      readline/bind.c:
        Cleanup empty lines
      readline/complete.c:
        Cleanup empty lines
      readline/display.c:
        Cleanup empty lines
      readline/funmap.c:
        Cleanup empty lines
      readline/histexpand.c:
        Cleanup empty lines
      readline/histfile.c:
        Cleanup empty lines
      readline/history.c:
        Cleanup empty lines
      readline/history.h:
        Cleanup empty lines
      readline/input.c:
        Cleanup empty lines
      readline/kill.c:
        Cleanup empty lines
      readline/readline.c:
        Cleanup empty lines
      readline/readline.h:
        Cleanup empty lines
      readline/vi_mode.c:
        Cleanup empty lines
      sql/cache_manager.cc:
        Update copyright
      sql/cache_manager.h:
        Update copyright
      sql/convert.cc:
        Update copyright
      sql/custom_conf.h:
        Update copyright
      sql/derror.cc:
        Update copyright
      sql/field.cc:
        Update copyright
      sql/field.h:
        Update copyright
      sql/field_conv.cc:
        Update copyright
      sql/filesort.cc:
        Update copyright
      sql/frm_crypt.cc:
        Update copyright
      sql/ha_berkeley.cc:
        Update copyright
      sql/ha_heap.cc:
        Update copyright
      sql/ha_heap.h:
        Update copyright
      sql/ha_innobase.cc:
        Update copyright
      sql/ha_isam.cc:
        Update copyright
      sql/ha_isam.h:
        Update copyright
      sql/ha_isammrg.cc:
        Update copyright
      sql/ha_isammrg.h:
        Update copyright
      sql/ha_myisam.cc:
        Update copyright
      sql/handler.cc:
        Update copyright
      sql/hash_filo.cc:
        Update copyright
      sql/hash_filo.h:
        Update copyright
      sql/hostname.cc:
        Update copyright
      sql/init.cc:
        Update copyright
      sql/item.cc:
        Update copyright
      sql/item.h:
        Update copyright
      sql/item_buff.cc:
        Update copyright
      sql/item_cmpfunc.cc:
        Update copyright
      sql/item_cmpfunc.h:
        Update copyright
      sql/item_create.cc:
        Update copyright
      sql/item_create.h:
        Update copyright
      sql/item_func.cc:
        Update copyright
      sql/item_strfunc.cc:
        Update copyright
      sql/item_sum.cc:
        Update copyright
      sql/item_sum.h:
        Update copyright
      sql/item_timefunc.cc:
        Update copyright
      sql/item_timefunc.h:
        Update copyright
      sql/item_uniq.cc:
        Update copyright
      sql/item_uniq.h:
        Update copyright
      sql/key.cc:
        Update copyright
      sql/lex_symbol.h:
        Update copyright
      sql/lock.cc:
        Update copyright
      sql/log.cc:
        Update copyright
      sql/log_event.cc:
        Update copyright
      sql/log_event.h:
        Update copyright
      sql/matherr.c:
        Update copyright
      sql/mf_iocache.cc:
        Update copyright
      sql/mini_client.cc:
        Update copyright
      sql/mini_client.h:
        Update copyright
      sql/my_lock.c:
        Update copyright
      sql/mysqld.cc:
        Update copyright
      sql/net_pkg.cc:
        Update copyright
      sql/net_serv.cc:
        Update copyright
      sql/opt_sum.cc:
        Update copyright
      sql/password.c:
        Update copyright
      sql/procedure.cc:
        Update copyright
      sql/procedure.h:
        Update copyright
      sql/records.cc:
        Update copyright
      sql/repl_failsafe.cc:
        Update copyright
      sql/slave.cc:
        Update copyright
      sql/slave.h:
        Update copyright
      sql/sql_acl.cc:
        Update copyright
      sql/sql_acl.h:
        Update copyright
      sql/sql_analyse.cc:
        Update copyright
      sql/sql_analyse.h:
        Update copyright
      sql/sql_base.cc:
        Update copyright
      sql/sql_cache.cc:
        Update copyright
      sql/sql_class.cc:
        Update copyright
      sql/sql_class.h:
        Update copyright
      sql/sql_crypt.cc:
        Update copyright
      sql/sql_crypt.h:
        Update copyright
      sql/sql_db.cc:
        Update copyright
      sql/sql_delete.cc:
        Update copyright
      sql/sql_handler.cc:
        Update copyright
      sql/sql_insert.cc:
        Update copyright
      sql/sql_lex.cc:
        Update copyright
      sql/sql_lex.h:
        Update copyright
      sql/sql_list.cc:
        Update copyright
      sql/sql_list.h:
        Update copyright
      sql/sql_load.cc:
        Update copyright
      sql/sql_map.cc:
        Update copyright
      sql/sql_map.h:
        Update copyright
      sql/sql_parse.cc:
        Update copyright
      sql/sql_rename.cc:
        Update copyright
      sql/sql_repl.cc:
        Update copyright
      sql/sql_select.h:
        Update copyright
      sql/sql_string.cc:
        Update copyright
      sql/sql_string.h:
        Update copyright
      sql/sql_table.cc:
        Update copyright
      sql/sql_test.cc:
        Update copyright
      sql/sql_udf.cc:
        Update copyright
      sql/sql_udf.h:
        Update copyright
      sql/stacktrace.c:
        Update copyright
      sql/structs.h:
        Update copyright
      sql/table.cc:
        Update copyright
      sql/table.h:
        Update copyright
      sql/thr_malloc.cc:
        Update copyright
      sql/time.cc:
        Update copyright
      sql/udf_example.cc:
        Update copyright
      sql/uniques.cc:
        Update copyright
      sql/unireg.cc:
        Update copyright
      sql/unireg.h:
        Update copyright
      strings/atof.c:
        Update copyright
      strings/bchange.c:
        Update copyright
      strings/bcmp.c:
        Update copyright
      strings/bcopy-duff.c:
        Update copyright
      strings/bfill.c:
        Update copyright
      strings/bmove.c:
        Update copyright
      strings/bmove512.c:
        Update copyright
      strings/bmove_upp.c:
        Update copyright
      strings/bzero.c:
        Update copyright
      strings/conf_to_src.c:
        Update copyright
      strings/ctype-big5.c:
        Update copyright
      strings/ctype-czech.c:
        Update copyright
      strings/ctype-euc_kr.c:
        Update copyright
      strings/ctype-gb2312.c:
        Update copyright
      strings/ctype-gbk.c:
        Update copyright
      strings/ctype-latin1_de.c:
        Update copyright
      strings/ctype-sjis.c:
        Update copyright
      strings/ctype-tis620.c:
        Update copyright
      strings/ctype-ujis.c:
        Update copyright
      strings/ctype.c:
        Update copyright
      strings/do_ctype.c:
        Update copyright
      strings/int2str.c:
        Update copyright
      strings/is_prefix.c:
        Update copyright
      strings/llstr.c:
        Update copyright
      strings/longlong2str.c:
        Update copyright
      strings/memcmp.c:
        Update copyright
      strings/memcpy.c:
        Update copyright
      strings/memset.c:
        Update copyright
      strings/r_strinstr.c:
        Update copyright
      strings/str2int.c:
        Update copyright
      strings/str_test.c:
        Update copyright
      strings/strappend.c:
        Update copyright
      strings/strcat.c:
        Update copyright
      strings/strcend.c:
        Update copyright
      strings/strchr.c:
        Update copyright
      strings/strcmp.c:
        Update copyright
      strings/strcont.c:
        Update copyright
      strings/strend.c:
        Update copyright
      strings/strfill.c:
        Update copyright
      strings/strings-not-used.h:
        Update copyright
      strings/strinstr.c:
        Update copyright
      strings/strlen.c:
        Update copyright
      strings/strmake.c:
        Update copyright
      strings/strmov.c:
        Update copyright
      strings/strnlen.c:
        Update copyright
      strings/strnmov.c:
        Update copyright
      strings/strrchr.c:
        Update copyright
      strings/strstr.c:
        Update copyright
      strings/strto.c:
        Update copyright
      strings/strtol.c:
        Update copyright
      strings/strtoll.c:
        Update copyright
      strings/strtoul.c:
        Update copyright
      strings/strtoull.c:
        Update copyright
      strings/strxmov.c:
        Update copyright
      strings/strxnmov.c:
        Update copyright
      strings/t_ctype.h:
        Update copyright
      strings/udiv.c:
        Update copyright
      tools/mysqlmanager.c:
        Update copyright
      vio/test-ssl.c:
        Update copyright
      vio/test-sslclient.c:
        Update copyright
      vio/test-sslserver.c:
        Update copyright
      vio/vio.c:
        Update copyright
      vio/viosocket.c:
        Update copyright
      vio/viossl.c:
        Update copyright
      vio/viosslfactories.c:
        Update copyright
      vio/viotest-ssl.c:
        Update copyright
      2306379e
  12. 22 Nov, 2001 2 commits
    • unknown's avatar
      Fix bug when repairing compressed MyISAM files · 3f4f2408
      unknown authored
      LOCATE() is now case sensitive
      
      
      BUILD/compile-alpha-cxx:
        Don't build manager because it fails with linker error on Linux Alpha
      Docs/manual.texi:
        Changelog
      myisam/mi_check.c:
        Fix bug when repairing compressed MyISAM files
      myisam/mi_open.c:
        Fix bug when repairing compressed MyISAM files
      myisam/mi_packrec.c:
        Fix bug when repairing compressed MyISAM files
      myisam/myisamchk.c:
        Fix bug when repairing compressed MyISAM files
      myisam/myisamdef.h:
        Fix bug when repairing compressed MyISAM files
      mysql-test/r/func_group.result:
        Fix result for new RND function
      mysql-test/r/func_math.result:
        Fix result for new RND function
      mysql-test/r/func_str.result:
        test of new locate()
      mysql-test/t/func_str.test:
        test of new locate()
      sql/item_func.cc:
        LOCATE() is now case sensitive
      sql/sql_string.cc:
        LOCATE() is now case sensitive
      sql/sql_string.h:
        LOCATE() is now case sensitive
      3f4f2408
    • unknown's avatar
      Fixed problem when repairing packed MyISAM files. · e674ebd9
      unknown authored
      Docs/manual.texi:
        Changelog
      e674ebd9
  13. 31 Oct, 2001 1 commit
    • unknown's avatar
      Update for OS2 (patch from Yuri Dario). · 2fb0a673
      unknown authored
      Use LONG_TIMEOUT (one year) instead of ~0 for long timeouts
      Fixed error messages.
      Fixed problem with const propagation when comparing columns of different types
      
      
      BitKeeper/deleted/.del-.cvsignore~a91d63182f0b2366:
        Delete: sql/share/norwegian/.cvsignore
      BitKeeper/deleted/.del-.cvsignore~469064b5190d703d:
        Delete: sql/share/norwegian-ny/.cvsignore
      Docs/manual.texi:
        Changelog
      client/client_priv.h:
        Update for OS2
      client/mysqldump.c:
        Update for OS2
      include/mysqld_error.h:
        Updated error texts
      isam/create.c:
        Removed warning
      myisam/myisamchk.c:
        Fix for OS2
      myisam/myisampack.c:
        Fix for OS2
      mysys/mf_cache.c:
        Fix for OS2
      mysys/mf_tempfile.c:
        Fix for OS2
      mysys/my_os2file64.c:
        Fix for OS2
      mysys/my_tempnam.c:
        Fix for OS2
      os2/ChangeLog.os2:
        Fix for OS2
      os2/MySQL-Client.icc:
        Fix for OS2
      os2/MySQL-Opt.icc:
        Fix for OS2
      os2/MySQL-Source.icc:
        Fix for OS2
      os2/MySQL-Sql.icc:
        Fix for OS2
      os2/MySQL-Util.icc:
        Fix for OS2
      sql/mysqld.cc:
        Use LONG_TIMEOUT (one year) instead of ~0 for long timeouts. This avoids some problems when users spefices wrong arguments to mysqld.
      sql/nt_servc.cc:
        C
      sql/share/czech/errmsg.txt:
        Updated error texts
      sql/share/danish/errmsg.txt:
        Updated error texts
      sql/share/dutch/errmsg.txt:
        Updated error texts
      sql/share/english/errmsg.txt:
        Updated error texts
      sql/share/estonian/errmsg.txt:
        Updated error texts
      sql/share/french/errmsg.txt:
        Updated error texts
      sql/share/german/errmsg.txt:
        Updated error texts
      sql/share/greek/errmsg.txt:
        Updated error texts
      sql/share/hungarian/errmsg.txt:
        Updated error texts
      sql/share/italian/errmsg.txt:
        Updated error texts
      sql/share/japanese/errmsg.txt:
        Updated error texts
      sql/share/korean/errmsg.txt:
        Updated error texts
      sql/share/norwegian-ny/errmsg.txt:
        Updated error texts
      sql/share/norwegian/errmsg.txt:
        Updated error texts
      sql/share/polish/errmsg.txt:
        Updated error texts
      sql/share/portuguese/errmsg.txt:
        Updated error texts
      sql/share/romanian/errmsg.txt:
        Updated error texts
      sql/share/russian/errmsg.txt:
        Updated error texts
      sql/share/slovak/errmsg.txt:
        Updated error texts
      sql/share/spanish/errmsg.txt:
        Updated error texts
      sql/share/swedish/errmsg.txt:
        Updated error texts
      sql/share/ukrainian/errmsg.txt:
        Updated error texts
      sql/sql_select.cc:
        Fixed problem with const propagation when comparing columns of different types.
        Fixed bug when HEAP table is converted to MyISAM tables in GROUP BY on long strings.
      2fb0a673
  14. 02 Oct, 2001 1 commit
    • unknown's avatar
      Cleaned up SSL documentation · 7cda1553
      unknown authored
      Fixes for embedded server
      Made key_cache more configurable
      Fixed that one can change key blocksize in MyISAM
      A lot of optimizations to make MyISAM slightly faster
      
      
      Docs/manual.texi:
        Cleaned up SSL documentation
      client/mysql.cc:
        Fixes for embedded server
      client/mysqltest.c:
        Fixes for embedded server
        Removed memory and file leaks
      include/my_global.h:
        Added C_MODE_START / C_MODE_END macros
      include/my_sys.h:
        Made key_cache more configurable
      include/myisam.h:
        Fixed that one can change MyISAM key block size
      include/mysql.h:
        Fixes for embedded server
      libmysql/libmysql.c:
        Cleanup
      libmysqld/Makefile.am:
        Cleanup
      libmysqld/examples/test-run:
        Added --debug
      libmysqld/lib_sql.cc:
        Cleanup
      libmysqld/libmysqld.c:
        Cleanup
      myisam/ft_boolean_search.c:
        Optimized mi_key_cmp to be faster
      myisam/ft_nlq_search.c:
        Optimized mi_key_cmp to be faster
      myisam/ft_search.c:
        Optimized mi_key_cmp to be faster
      myisam/mi_changed.c:
        Optimized mi_key_cmp to be faster
      myisam/mi_check.c:
        Optimized mi_key_cmp to be faster
      myisam/mi_create.c:
        Fixed that one can change blocksize by changing myisam_block_size
      myisam/mi_delete.c:
        Optimized mi_key_cmp to be faster
      myisam/mi_delete_all.c:
        Optimized mi_key_cmp to be faster
      myisam/mi_dynrec.c:
        Speed optimizations
      myisam/mi_info.c:
        Speed optimizations
      myisam/mi_key.c:
        Speed optimizations
      myisam/mi_locking.c:
        Speed optimizations
      myisam/mi_open.c:
        Fixed that one can change blocksize by changing myisam_block_size
      myisam/mi_page.c:
        Fixed that one can change blocksize by changing myisam_block_size
      myisam/mi_range.c:
        Speed optimizations
      myisam/mi_rkey.c:
        Speed optimizations
      myisam/mi_rnext.c:
        Speed optimizations
      myisam/mi_rnext_same.c:
        Speed optimizations
      myisam/mi_rprev.c:
        Speed optimizations
      myisam/mi_rsame.c:
        Speed optimizations
      myisam/mi_search.c:
        Speed optimizations
      myisam/mi_static.c:
        Fixed that one can change blocksize by changing myisam_block_size
      myisam/mi_statrec.c:
        Speed optimizations
      myisam/mi_test2.c:
        Added more test options
      myisam/mi_test_all.res:
        Added more test options
      myisam/mi_test_all.sh:
        Added more test options
      myisam/mi_write.c:
        Speed optimizations
      myisam/myisamchk.c:
        Added options to change block size and repair checksums
      myisam/myisamdef.h:
        Speed optimizations
      mysys/Makefile.am:
        Added bit handling functions
      mysys/mf_keycache.c:
        Made key_cache more configurable
      mysys/my_init.c:
        made my_init_done global
      scripts/mysql_fix_privilege_tables.sh:
        Fixes for SSL
      scripts/mysql_install_db.sh:
        Fixes for SSL
      sql/derror.cc:
        Don't call exit, call unireg_abort()
      sql/item_cmpfunc.cc:
        Speed optimizations
      sql/item_cmpfunc.h:
        Speed optimizations
      sql/mysql_priv.h:
        Fixes for embedded server
      sql/mysqld.cc:
        Fixes for embedded server
      7cda1553
  15. 15 Sep, 2001 1 commit
    • unknown's avatar
      Cleanups · f0389758
      unknown authored
      BitKeeper/etc/ignore:
        added vio/test-ssl
      Docs/manual.texi:
        Cleanup
      isam/isamchk.c:
        Cleanup
      myisam/mi_check.c:
        Cleanup
      myisam/myisamchk.c:
        Cleanup
      myisam/myisamdef.h:
        Cleanup
      sql/log_event.cc:
        Cleanup
      sql/mysqld.cc:
        Cleanup
      f0389758
  16. 30 Aug, 2001 1 commit
  17. 21 Aug, 2001 1 commit
  18. 19 Aug, 2001 1 commit
    • unknown's avatar
      Fix of UNION code · 46ba1eef
      unknown authored
      Added heap_delete_table
      Added HA_EXTRA_PREPARE_FOR_DELETE
      Added and use my_dup() for faster open of tables.
      Removed not working no-mix-table-type
      
      
      BitKeeper/deleted/.del-=6~33f33b0a159dc5d5:
        Delete: =6
      heap/hp_clear.c:
        Cleanup
      heap/hp_close.c:
        Added delayed delete
      heap/hp_create.c:
        Added heap_delete_table
      heap/hp_delete.c:
        cleanup
      heap/hp_test2.c:
        Added heap_delete_table
      include/heap.h:
        Added heap_delete_table
      include/my_base.h:
        Added HA_EXTRA_PREPARE_FOR_DELETE
      include/my_sys.h:
        Adde my_dup and set_prealloc_root
      isam/extra.c:
        Added HA_EXTRA_PREPARE_FOR_DELETE
      myisam/mi_check.c:
        use my_dup
      myisam/mi_extra.c:
        use my_dup
      myisam/mi_open.c:
        use my_dup
      myisam/myisamchk.c:
        use my_dup
      myisam/myisamdef.h:
        use my_dup
      mysys/Makefile.am:
        my_dup
      mysys/hash.c:
        Add hash_replace
      mysys/mf_pack.c:
        cleanup
      mysys/my_alloc.c:
        Add set_prealloc_root
      mysys/my_fstream.c:
        cleanup
      mysys/my_lib.c:
        cleanup
      mysys/my_seek.c:
        cleanup
      sql/ha_heap.cc:
        Uses heap_delete_table()
      sql/mysqld.cc:
        Fix SIGHUP usage
        Remove no-mix-table-types
      sql/share/czech/errmsg.txt:
        new error message
      sql/share/danish/errmsg.txt:
        new error message
      sql/share/dutch/errmsg.txt:
        new error message
      sql/share/english/errmsg.txt:
        new error message
      sql/share/estonian/errmsg.txt:
        new error message
      sql/share/french/errmsg.txt:
        new error message
      sql/share/german/errmsg.txt:
        new error message
      sql/share/greek/errmsg.txt:
        new error message
      sql/share/hungarian/errmsg.txt:
        new error message
      sql/share/italian/errmsg.txt:
        new error message
      sql/share/japanese/errmsg.txt:
        new error message
      sql/share/korean/errmsg.txt:
        new error message
      sql/share/norwegian-ny/errmsg.txt:
        new error message
      sql/share/norwegian/errmsg.txt:
        new error message
      sql/share/polish/errmsg.txt:
        new error message
      sql/share/portuguese/errmsg.txt:
        new error message
      sql/share/romanian/errmsg.txt:
        new error message
      sql/share/russian/errmsg.txt:
        new error message
      sql/share/slovak/errmsg.txt:
        new error message
      sql/share/spanish/errmsg.txt:
        new error message
      sql/share/swedish/errmsg.txt:
        new error message
      sql/sql_base.cc:
        remove no-mix-table-type
      sql/sql_parse.cc:
        Fix UNION code
      46ba1eef
  19. 18 Aug, 2001 1 commit
    • unknown's avatar
      Portability fixes. · 09a9abeb
      unknown authored
      Let myisamchk generate a new checksum for compressed data.
      Don't unconditionally force filenames to lower case on windows.
      Update mysqltest to match 4.0 source (to get some of the new bug fixes into 3.23)
      
      
      Docs/manual.texi:
        Link changes, and new comments about IA64 and about Sun workshop
      client/mysqltest.c:
        Updated this to match the 4.0 source
      include/config-win.h:
        Don't unconditionally force filenames to lower case on windows.
      innobase/include/ut0ut.h:
        Portability fix
      myisam/mi_cache.c:
        Fix problem where reported error number was -1
      myisam/mi_check.c:
        Let myisamchk generate a new checksum for compressed data.
      myisam/mi_packrec.c:
        Cleanup
      myisam/myisamchk.c:
        Report checksum for compressed tables
      mysql-test/t/bdb.test:
        Fix to match new mysqltest
      mysql-test/t/err000001.test:
        Fix to match new mysqltest
      mysql-test/t/fulltext.test:
        Fix to match new mysqltest
      mysql-test/t/innodb.test:
        Fix to match new mysqltest
      mysql-test/t/overflow.test:
        Fix to match new mysqltest
      sql/ha_gemini.cc:
        Fix false -> FALSE
      sql/share/estonian/errmsg.txt:
        Updated of translation
      sql/share/swedish/errmsg.txt:
        Updated of translation
      sql/sql_parse.cc:
        Don't unconditionally force filenames to lower case on windows.
      sql/sql_table.cc:
        Don't unconditionally force filenames to lower case on windows.
      sql/sql_test.cc:
        Write current directory when using 'mysqladmin debug'
      strings/strto.c:
        Portability fix
      strings/strtoll.c:
        Portability fix
      strings/strtoul.c:
        Portability fix
      strings/strtoull.c:
        Portability fix
      09a9abeb
  20. 03 Aug, 2001 1 commit
    • unknown's avatar
      Fix when using --without-server --with-thread-safe-client · a7decf4d
      unknown authored
      Added prototype for my_thread_end
      New error message for MATCH
      Give error when using myisamchk --force --readonly
      
      
      BitKeeper/deleted/.del-fulltext_join.test~e347c8f04405c916:
        Delete: mysql-test/t/fulltext_join.test
      Docs/manual.texi:
        Added node to fulltext
      configure.in:
        Fix when using --without-server --with-thread-safe-client
      include/mysql_com.h:
        Added prototype for my_thread_end
      include/mysqld_error.h:
        New error message for MATCH
      myisam/myisamchk.c:
        Give error when using --force --readonly
      mysql-test/t/fulltext.test:
        Added test for error conditons with fulltext
      sql/item_func.cc:
        Fixed error messages when using MATCH ... AGAINST
      sql/mysqld.cc:
        Portability fix
      sql/share/czech/errmsg.txt:
        New error message when using MATCH
      sql/share/danish/errmsg.txt:
        New error message when using MATCH
      sql/share/dutch/errmsg.txt:
        New error message when using MATCH
      sql/share/english/errmsg.txt:
        New error message when using MATCH
      sql/share/estonian/errmsg.txt:
        New error message when using MATCH
      sql/share/french/errmsg.txt:
        New error message when using MATCH
      sql/share/german/errmsg.txt:
        New error message when using MATCH
      sql/share/greek/errmsg.txt:
        New error message when using MATCH
      sql/share/hungarian/errmsg.txt:
        New error message when using MATCH
      sql/share/italian/errmsg.txt:
        New error message when using MATCH
      sql/share/japanese/errmsg.txt:
        New error message when using MATCH
      sql/share/korean/errmsg.txt:
        New error message when using MATCH
      sql/share/norwegian-ny/errmsg.txt:
        New error message when using MATCH
      sql/share/norwegian/errmsg.txt:
        New error message when using MATCH
      sql/share/polish/errmsg.txt:
        New error message when using MATCH
      sql/share/portuguese/errmsg.txt:
        New error message when using MATCH
      sql/share/romanian/errmsg.txt:
        New error message when using MATCH
      sql/share/russian/errmsg.txt:
        New error message when using MATCH
      sql/share/slovak/errmsg.txt:
        New error message when using MATCH
      sql/share/spanish/errmsg.txt:
        New error message when using MATCH
      sql/share/swedish/errmsg.OLD:
        New error message when using MATCH
      sql/share/swedish/errmsg.txt:
        New error message when using MATCH
      a7decf4d
  21. 16 Jul, 2001 1 commit
    • unknown's avatar
      Patch for netBSD · b5ba2796
      unknown authored
      Added warning for tables where the auto_increment key is 0
      Fixed DELETE ... LIMIT 0
      Fixed UPDATE ..LIMIT 0
      
      
      Docs/manual.texi:
        Changelog + Update to CHECK TABLE
      configure.in:
        Patch for netBSD
      mit-pthreads/gen/ctime.c:
        Patch for netBSD
      mit-pthreads/machdep/netbsd-1.1/__signal.h:
        Patch for netBSD
      mit-pthreads/stdio/strerror.c:
        Patch for netBSD
      myisam/mi_check.c:
        Added warning for tables where the auto_increment key is 0
      myisam/myisamchk.c:
        Added warning for tables where the auto_increment key is 0
      mysql-test/r/auto_increment.result:
        Added warning for tables where the auto_increment key is 0
      mysql-test/r/limit.result:
        Test of DELETE ... LIMIT 0
      mysql-test/t/auto_increment.test:
        Added warning for tables where the auto_increment key is 0
      mysql-test/t/limit.test:
        Test of DELETE ... LIMIT 0
      sql/Makefile.am:
        Don't add mysqld_LDADD to mysqlbinlog (portability patch)
      sql/ha_gemini.cc:
        Changed copyright (have got ok from NuSphere previously)
      sql/ha_gemini.h:
        Changed copyright (have got ok from NuSphere previously)
      sql/sql_delete.cc:
        Fixed DELETE ... LIMIT 0
      sql/sql_update.cc:
        Fixed UPDATE ..LIMIT 0
      b5ba2796
  22. 04 Jul, 2001 1 commit
    • unknown's avatar
      Added support for ANSI SQL X'hex-string' format. · 799d5839
      unknown authored
      Fixed mysqldump to use -- instead of # as comment characters.
      Removed support for the 3.20 protocol format
      
      
      Docs/manual.texi:
        Update Changelog
      client/mysqldump.c:
        Fixed dump to use -- instead of # as comment characters.
      libmysql/libmysql.c:
        Removed support for the 3.20 protocol format
      myisam/myisamchk.c:
        Fixed typo in printf
      mysql-test/r/varbinary.result:
        Test of new hex constant format
      mysql-test/t/varbinary.test:
        Test of new hex constant format
      sql/sql_lex.cc:
        Added support for ANSI SQL X'hex-string' format.
      sql/sql_lex.h:
        Added support for ANSI SQL X'hex-string' format.
      sql/sql_yacc.yy:
        Added support for ANSI SQL X'hex-string' format.
      799d5839
  23. 28 Jun, 2001 1 commit
    • unknown's avatar
      Cleanup · a623a79a
      unknown authored
      myisam/myisamchk.c:
        --force now implices --update
      sql/share/italian/errmsg.txt:
        Update of error messages
      a623a79a
  24. 05 Jun, 2001 1 commit
    • unknown's avatar
      Symlinking of tables should not work. · c5627843
      unknown authored
      Fixed error number handling bug in mysqltest.
      Fixed that error number from insert delayed is reported correctly.
      merged new vio code with old violite code.
      
      
      client/mysqltest.c:
        Fixed bug that error numbers wasn't tested properly.
      myisam/mi_check.c:
        Moved initialization of variables to avoid a bug.
      myisam/mi_create.c:
        Fixed bug in symlink handling.
      myisam/mi_test_all.sh:
        Fixed script so that it works.
      myisam/myisamchk.c:
        Removed --no-symlinks option
      mysql-test/mysql-test-run.sh:
        Cleaned up error message
      mysql-test/t/bdb.test:
        Fixed wrong error numbers
      mysql-test/t/err000001.test:
        Fixed wrong error numbers
      mysql-test/t/innodb.test:
        Fixed wrong error numbers
      mysql-test/t/overflow.test:
        Fixed wrong error numbers
      mysql-test/t/status.test:
        Ensure that we are using myisam tables for the lock test.
      mysys/my_delete.c:
        cleanup
      mysys/my_symlink2.c:
        Added option to not overwrite files when using symlinks.
      sql/Makefile.am:
        Moved vio to avoid link error.
      sql/ha_myisam.cc:
        Fixed symlink handling.
      sql/mysqld.cc:
        Changed --skip-symlinks to --skip-symlink
      sql/sql_insert.cc:
        Fixed that error number from insert delayed is reported correctly
      sql/sql_parse.cc:
        Fixed symlink handling.
      sql/sql_table.cc:
        Fixed symlink handling.
      vio/vio.c:
        cleanup
      vio/viosocket.c:
        c
      c5627843
  25. 01 Jun, 2001 2 commits
    • unknown's avatar
      Added --skip-symlinks · 3b1a6ddf
      unknown authored
      Don't force repair of tables that are not closed properly.
      
      
      Docs/manual.texi:
        Added information about symbolic links.
      include/my_sys.h:
        symbolic link support
      myisam/mi_check.c:
        Don't force repair of tables that are not closed properly.
      myisam/myisamchk.c:
        Version number change.
      mysys/my_static.c:
        symbolic link support
      mysys/my_symlink2.c:
        Disabling of symbolic link support
      sql/mysqld.cc:
        Disabling of symbolic link support
      3b1a6ddf
    • unknown's avatar
      Added support for symlinked tables. · ad6435d2
      unknown authored
      myisamchk: Don't force a repair if the only problem was that the
      open count wasn't correct.
      Added missing error messages.
      
      
      include/my_sys.h:
        Cleanup comments
      libmysql/Makefile.shared:
        Added symlink library.
      myisam/mi_check.c:
        Added support for symlinked tables
      myisam/mi_delete_table.c:
        Added support for symlinked tables
      myisam/mi_open.c:
        Added support for symlinked tables
      myisam/mi_rename.c:
        Added support for symlinked tables
      myisam/myisamchk.c:
        Added support for symlinked tables.
        Don't force a repair if the only problem was that the open count
        wasn't correct.
      pstack/bucomm.c:
        use mkstemp() instead of mytemp()
      sql/ha_myisam.cc:
        Added support for symlinked tables
      sql/ha_myisam.h:
        Added support for symlinked tables
      sql/ha_myisammrg.cc:
        Added support for symlinked tables
      sql/handler.cc:
        Added support for symlinked tables
      sql/handler.h:
        Added support for symlinked tables
      sql/lex.h:
        Added support for symlinked tables
      sql/share/czech/errmsg.txt:
        Added missing error messages
      sql/share/danish/errmsg.txt:
        Added missing error messages
      sql/share/dutch/errmsg.txt:
        Added missing error messages
      sql/share/estonian/errmsg.txt:
        Added missing error messages
      sql/share/french/errmsg.txt:
        Added missing error messages
      sql/share/german/errmsg.txt:
        Added missing error messages
      sql/share/greek/errmsg.txt:
        Added missing error messages
      sql/share/hungarian/errmsg.txt:
        Added missing error messages
      sql/share/italian/errmsg.txt:
        Added missing error messages
      sql/share/japanese/errmsg.txt:
        Added missing error messages
      sql/share/korean/errmsg.txt:
        Added missing error messages
      sql/share/norwegian-ny/errmsg.txt:
        Added missing error messages
      sql/share/norwegian/errmsg.txt:
        Added missing error messages
      sql/share/polish/errmsg.txt:
        Added missing error messages
      sql/share/portuguese/errmsg.txt:
        Added missing error messages
      sql/share/romanian/errmsg.txt:
        Added missing error messages
      sql/share/russian/errmsg.txt:
        Added missing error messages
      sql/share/slovak/errmsg.txt:
        Added missing error messages
      sql/share/spanish/errmsg.txt:
        Added missing error messages
      sql/share/swedish/errmsg.OLD:
        Added missing error messages
      sql/share/swedish/errmsg.txt:
        Added missing error messages
      sql/sql_db.cc:
        Added support for symlinked tables
      sql/sql_parse.cc:
        Added support for symlinked tables
      sql/sql_table.cc:
        Added support for symlinked tables with ALTER TABLE
      sql/sql_yacc.yy:
        Added option to create symlinked tables.
      ad6435d2
  26. 31 May, 2001 1 commit
    • unknown's avatar
      Removed compiler warnings. · a178584d
      unknown authored
      Added preliminary handling of symlinks in MyISAM.
      When using myisamchk to check tables with --force, don't repair
      tables that are marked as 'not closed' if they are ok.
      Change fn_format() to use my_real_path and my_symlink
      
      
      include/myisam.h:
        Added handling of symlinks
      myisam/ft_boolean_search.c:
        cleanup
      myisam/ft_dump.c:
        cleanup
      myisam/mi_check.c:
        Added handling of symlinks.
        When using check and --force, don't repair tables that are marked
        as 'not closed' if they are ok.
      myisam/mi_create.c:
        Added handling of symlinks.
      myisam/mi_dbug.c:
        Added handling of symlinks.
      myisam/mi_info.c:
        Added handling of symlinks.
      myisam/mi_open.c:
        Added handling of symlinks.
      myisam/mi_search.c:
        cleanup
      myisam/myisamchk.c:
        Added handling of symlinks.
      myisam/myisamdef.h:
        Added handling of symlinks.
      myisam/myisamlog.c:
        Fixed bug when using new trees
      myisam/myisampack.c:
        cleanup
      mysys/mf_cache.c:
        cleanup
      mysys/mf_format.c:
        Change to use my_real_path and my_symlink
      mysys/my_alloc.c:
        cleanup
      BitKeeper/etc/ignore:
        Added libmysqld/sql_command libmysqld/backup_dir libmysqld/simple-test to the ignore list
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      a178584d
  27. 17 Apr, 2001 1 commit
  28. 28 Mar, 2001 1 commit
    • unknown's avatar
      Let ALTER TABLE and LOAD DATA INFILE use sorting to create index · f176ef0a
      unknown authored
      Call init_signals before intializing table handlers. This should fix the signal problem in Innobase on Solaris
      
      
      Docs/manual.texi:
        Updated changelog
      include/myisam.h:
        Let ALTER TABLE and LOAD DATA INFILE use sorting to create index
      myisam/mi_check.c:
        Let ALTER TABLE and LOAD DATA INFILE use sorting to create index
      myisam/myisamchk.c:
        Let ALTER TABLE and LOAD DATA INFILE use sorting to create index
      sql/ha_myisam.cc:
        Let ALTER TABLE and LOAD DATA INFILE use sorting to create index
      sql/mysqld.cc:
        Call init_signals before intializing table handlers. This should fix the signal problem in Innobase on Solaris
      f176ef0a
  29. 17 Feb, 2001 2 commits
    • unknown's avatar
      Fixed that myisamchk -R works on text columns · 46ad1b88
      unknown authored
      Fixed typo when removing space from argument to -O
      
      
      Docs/manual.texi:
        Update of merge tables
      myisam/mi_check.c:
        Moved test of FULLTEXT keys to make things more efficient
      myisam/myisamchk.c:
        Incremented version
      myisam/myisamdef.h:
        Fixed that myisamchk -R works on text columns
      mysys/getvar.c:
        Fixed typo when removing space from argument to -O
      46ad1b88
    • unknown's avatar
      Write UNION() for MERGE tables · a33af54d
      unknown authored
      Docs/manual.texi:
        Clearify when logging is done
      myisam/myisamchk.c:
        Better error message
      mysql-test/r/merge.result:
        Added test for SHOW CREATE on MERGE table
      scripts/safe_mysqld.sh:
        Search by default in database directory
      sql/ha_myisammrg.h:
        Add UNION() to SHOW CREATE TABLE
      sql/sql_update.cc:
        removed compiler warning
      a33af54d
  30. 15 Feb, 2001 1 commit
    • unknown's avatar
      Changed --replace to --replace_result in mysqltest · 8226b37a
      unknown authored
      Changed errmsg -> my_errmsg (portability issue)
      Fixed that mysqlbinlog writes SET TIMESTAMP before all queries
      Fixed comments in default my.cnf files
      
      
      Docs/manual.texi:
        Updated information about character sets
      client/mysqladmin.c:
        Added missing help text
      client/mysqltest.c:
        Changed --replace to --replace_result to not conflict with SQL replace command
      include/my_sys.h:
        change errmsg -> my_errmsg (portability issue)
      libmysql/errmsg.c:
        change errmsg -> my_errmsg (portability issue)
      myisam/mi_cache.c:
        Changed seek+read to pread
      myisam/mi_check.c:
        Fix bug that caused myisamchk to be very slow under some specific error conditions
      myisam/mi_dynrec.c:
        cleanup
      myisam/myisamchk.c:
        Write out value of checksum
      myisam/myisamdef.h:
        cleanup
      mysql-test/r/backup.result:
        Fixed the case where backup caused different error messages
      mysql-test/r/bdb.result:
        Added new test case
      mysql-test/r/fulltext.result:
        Fix for new CREATE TABLE format
      mysql-test/t/backup.test:
        Use --replace_result and --send
      mysql-test/t/bdb.test:
        New test case
      mysql-test/t/status.test:
        Use --send
      mysys/errors.c:
        change errmsg -> my_errmsg (portability issue)
      mysys/my_error.c:
        change errmsg -> my_errmsg (portability issue)
      mysys/typelib.c:
        Only accept full type names
      sql/derror.cc:
        change errmsg -> my_errmsg (portability issue)
      sql/ha_berkeley.cc:
        Fixed bug when using key parts that could be NULL
      sql/log_event.cc:
        Log SET TIMESTAMP before all queries
      sql/mysqlbinlog.cc:
        Incremented version number
      sql/mysqld.cc:
        change errmsg -> my_errmsg (portability issue)
        Always accept --skip-gemeni, --skip-bdb and --skip-innobase
      sql/slave.cc:
        cleanup
      sql/sql_base.cc:
        cleanup
      sql/sql_db.cc:
        cleanup
      support-files/my-huge.cnf.sh:
        Remove usage of # at end of line
      support-files/my-large.cnf.sh:
        Remove usage of # at end of line
      support-files/my-medium.cnf.sh:
        Remove usage of # at end of line
      support-files/my-small.cnf.sh:
        Remove usage of # at end of line
      8226b37a
  31. 31 Jan, 2001 1 commit
    • unknown's avatar
      New myisamchk option --sort-recover · fc8f92ca
      unknown authored
      Allow delete of crashed MyISAM tables
      Fixed bug when BLOB was first part of key
      Fixed bug when using result from CASE in GROUP BY
      Fixed core-dump bug in monthname()
      Optimized calling of check_db_name()
      
      
      Docs/manual.texi:
        Added more information about myisamchk
      client/mysqladmin.c:
        Added error message for CREATE database and fixed possible overflow bug
      include/myisam.h:
        New myisamchk option --sort-recover
      libmysql/libmysql.c:
        Removed commented code
        Don't define getpwuid (breaks on SCO 3.2)
      myisam/mi_check.c:
        Fixed (new) bug when using --recover --optimize
      myisam/mi_delete_table.c:
        Allow delete of crashed tables
      myisam/mi_key.c:
        Fixed bug when BLOB was first part of key
      myisam/myisamchk.c:
        New myisamchk option --sort-recover
      mysql-test/r/case.result:
        New test cases to check for reported bugs
      mysql-test/r/func_time.result:
        New test cases to check for reported bugs
      mysql-test/r/type_blob.result:
        New test cases to check for reported bugs
      mysql-test/r/type_datetime.result:
        New test cases to check for reported bugs
      mysql-test/t/case.test:
        New test cases to check for reported bugs
      mysql-test/t/func_time.test:
        New test cases to check for reported bugs
      mysql-test/t/type_blob.test:
        New test cases to check for reported bugs
      mysql-test/t/type_datetime.test:
        New test cases to check for reported bugs
      mysys/my_bitmap.c:
        Optimize
      sql-bench/limits/ms-sql.cfg:
        Updated limits
      sql/item_cmpfunc.cc:
        Fixed bug when using result from CASE in GROUP BY
      sql/item_cmpfunc.h:
        Fixed bug when using result from CASE in GROUP BY
      sql/item_timefunc.cc:
        Fixed core-dump bug in monthname()
      sql/sql_db.cc:
        Optimized calling of check_db_name()
      sql/sql_parse.cc:
        Optimized calling of check_db_name()
      sql/table.cc:
        Fixed typo
      fc8f92ca
  32. 15 Jan, 2001 1 commit
    • unknown's avatar
      Fixed test when exeeding file quota on write · 7d876560
      unknown authored
      Sanity checks when opening MyISAM files
      
      
      Docs/manual.texi:
        Added information about Borland c++
      myisam/mi_check.c:
        Cleanup
      myisam/mi_open.c:
        Added sanity checking
      myisam/myisamchk.c:
        Better error messages
      mysys/my_chsize.c:
        Cleanup
      mysys/my_seek.c:
        Changed debug message
      mysys/my_write.c:
        Fixed test when exeeding file quota
      7d876560
  33. 07 Jan, 2001 1 commit
    • unknown's avatar
      Fixed bug when having many binary log files · a7c65d89
      unknown authored
      Fixed bug when deleting keys with possible NULL values
      many changes to mysqltest
      
      
      Docs/Makefile.am:
        Don't print warnings when making ..dvi
      Docs/manual.texi:
        Documented changes
      acinclude.m4:
        Fixed bug in detecting BDB version 3.2.3g
      client/mysqltest.c:
        Added TODO
        Cleanups
        Free all memory and close all files on exit
      configure.in:
        New release
      include/my_sys.h:
        Added new function needed for mysqltest.c
      myisam/mi_create.c:
        Cleanup
      myisam/mi_delete.c:
        Fixed bug when deleting keys with NULL
      myisam/mi_search.c:
        cleanup
      myisam/myisamchk.c:
        Added info about fulltext to -D
      mysql-test/mysql-test-run.sh:
        Use less memory for mysqld
        Don't remove timefile if only testing one test
        Send option --debug to mysqltest
      mysql-test/r/fulltext.result:
        New tests
      mysql-test/r/func_math.result:
        Make test portable
      mysql-test/t/fulltext.test:
        New tests
      mysql-test/t/func_math.test:
        Make test portable
      mysys/mf_iocache2.c:
        Fixed bug when reading over buffers
      mysys/string.c:
        Added new function needed for mysqltest.c
      mysys/typelib.c:
        cleanup
      scripts/make_binary_distribution.sh:
        Added option suffix
        Removed some warnings for missing files
      scripts/mysql_install_db.sh:
        Fixed type
      scripts/safe_mysqld.sh:
        Also read options from 'server' group
      sql-bench/Results/ATIS-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/Results/RUN-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/Results/alter-table-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/Results/big-tables-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/Results/connect-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/Results/create-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/Results/insert-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/Results/select-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/Results/wisconsin-mysql-Linux_2.2.13_SMP_alpha:
        New benchmark run
      sql-bench/bench-init.pl.sh:
        Added missing option '--silent'
      sql/mysqld.cc:
        Added warnings
        Print backtraces even if 'current_thd' is not active
      support-files/mysql.spec.sh:
        Removed duplicate entry
      a7c65d89
  34. 03 Jan, 2001 1 commit
    • unknown's avatar
      Fixed bug in myisamchk -r -k# · 0f7e0282
      unknown authored
      Docs/manual.texi:
        Changelog
      myisam/mi_check.c:
        Fixed bug in -r -k#
      myisam/myisamchk.c:
        Fixed bug in -r -k#
      0f7e0282
  35. 28 Nov, 2000 1 commit
    • unknown's avatar
      New thr_alarm struct for better integration with OS2 · 5f1267ba
      unknown authored
      Run bootstrap in separate thread
      Fix bug in FLUSH TABLES table_name
      
      
      Docs/manual.texi:
        Updated ChangeLog
      client/mysql.cc:
        Added info about compressed protocol
      include/getopt.h:
        Fix for OS2
      include/global.h:
        Fix for OS2
      include/my_sys.h:
        Fix for OS2
      include/mysql_com.h:
        Fix for OS2
      include/thr_alarm.h:
        Cleanup up alarm struct for OS2 port
      isam/isamchk.c:
        Fix for OS2
      libmysql/libmysql.c:
        cleanup
      libmysql/net.c:
        Use new thr_alarm
      libmysql/violite.c:
        Fix for OS2
      myisam/ChangeLog:
        Changes
      myisam/mi_create.c:
        Use less stack
      myisam/myisamchk.c:
        Fix for OS2
      mysys/default.c:
        Fix for OS2
      mysys/getopt.c:
        Fix for OS2
      mysys/mf_format.c:
        Safety
      mysys/mf_path.c:
        Fix for OS2
      mysys/my_create.c:
        Fix for OS2
      mysys/my_lock.c:
        Fix for OS2
      mysys/my_open.c:
        Fix for OS2
      mysys/thr_alarm.c:
        Use new thr_alarm struct
      readline/input.c:
        Fix for OS2
      readline/rltty.c:
        Fix for OS2
      sql/ha_myisam.cc:
        Remove unnecessary fn_format
      sql/my_lock.c:
        Use new thr_alarm
      sql/mysql_priv.h:
        Changed bootstrap to run in separate thread to avoid problem with
        small stack
      sql/mysqld.cc:
        Changed bootstrap to run in separate thread to avoid problem with
        small stack
      sql/net_serv.cc:
        Use new thr_alarm
      sql/sql_base.cc:
        Fix problem with FLUSH TABLE table_name
      sql/sql_class.cc:
        Fix for new bootstrap
      sql/sql_class.h:
        cleanup
      sql/sql_delete.cc:
        cleanup
      sql/sql_load.cc:
        Fix for OS2
      sql/sql_parse.cc:
        Changed bootstrap to run in separate thread to avoid problem with
        small stack
      sql/sql_select.cc:
        Reset used structure elements
      sql/sql_table.cc:
        For OS2
      sql/violite.c:
        For OS2
      5f1267ba
  36. 22 Nov, 2000 1 commit
    • unknown's avatar
      Split error message for crashed table to 3 different error messages. · 7402ecac
      unknown authored
      Fixes for Windows
      
      
      Docs/manual.texi:
        Added things to the Windows section
      client/mysql.cc:
        Fixes to get Jani's changes to work on Windows
      include/myisam.h:
        Added chk_status()
      include/mysqld_error.h:
        Split error message for crashed table to 3 different error messages
      myisam/mi_check.c:
        Added chk_status()
      myisam/myisamchk.c:
        Added chk_status(). This gives us better error messages when the
        table is marked as 'crashed'
      sql/ha_myisam.cc:
        Better error messages if the table is marked as crashed
      sql/handler.cc:
        Better error messages if the table is marked as crashed
      sql/share/czech/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/czech/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/danish/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/danish/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/dutch/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/dutch/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/english/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/english/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/estonian/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/estonian/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/french/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/french/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/german/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/german/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/greek/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/greek/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/hungarian/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/hungarian/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/italian/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/italian/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/japanese/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/japanese/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/korean/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/korean/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/norwegian-ny/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/norwegian/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/polish/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/polish/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/portuguese/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/portuguese/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/romanian/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/russian/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/russian/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/slovak/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/slovak/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/spanish/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/spanish/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/share/swedish/errmsg.OLD:
        Better error messages if the table is marked as crashed
      sql/share/swedish/errmsg.sys:
        Better error messages if the table is marked as crashed
      sql/share/swedish/errmsg.txt:
        Better error messages if the table is marked as crashed
      sql/sql_table.cc:
        Fix for gcc 2.7.2
      7402ecac