An error occurred fetching the project authors.
  1. 17 Mar, 2003 1 commit
    • unknown's avatar
      Change dbug.h -> my_dbug.h (Portability fix) · b1a78e2a
      unknown authored
      Ensure that \ is not allowed in filenames, even on Unix
      
      
      include/my_dbug.h:
        Rename: include/dbug.h -> include/my_dbug.h
      include/Makefile.am:
        Change dbug.h -> my_dbug.h
      include/my_global.h:
        Change dbug.h -> my_dbug.h
      libmysql/get_password.c:
        Change dbug.h -> my_dbug.h
      libmysqld/lib_vio.c:
        Change dbug.h -> my_dbug.h
      sql/table.cc:
        Ensure that \ is not allowed in filenames, even on Unix
      b1a78e2a
  2. 27 Feb, 2003 1 commit
  3. 21 Feb, 2003 1 commit
    • unknown's avatar
      - removed duplicate my_sys.h inclusion from lib_vio.c · fc10df38
      unknown authored
       - removed obsolete compile options from compile-pentium-debug-openssl
      
      
      BUILD/compile-pentium-debug-openssl:
         - removed "--without-innodb" (InnoDB is on by default) and "--with-vio"
           (--with-openssl implies --with-vio)
      libmysqld/lib_vio.c:
         - removed duplicate my_sys.h inclusion
      fc10df38
  4. 17 Feb, 2003 1 commit
    • unknown's avatar
      client port number added to SHOW PROCESSLIST (SCRUM?) · 1b9b2c30
      unknown authored
      include/violite.h:
        port added to reported parameters
      libmysqld/lib_vio.c:
        port added to reported parameters
      sql/sql_class.h:
        port added to reported parameters
      sql/sql_parse.cc:
        port added to reported parameters
      sql/sql_show.cc:
        SHOW PROCESSLIST will report port number if it is possible
      vio/viosocket.c:
        port added to reported parameters
      1b9b2c30
  5. 16 Dec, 2002 1 commit
    • unknown's avatar
      Big purge about embedded library (scrum) · 632717fd
      unknown authored
      client/mysql.cc:
        #ifdef EMBEDDED_LIBRARY added
      client/mysqltest.c:
        #ifdef EMBEDDED_LIBRARY added
      include/mysql.h:
        MYSQL structure changed for embedded case
      include/mysql_com.h:
        NET structure changed for embedded case
      include/violite.h:
        no need to special vio types
      libmysqld/embedded_priv.h:
        superfluous functions removed
      libmysqld/lib_sql.cc:
        several modifications
      libmysqld/lib_vio.c:
        file should be removed
      libmysqld/libmysqld.c:
        several modifications
      sql/ha_berkeley.cc:
        modification for embedded case
      sql/ha_innodb.cc:
        modifications for embedded case
      sql/ha_myisam.cc:
        modifications for embedded case
      sql/item_func.cc:
        modifications for embedded case
      sql/log.cc:
        #ifdef-ed parts of file which don't work in embedded case
      sql/log_event.cc:
        #ifdef-ed parts of file which don't work in embedded case
      sql/log_event.h:
        #ifdef-ed parts of file which don't work in embedded case
      sql/mf_iocache.cc:
        file doesn't work in embedded case
      sql/mini_client.cc:
        file should be removed from embedded library
      sql/mysqld.cc:
        several modifications
      sql/net_pkg.cc:
        #ifdef-ed functions which can't work in embedded case
      sql/net_serv.cc:
        file doesn't work in embedded case
      sql/repl_failsafe.cc:
        no replication in embedded case
      sql/repl_failsafe.h:
        no replication in embedded case
      sql/set_var.cc:
        #ifdef-ed variables which have no sense in embedded library
      sql/set_var.h:
        #ifdef-ed variables which have no sense in embedded library
      sql/slave.cc:
        no replication in embedded library
      sql/slave.h:
        no replication in embedded library
      sql/sql_acl.cc:
        modifications for embedded case
      sql/sql_cache.cc:
        modifications for embedded case
      sql/sql_class.cc:
        modifications for embedded case
      sql/sql_class.h:
        THD structure modified for embedded case
      sql/sql_db.cc:
        modification for embedded case
      sql/sql_error.cc:
        modification for embedded case
      sql/sql_help.cc:
        modification for embedded case
      sql/sql_load.cc:
        #ifdef-ed code which doesn't work in embedded case
      sql/sql_parse.cc:
        #ifdef-ed code which doesn't work in embedded case
      sql/sql_prepare.cc:
        #ifdef-ed code which doesn't work in embedded case
      sql/sql_repl.cc:
        no replication in embedded library
      sql/sql_repl.h:
        no replication in embedded library
      sql/sql_select.cc:
        query cache don't work now in embedded library
      sql/sql_show.cc:
        modifications for embedded case
      632717fd
  6. 12 Dec, 2002 1 commit
    • unknown's avatar
      Some fixes · a9f1388b
      unknown authored
      libmysqld/lib_sql.cc:
        parameters for functions added
      libmysqld/lib_vio.c:
        name of option changed
      libmysqld/libmysqld.c:
        mysql_fetch_length fixed
      sql/field.cc:
        small fix
      sql/item.cc:
        fixes about Field::embedded_send
      sql/item_strfunc.cc:
        cs parameter added
      sql/mysqld.cc:
        small fix
      sql/sql_show.cc:
        strange code #ifdef-ed
      sql/sql_table.cc:
        small fix
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      a9f1388b
  7. 08 Aug, 2002 1 commit
    • unknown's avatar
      Fix after merge · 028cfaba
      unknown authored
      Updated WEEK() and DATE information in the manual.
      
      
      Docs/manual.texi:
        Updated WEEK() information.
        Added more information of how MySQL stores dates.
      libmysql/Makefile.am:
        Fix after merge
      libmysqld/lib_vio.c:
        Use new vio_blocking()
      mysql-test/r/group_by.result:
        Update results after merge
      sql/ha_innodb.cc:
        Fix after merge
      sql/lex.h:
        Fix after merge
      sql/slave.cc:
        Added missing include file
      sql/sql_base.cc:
        Added function comments
      vio/test-ssl.c:
        Fix after merge
      028cfaba
  8. 17 Jun, 2002 1 commit
    • unknown's avatar
      Removing net emulation out of embedded library · f4b014d5
      unknown authored
      include/mysql.h:
        Several structures content changed for embedded case
      include/violite.h:
        enum_vio_type extended
      libmysqld/embedded_priv.h:
        three new funcs added
      libmysqld/lib_sql.cc:
        A lot of changes on the way to excude network emulation
      libmysqld/lib_vio.c:
        vio structure changed.
        we're on the way to remove network...
      libmysqld/libmysqld.c:
        A lot of changes.
      sql/ha_myisam.cc:
        Network sending modified for embedded case.
      sql/net_pkg.cc:
        Exclude network from error sending
      sql/sql_acl.cc:
        Exclude access permissions checking in embedded case
      sql/sql_base.cc:
        Implementation of send_fields got quite different in enbedded case and now
        placed in lib_sql.cc
      sql/sql_class.cc:
        select_send::send_data for embedded case placed in lib_sql
      sql/sql_class.h:
        Extra fields added for embedded case
      sql/sql_parse.cc:
        remove this out of server
      sql/sql_show.cc:
        lots of similar changes to exclude network emulation
      sql/sql_table.cc:
        Network emulation excluded
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      f4b014d5
  9. 26 May, 2002 1 commit
  10. 02 Jan, 2002 1 commit
    • unknown's avatar
      Added macros for nice TIMESPEC usage. · f4fee3d9
      unknown authored
      Fixes for building MySQL with gcc 3.0
      Added SIGNED / UNSIGNED casts
      Fixed core dump bug in net_clear() with libmysqld.
      Back to using semaphores in query cache.
      Added 'Null' and 'Index_type' to SHOW INDEX.
      
      
      BUILD/FINISH.sh:
        Fixes for gcc 3.0
      BUILD/SETUP.sh:
        Fixes for gcc 3.0
      Docs/manual.texi:
        Changelog + SIGNED/UNSIGNED casts.
      Makefile.am:
        include BUILD scripts in source distribution.
      client/Makefile.am:
        Fixes for gcc 3.0
      client/mysql.cc:
        Cleanup
      client/mysqldump.c:
        Changed 'K' to mean 'disable-keys' instead of 'no-disabled-keys'
      client/readline.cc:
        Cleanup
      configure.in:
        Include BUILD in source distrbution
      extra/my_print_defaults.c:
        Cleanup
      include/my_global.h:
        Fix for HPUX and setrlimit.
        Portability fix.
        Added macros for nice TIMESPEC usage.
      innobase/include/dyn0dyn.h:
        Fix for AIX
      libmysql/Makefile.shared:
        Added strxmov to libmysqld
      libmysqld/examples/Makefile.am:
        Fixes for gcc 3.0
      libmysqld/lib_vio.c:
        Cleanup
      myisam/ft_dump.c:
        Portability fixes
      myisam/ftdefs.h:
        Portability fixes
      mysql-test/r/bdb.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/bigint.result:
        New test for SIGNED/UNSIGNED
      mysql-test/r/fulltext.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/heap.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/innodb.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/isam.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/key.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/myisam.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/query_cache.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/select.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/show_check.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/r/type_ranges.result:
        Cleanup results after adding 2 columns to SHOW KEYS
      mysql-test/t/bigint.test:
        New test for SIGNED/UNSIGNED
      mysql-test/t/key.test:
        New test for SIGNED/UNSIGNED
      mysql-test/t/query_cache.test:
        Test for FOUND_ROWS()
      sql-bench/crash-me.sh:
        Safety fixes
      sql/derror.cc:
        Cleanup
      sql/ha_berkeley.h:
        New test for SIGNED/UNSIGNED
      sql/ha_heap.h:
        New test for SIGNED/UNSIGNED
      sql/ha_innobase.cc:
        New test for SIGNED/UNSIGNED
      sql/ha_innobase.h:
        New test for SIGNED/UNSIGNED
      sql/ha_isam.h:
        New test for SIGNED/UNSIGNED
      sql/ha_myisam.cc:
        New test for SIGNED/UNSIGNED
      sql/ha_myisam.h:
        New test for SIGNED/UNSIGNED
      sql/handler.h:
        New test for SIGNED/UNSIGNED
      sql/item_func.cc:
        Cleanup TIMESPEC usage
      sql/item_func.h:
        Added SIGNED / UNSIGNED casts
      sql/lex.h:
        Added SIGNED / UNSIGNED casts
      sql/mysqld.cc:
        Cleanup TIMESPEC usage
      sql/net_pkg.cc:
        Cleanup
      sql/net_serv.cc:
        Fixed core dump bug in net_clear()
      sql/slave.cc:
        Cleanup
      sql/sql_cache.cc:
        Back to using semaphores
      sql/sql_cache.h:
        Back to using semaphores
      sql/sql_insert.cc:
        Cleanup TIMESPEC usage
      sql/sql_manager.cc:
        Cleanup TIMESPEC usage
      sql/sql_parse.cc:
        Cleanup
      sql/sql_repl.cc:
        Cleanup TIMESPEC usage
      sql/sql_show.cc:
        Added 'Null' and 'Index_type' to SHOW INDEX.
      sql/sql_table.cc:
        Sort keys in table in a more logical order.
      sql/sql_yacc.yy:
        Support for SIGNED/UNSIGNED casts.
      f4fee3d9
  11. 06 Dec, 2001 1 commit
    • unknown's avatar
      Update copyright · cfab46f5
      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
      cfab46f5
  12. 28 Nov, 2001 1 commit
    • unknown's avatar
      Fix for IO_CACHE. · 38da1f98
      unknown authored
      Portability fixes.
      
      
      BUILD/compile-alpha-debug:
        Update to newer version
      libmysqld/lib_vio.c:
        dbug_assert -> DBUG_ASSERT
      mysql-test/r/symlink.result:
        Update for new tests
      mysql-test/t/symlink.test:
        Update for new test format
      mysys/mf_iocache2.c:
        Fixed bug when reading in old buffer
      sql-bench/test-transactions.sh:
        Update with delete tests
      sql/mysqld.cc:
        Updates for amiga
      sql/sql_string.cc:
        Fix typo
      sql/stacktrace.c:
        Portability fix
      38da1f98
  13. 09 Oct, 2001 1 commit
    • unknown's avatar
      One should not only have to include my_net.h to work with sockets. · 1c64f355
      unknown authored
      This wrapper noew will include all the necessary, system specific files,
      which makes all normal source files much easier to write and maintain.
      Portability fixes.
      
      
      Docs/manual.texi:
        Updated upgrading from 3.23 -> 4.0
      client/mysqladmin.c:
        Portability fixes
      client/mysqlshow.c:
        Portability fixes
      extra/resolveip.c:
        Portability fixes
      include/my_global.h:
        Portability fixes
      include/my_net.h:
        One should not only have to include my_net.h to work with sockets.
        This wrapper noew will include all the necessary, system specific files,
        which makes all normal source files much easier to write and maintain.
      include/mysql_com.h:
        Portability fixes
      libmysql/net.c:
        Portability fixes
      libmysqld/lib_vio.c:
        Portability fixes
      mysql-test/r/drop.result:
        Fix crashed tests
      mysql-test/r/err000001.result:
        Fix crashed tests
      mysql-test/r/innodb.result:
        Fix crashed tests
      mysql-test/r/overflow.result:
        Fix crashed tests
      sql/net_serv.cc:
        Use new my_net.h
      vio/vio.c:
        Use new my_net.h
      vio/viosocket.c:
        Use new my_net.h
      vio/viossl.c:
        Use new my_net.h
      1c64f355
  14. 22 Sep, 2001 1 commit
    • unknown's avatar
      Added support of INSERT to MERGE tables · e7b9eabe
      unknown authored
      Fixes for embedded libary and openssl
      
      
      BUILD/compile-pentium-debug-max:
        Added --with-openssl
      acinclude.m4:
        Cleanup
      client/client_priv.h:
        Include mysql_embed.h to remove not used functions in embedded server
      client/mysql.cc:
        Don't use openssl with embedded server
      include/Makefile.am:
        Move mysql_embed.h to 'include' directory
      include/myisammrg.h:
        Added support of INSERT to MERGE tables
      include/mysql.h:
        Fixes for embedded libary and openssl
      include/mysql_com.h:
        Fixes for embedded libary and openssl
      include/mysql_embed.h:
        Fixes for embedded libary and openssl
      include/violite.h:
        Cleanup
      libmysql/libmysql.c:
        Safety
      libmysqld/examples/Makefile.am:
        Fixes for embedded libary and openssl
      libmysqld/lib_sql.cc:
        Fixes for embedded libary and openssl
      libmysqld/lib_vio.c:
        Fixes for embedded libary and openssl
      libmysqld/libmysqld.c:
        Fixes for embedded libary and openssl
      myisammrg/Makefile.am:
        Added support of INSERT to MERGE tables
      myisammrg/myrg_create.c:
        Added support of INSERT to MERGE tables
      myisammrg/myrg_open.c:
        Added support of INSERT to MERGE tables
      myisammrg/myrg_static.c:
        Added support of INSERT to MERGE tables
      mysql-test/t/union.test:
        Portability fix
      sql/Makefile.am:
        Fixes for embedded libary and openssl
      sql/gen_lex_hash.cc:
        Added support of INSERT to MERGE tables
      sql/ha_myisammrg.cc:
        Added support of INSERT to MERGE tables
      sql/handler.h:
        Added support of INSERT to MERGE tables
      sql/mini_client.cc:
        Fixes for embedded libary and openssl
      sql/net_serv.cc:
        Fixes for embedded libary and openssl
      sql/sql_show.cc:
        Cleanup
      Build-tools/Do-all-build-steps:
        Don't build openssl (Need to add proper configure test when to build ssl)
      sql/lex.h:
        Added support of INSERT to MERGE tables
      sql/sql_yacc.yy:
        Fixes for embedded libary and openssl
      e7b9eabe
  15. 13 Sep, 2001 1 commit
    • unknown's avatar
      Changed to use my_global.h · 16115af9
      unknown authored
      Fixed problem with LIKE with latin1_de
      Added parsing support of UNSIGNED LONG LONG
      
      
      Docs/manual.texi:
        Changelog
      client/client_priv.h:
        Changed to use my_global.h
      client/completion_hash.cc:
        Changed to use my_global.h
      client/errmsg.c:
        Changed to use my_global.h
      client/get_password.c:
        Changed to use my_global.h
      client/mysqldump.c:
        Changed to use my_global.h
      client/mysqlshow.c:
        Changed to use my_global.h
      client/mysqltest.c:
        Changed to use my_global.h
      client/password.c:
        Changed to use my_global.h
      client/readline.cc:
        Changed to use my_global.h
      client/sql_string.cc:
        Changed to use my_global.h
      client/thimble.cc:
        Changed to use my_global.h
      client/thread_test.c:
        Changed to use my_global.h
      dbug/dbug.c:
        Changed to use my_global.h
      dbug/dbug_analyze.c:
        Changed to use my_global.h
      dbug/example1.c:
        Changed to use my_global.h
      dbug/example2.c:
        Changed to use my_global.h
      dbug/example3.c:
        Changed to use my_global.h
      dbug/factorial.c:
        Changed to use my_global.h
      dbug/main.c:
        Changed to use my_global.h
      dbug/sanity.c:
        Changed to use my_global.h
      extra/comp_err.c:
        Changed to use my_global.h
      extra/my_print_defaults.c:
        Changed to use my_global.h
      extra/perror.c:
        Changed to use my_global.h
      extra/replace.c:
        Changed to use my_global.h
      extra/resolve_stack_dump.c:
        Changed to use my_global.h
      extra/resolveip.c:
        Changed to use my_global.h
      fs/libmysqlfs.h:
        Changed to use my_global.h
      fs/mysqlcorbafs.h:
        Changed to use my_global.h
      heap/hp_test1.c:
        Changed to use my_global.h
      include/Makefile.am:
        Changed to use my_global.h
      include/m_ctype.h:
        Changed to use my_global.h
      include/my_base.h:
        Changed to use my_global.h
      innobase/include/univ.i:
        Changed to use my_global.h
      libmysql/dll.c:
        Changed to use my_global.h
      libmysql/errmsg.c:
        Changed to use my_global.h
      libmysql/get_password.c:
        Changed to use my_global.h
      libmysql/libmysql.c:
        Changed to use my_global.h
      libmysql/net.c:
        Changed to use my_global.h
      libmysql/password.c:
        Changed to use my_global.h
      libmysqld/lib_sql.cc:
        Changed to use my_global.h
      libmysqld/lib_vio.c:
        Changed to use my_global.h
      libmysqld/libmysqld.c:
        Changed to use my_global.h
      mysql-test/mysql-test-run.sh:
        Changed to use latin1 as default character set
      mysql-test/r/ctype_latin1_de.result:
        Changed to use my_global.h
      mysql-test/r/func_like.result:
        New test
      mysql-test/t/ctype_latin1_de.test:
        Added test of part keys
      mysql-test/t/func_like.test:
        New test
      mysys/checksum.c:
        Changed to use my_global.h
      mysys/getopt.c:
        Changed to use my_global.h
      mysys/getopt1.c:
        Changed to use my_global.h
      mysys/make-conf.c:
        Changed to use my_global.h
      mysys/my_alloc.c:
        Changed to use my_global.h
      mysys/my_clock.c:
        Changed to use my_global.h
      mysys/my_compress.c:
        Changed to use my_global.h
      mysys/mysys_priv.h:
        Changed to use my_global.h
      mysys/test_charset.c:
        Changed to use my_global.h
      mysys/testhash.c:
        Changed to use my_global.h
      mysys/thr_alarm.c:
        Changed to use my_global.h
      mysys/thr_mutex.c:
        Changed to use my_global.h
      regex/debug.c:
        Changed to use my_global.h
      regex/main.c:
        Changed to use my_global.h
      regex/regcomp.c:
        Changed to use my_global.h
      regex/regerror.c:
        Changed to use my_global.h
      regex/regexec.c:
        Changed to use my_global.h
      regex/regexp.c:
        Changed to use my_global.h
      regex/regfree.c:
        Changed to use my_global.h
      regex/reginit.c:
        Changed to use my_global.h
      sql/cache_manager.cc:
        Changed to use my_global.h
      sql/gen_lex_hash.cc:
        Changed to use my_global.h
      sql/ha_berkeley.cc:
        Fixed problem with UNIQUE keys that could contain NULL
      sql/ha_gemini.h:
        Changed to use my_global.h
      sql/handler.cc:
        Fixed problem after merge
      sql/item.cc:
        Added Item_unit
      sql/item.h:
        Added Item_uint
      sql/matherr.c:
        Changed to use my_global.h
      sql/md5.c:
        Changed to use my_global.h
      sql/mini_client.cc:
        Changed to use my_global.h
      sql/my_lock.c:
        Changed to use my_global.h
      sql/mysql_priv.h:
        Changed to use my_global.h
      sql/net_serv.cc:
        Changed to use my_global.h
      sql/password.c:
        Changed to use my_global.h
      sql/sql_lex.cc:
        Added parsing support of UNSIGNED LONG LONG
      sql/sql_show.cc:
        Changed to use my_global.h
      sql/sql_string.cc:
        Changed to use my_global.h
      sql/sql_yacc.yy:
        Added usage of Int_uint
      sql/stacktrace.c:
        Changed to use my_global.h
      sql/udf_example.cc:
        Changed to use my_global.h
      strings/atof.c:
        Changed to use my_global.h
      strings/bchange.c:
        Changed to use my_global.h
      strings/bcmp.c:
        Changed to use my_global.h
      strings/bfill.c:
        Changed to use my_global.h
      strings/bmove.c:
        Changed to use my_global.h
      strings/bmove512.c:
        Changed to use my_global.h
      strings/bmove_upp.c:
        Changed to use my_global.h
      strings/ctype-big5.c:
        Changed to use my_global.h
      strings/ctype-czech.c:
        Changed to use my_global.h
      strings/ctype-euc_kr.c:
        Changed to use my_global.h
      strings/ctype-gb2312.c:
        Changed to use my_global.h
      strings/ctype-gbk.c:
        Changed to use my_global.h
      strings/ctype-latin1_de.c:
        Fixed problem with LIKE
      strings/ctype-sjis.c:
        Changed to use my_global.h
      strings/ctype-tis620.c:
        Changed to use my_global.h
      strings/ctype-ujis.c:
        Changed to use my_global.h
      strings/ctype.c:
        Changed to use my_global.h
      strings/do_ctype.c:
        Changed to use my_global.h
      strings/int2str.c:
        Changed to use my_global.h
      strings/is_prefix.c:
        Changed to use my_global.h
      strings/llstr.c:
        Changed to use my_global.h
      strings/longlong2str.c:
        Changed to use my_global.h
      strings/r_strinstr.c:
        Changed to use my_global.h
      strings/str2int.c:
        Changed to use my_global.h
      strings/str_test.c:
        Changed to use my_global.h
      strings/strappend.c:
        Changed to use my_global.h
      strings/strcend.c:
        Changed to use my_global.h
      strings/strcont.c:
        Changed to use my_global.h
      strings/strend.c:
        Changed to use my_global.h
      strings/strfill.c:
        Changed to use my_global.h
      strings/strings-not-used.h:
        Changed to use my_global.h
      strings/strinstr.c:
        Changed to use my_global.h
      strings/strmake.c:
        Changed to use my_global.h
      strings/strmov.c:
        Changed to use my_global.h
      strings/strnlen.c:
        Changed to use my_global.h
      strings/strnmov.c:
        Changed to use my_global.h
      strings/strstr.c:
        Changed to use my_global.h
      strings/strto.c:
        Changed to use my_global.h
      strings/strtol.c:
        Changed to use my_global.h
      strings/strtoll.c:
        Changed to use my_global.h
      strings/strtoul.c:
        Changed to use my_global.h
      strings/strtoull.c:
        Changed to use my_global.h
      strings/strxmov.c:
        Changed to use my_global.h
      strings/strxnmov.c:
        Changed to use my_global.h
      strings/udiv.c:
        Changed to use my_global.h
      tools/mysqlmanager.c:
        Changed to use my_global.h
      vio/test-ssl.c:
        Changed to use my_global.h
      vio/test-sslclient.c:
        Changed to use my_global.h
      vio/test-sslserver.c:
        Changed to use my_global.h
      vio/test-ssl:
        Changed to use my_global.h
      vio/vio.c:
        Changed to use my_global.h
      vio/viosocket.c:
        Changed to use my_global.h
      vio/viossl.c:
        Changed to use my_global.h
      vio/viosslfactories.c:
        Changed to use my_global.h
      vio/viotest-ssl.c:
        Changed to use my_global.h
      16115af9
  16. 24 Jun, 2001 1 commit
    • unknown's avatar
      Fixed bug in multi-table-delete code · a96e1b69
      unknown authored
      client/mysqltest.c:
        Added --big-test argument
      libmysqld/lib_sql.cc:
        Reset error messages before new query.
      libmysqld/lib_vio.c:
        Fixed reading of results.
      mysql-test/mysql-test-run.sh:
        Added option --big
      mysql-test/r/multi_update.result:
        More multi-delete tests
      mysql-test/t/bdb-crash.test:
        Added missing test if BDB is supported
      mysql-test/t/multi_update.test:
        More multi-delete tests
      a96e1b69
  17. 15 Jun, 2001 1 commit
    • unknown's avatar
      Fixed multi-table-delete · e96fcbcf
      unknown authored
      Optimize fixed length MyISAM rows to use pread/pwrite.
      
      
      BUILD/compile-pentium-debug-max:
        Also build embedded server
      libmysqld/lib_vio.c:
        Add vio_poll_read()
      myisam/mi_statrec.c:
        Use pread()/pwrite() instead of seek+read/write
      mysql-test/r/multi_update.result:
        Fix multi-table-delete test
      mysql-test/t/multi_update.test:
        Fix multi-table-delete test
      sql/filesort.cc:
        Fix multi-table-delete
      sql/mysql_priv.h:
        Fix multi-table-delete
      sql/sql_class.h:
        Fix multi-table-delete
      sql/sql_delete.cc:
        Fix multi-table-delete
      sql/sql_parse.cc:
        Fix multi-table-delete
      sql/sql_select.cc:
        Fix multi-table-delete
      sql/sql_table.cc:
        cleanup
      sql/sql_unions.cc:
        cleanup
      sql/sql_yacc.yy:
        cleanup/ optimize
      sql/structs.h:
        Fix multi-table-delete
      sql/uniques.cc:
        Fix multi-table-delete
      e96fcbcf
  18. 24 Apr, 2001 1 commit
    • unknown's avatar
      Fixes for embedded MySQL · dbd56fcd
      unknown authored
      Some limit optimization
      
      
      BitKeeper/deleted/.del-ib_config.h.in~9e57db8504e55b7:
        Delete: innobase/ib_config.h.in
      BitKeeper/deleted/.del-ib_config.h~7539e26ffc614439:
        Delete: innobase/ib_config.h
      client/errmsg.c:
        Moved error messages from libmysqld/
      client/mysql.cc:
        Removed warnings
      include/errmsg.h:
        New info for embedded versions
      include/mysql_com.h:
        Fixes for embedded MySQL
      libmysql/errmsg.c:
        Fixes for embedded MySQL
      libmysqld/Makefile.am:
        Added HANDLER code
      libmysqld/lib_sql.cc:
        Fixes for embedded MySQL
      libmysqld/lib_vio.c:
        Fixes for embedded MySQL
      BitKeeper/etc/ignore:
        Added libmysqld/sql_handler.cc to the ignore list
      libmysqld/libmysqld.c:
        Fixes for embedded MySQL
      mysql-test/r/null_key.result:
        Fixed result for 4.0
      sql/net_serv.cc:
        Fixes for embedded MySQL
      sql/sql_parse.cc:
        Fixes for embedded MySQL where the query could be a const char*
      sql/sql_select.cc:
        Added limit optimization
      sql/sql_select.h:
        Added limit optimization
      dbd56fcd
  19. 11 Apr, 2001 1 commit
    • unknown's avatar
      Added all changes from old 4.0 version: · 8dd2e5b8
      unknown authored
      PSTACK, libmysqld and MySQL filesystem
      UPDATE ... ORDER BY
      DELETE ... ORDER BY
      New faster fulltext handling
      Faster compressed keys
      
      
      
      Makefile.am:
        Added support for pstack and libmysqld_dir
      acconfig.h:
        MySQL filesystem and PSTACK
      acinclude.m4:
        MySQL File system
      client/mysql.cc:
        Support for --xml
      configure.in:
        Pstack, MySQL FS and libmysqld_dir
      include/ft_global.h:
        Faster fulltext
      include/my_pthread.h:
        Made c++ safe
      include/myisam.h:
        Update for faster fulltext
      include/mysql_com.h:
        new my_net_read()
      include/violite.h:
        libmysqld
      libmysql/net.c:
        New protocol that supports big packets
      myisam/Makefile.am:
        Faster fulltext
      myisam/ft_parser.c:
        Faster fulltext
      myisam/ft_search.c:
        Faster fulltext
      myisam/ft_update.c:
        Faster fulltext
      myisam/ftdefs.h:
        Faster fulltext
      myisam/mi_check.c:
        Faster fulltext
      myisam/mi_open.c:
        Faster compressed keys
      myisam/mi_search.c:
        Faster compressed keys
      myisam/mi_update.c:
        Faster compressed keys
      myisam/myisamdef.h:
        Faster compressed keys
      myisam/sort.c:
        Faster compressed keys
      mysql-test/mysql-test-run.sh:
        --skip-innobase and --skip-bdb
      sql/ChangeLog:
        Changelog
      sql/Makefile.am:
        PSTACK
      sql/mysql_priv.h:
        New ORDER BY options and libmysqld
      sql/mysqld.cc:
        PSTACK
      sql/net_serv.cc:
        New protocol that supports big packets
      sql/share/estonian/errmsg.txt:
        New error messages
      sql/sql_base.cc:
        Better list_open_tabels
      sql/sql_delete.cc:
        ORDER BY for delete
      sql/sql_lex.cc:
        Added language convertation of all strings
      sql/sql_parse.cc:
        Changes for libmysqld
        Use new ORDER BY options
      sql/sql_show.cc:
        Character set convertations
        Use new list_open_tables function.
      sql/sql_update.cc:
        UPDATE ... ORDER BY
      sql/sql_yacc.yy:
        Clean up symbol definitions
        DELETE .. ORDER BY
        UPDATE .. ORDER BY
      sql/table.h:
        new OPEN_TABLE_LIST structure
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      8dd2e5b8