An error occurred fetching the project authors.
  1. 04 Dec, 2002 1 commit
    • unknown's avatar
      Fixed 'stack direction' check in autoconf · 6456d593
      unknown authored
      Workaround for problem with autconf 2.53 on Solaris
      (Fixes problem with SOCKET_SIZE_TYPE)
      
      
      BUILD/compile-solaris-sparc:
        Removed non standard compiler options
      BUILD/compile-solaris-sparc-purify:
        Removed non standard compiler options
      acinclude.m4:
        Fixed 'stack direction' check.
        Workaround for problem with autconf 2.53 on Solaris
        (Fixes problem with SOCKET_SIZE_TYPE)
      6456d593
  2. 17 Nov, 2002 1 commit
    • unknown's avatar
      - Applied required modifications for automake 1.5 · 2ef5ec31
      unknown authored
       - "make distcheck" needs to be fixed
      
      
      BitKeeper/etc/ignore:
        Added autom4te.cache/output.0 autom4te.cache/requests autom4te.cache/traces.0 bdb/dist/autom4te.cache/output.0 bdb/dist/autom4te.cache/requests bdb/dist/autom4te.cache/traces.0 innobase/autom4te.cache/output.0 innobase/autom4te.cache/requests innobase/autom4te.cache/traces.0 to the ignore list
      acinclude.m4:
         - removed libtool.m4 (is part of libtool 1.4)
      config.guess:
         - applied diffs from config.guess of automake 1.5
      config.sub:
         - applied diffs from config.sub of automake 1.5
      configure.in:
         - renamed "AM_PROG_LIBTOOL" -> "AC_PROG_LIBTOOL"
         - added "AM_PROG_AS" for automake 1.5
      dbug/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      extra/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      heap/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      install-sh:
         - applied diffs from install.sh of automake 1.5
      isam/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      libmysql_r/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      ltconfig:
         - small correction for new libtool
      ltmain.sh:
         - applied diffs from ltmain.sh of libtool 1.4.2
      merge/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      missing:
         - applied diffs from missing of automake 1.5
      myisam/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      myisammrg/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      mysys/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
         - added $(EXEEXT) to test_charset
      regex/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      sql/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      strings/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
         - removed @CHARSET_SRCS@
      vio/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      2ef5ec31
  3. 29 Oct, 2002 1 commit
    • unknown's avatar
      Added back old LARGEFILE handling · ea3ffb9b
      unknown authored
      Fixed reference to freed memory in acl_init()/grant_init()
      Fixed possible memory leak. (Could only happen in very strange circumstances)
      Fixed bug in ALTER TABLE with BDB tables
      Updated mysql-test for valgrind
      
      
      Docs/manual.texi:
        ChangeLog
      acinclude.m4:
        Added back old LARGEFILE handling.
        (Needed to get MySQL to compile on Solaris 2.9 with gcc 3.x)
      configure.in:
        Added back old LARGEFILE handling.
        (Needed to get MySQL to compile on Solaris 2.9 with gcc 3.x)
      libmysqld/lib_sql.cc:
        Fixed reference to freed memory
      mysql-test/mysql-test-run.sh:
        Added option --valgrind
      mysys/Makefile.am:
        Removed warning when doing make
      sql/mysqld.cc:
        Free regexp memory on shutdown.
        read 'des' key files from data directory
        Fixed reference to freed memory in grant_init()
      sql/slave.cc:
        Fixed wrong printf() argument
      sql/sql_acl.cc:
        Fixed reference to freed memory
      sql/sql_acl.h:
        Fixed reference to freed memory
      sql/sql_base.cc:
        Fixed possible memory leak. (Could only happen in very strange circumstances)
      sql/sql_parse.cc:
        Updated arguments to grant_reload()
      sql/sql_table.cc:
        Fixed bug in ALTER TABLE with BDB tables
      sql/sql_yacc.yy:
        memset -> bzero
      ea3ffb9b
  4. 16 Oct, 2002 1 commit
    • unknown's avatar
      Fixes after last merge. · 320d4912
      unknown authored
      Ignore changed keyblocks when on does DELETE FROM table_name;
      
      
      acinclude.m4:
        Don't give warnings when using openssl installed in /usr/include with gcc 3.x
      myisam/mi_delete_all.c:
        Ignore changed keyblocks when on does DELETE FROM table_name;
      mysql-test/r/null_key.result:
        Fix null test
      sql/ha_innodb.cc:
        Fix bug in last merge
      sql/sql_parse.cc:
        Fix bug introduced with merge
      320d4912
  5. 01 Oct, 2002 1 commit
    • unknown's avatar
      - Applied required modifications for automake 1.5 · 9311345e
      unknown authored
       - some additional small fixes
       - added "depcomp" for automake 1.5
      
      
      acinclude.m4:
         - Removed AC_SYS_LARGEFILE (is in autoconf since v2.50)
      config.guess:
         - applied diffs from config.guess of automake 1.5
      config.sub:
         - applied diffs from config.sub of automake 1.5
      configure.in:
         - adapted for automake 1.5
         - added AM_PROG_AS
         - replaced MYSQL_SYS_LARGEFILE with AC_SYS_LARGEFILE (is in
           autoconf since v2.50)
      dbug/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      extra/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      heap/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      include/my_global.h:
         - fix for PPC64
      install-sh:
         - applied diffs from install-sh of automake 1.5
      isam/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      libmysql_r/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      libmysqld/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      ltconfig:
         - small correction for new libtool
      ltmain.sh:
         - applied diffs from ltmain.sh of libtool 1.4.2
      merge/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      missing:
         - applied diffs from missing of automake 1.5
      myisam/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      myisammrg/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      mysys/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      regex/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      sql/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      strings/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      tools/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      vio/Makefile.am:
         - removed OMIT_DEPENDENCIES to make automake 1.5 happy
      9311345e
  6. 27 Sep, 2002 1 commit
  7. 05 Sep, 2002 1 commit
    • unknown's avatar
      Fixed searching after ssl directories. · 8f2482d2
      unknown authored
      Fixed that GRANT ... REQUIRE options are not forgot when doing new GRANT
      Changed fn_ext to point at first '.' after directory.
      FLUSH LOGS removed numerical extension for all future update logs.
      Fixed the mysqld --help reports right values for --datadir and --bind-address
      --log-binary=a.b.c now properly strips of .b.c
      Fix that one can DROP UDF functions that was not loaded at startup
      Made AND optional in REQUIRE
      Added REQUIRE NONE
      
      
      BitKeeper/deleted/.del-CodingStyle~1ba7ff62d4cd0ea:
        Delete: vio/docs/CodingStyle
      BitKeeper/deleted/.del-COPYING.dbug~ca0c017a4d7e8609:
        Delete: vio/docs/COPYING.dbug
      BitKeeper/deleted/.del-COPYING.mysql~471498c82977cd3a:
        Delete: vio/docs/COPYING.mysql
      BitKeeper/deleted/.del-README~947354991dc882f8:
        Delete: vio/docs/README
      Docs/manual.texi:
        Changelog
      acinclude.m4:
        Fixed searching after ssl directories.
      client/Makefile.am:
        Moved openssl include to avoid problem with installed readline
      include/Makefile.am:
        Install my_global.h
      include/violite.h:
        Fixed that GRANT ... REQUIRE options are not forgot when doing new grant
      libmysqld/examples/Makefile.am:
        Moved openssl include to avoid problem with installed readline
      mysql-test/mysql-test-run.sh:
        Improved 'which' handling to give error if command is not found
      mysys/mf_fn_ext.c:
        Changed fn_ext to point at first '.' after directory.
      sql/Makefile.am:
        More comments
      sql/lex.h:
        Added NONE as keyword
      sql/log.cc:
        FLUSH LOGS removed numerical extension for all future update logs.
        Simple code cleanup
      sql/mysqld.cc:
        Fixed the --help reports right values for --datadir and --bind-address
        --log-binary=a.b.c now properly strips of .b.c
        Removed option --skip-external-locking (not needed as this is automatic)
      sql/repl_failsafe.cc:
        Moved some common THD initalization to store_globals()
      sql/slave.cc:
        Moved openssl include to avoid problem with installed readline
      sql/sql_acl.cc:
        Moved openssl include to avoid problem with installed readline
      sql/sql_acl.h:
        Updated function prototypes
      sql/sql_base.cc:
        Added comment
      sql/sql_class.cc:
        Moved openssl include to avoid problem with installed readline.
        Changed THD::thd to make things work for main thread.
      sql/sql_class.h:
        Fixed wrongly removed line (fixes compiler problem on MacOSX)
      sql/sql_insert.cc:
        Moved openssl include to avoid problem with installed readline
      sql/sql_lex.cc:
        Moved save_to_cache_query=0 to udf detection function to make sql_yacc.yy simpler
      sql/sql_lex.h:
        Indentation cleanup
      sql/sql_parse.cc:
        Moved openssl include to avoid problem with installed readline.
        Added THD argument to acl_reload()
      sql/sql_repl.h:
        Made opt_bin_logname static
      sql/sql_udf.cc:
        Fix that one can DROP UDF functions that was not loaded at startup
      sql/sql_yacc.yy:
        made AND optional in REQUIRE
        Added REQUIRE NONE
        Fixed that old SSL options are not forgotten when doing new GRANT.
      sql/udf_example.cc:
        Improved comments
      8f2482d2
  8. 30 Jun, 2002 1 commit
    • unknown's avatar
      Update for running gcc 3.x (mainly on HPUX) · a86390f0
      unknown authored
      Portability fixes for HPUX
      Rename of CHECK_LOCK to IS_FREE_LOCK
      Apply lower_case_table_names also to databases
      Cleanup of describe code
      Don't allow \ in database names
      
      
      Build-tools/Do-compile:
        Added option --make-options
      Docs/manual.texi:
        Changelog
        Added XOR, ^ and IS_FREE_LOCK() descriptions
      acinclude.m4:
        Update for running gcc 3.x on HPUX
      client/mysql.cc:
        Portability fix
      client/mysqlbinlog.cc:
        Fix for using gcc 3.1
      configure.in:
        Fix for using gcc 3.1
      include/my_global.h:
        Fix for using gcc 3.1
      include/my_pthread.h:
        Removed warning on HPUX
      innobase/configure.in:
        Portability fix (for gcc 3.1 on HPUX)
      innobase/ut/ut0ut.c:
        Portability fix (for gcc 3.1 on HPUX)
      mysql-test/r/func_test.result:
        Test of new functions
      mysql-test/r/rpl_get_lock.result:
        Test of new functions
      mysql-test/t/func_test.test:
        Test of new functions
      mysql-test/t/rpl_get_lock.test:
        Test of new functions
      mysys/my_tempnam.c:
        Portability fix
      sql/item_cmpfunc.cc:
        Added comments to Item_cond_xor.
        Fixed NULL handling for XOR
      sql/item_create.cc:
        rename of CHECK_LOCK to IS_FREE_LOCK
      sql/item_create.h:
        rename of CHECK_LOCK to IS_FREE_LOCK
      sql/item_func.cc:
        Cleanup XOR handling
      sql/item_func.h:
        rename of CHECK_LOCK to IS_FREE_LOCK
      sql/lex.h:
        rename of CHECK_LOCK to IS_FREE_LOCK
      sql/mysqld.cc:
        Moved chroot() to be exectued earlier.
      sql/sql_db.cc:
        Apply lower_case_table_names also to databases
      sql/sql_parse.cc:
        Apply lower_case_table_names also to databases
      sql/sql_select.cc:
        Cleanup describe code (after Sinisa's patch for EXPLAIN + UNION)
      sql/table.cc:
        Don't allow \ in database names
      a86390f0
  9. 12 May, 2002 1 commit
  10. 02 Apr, 2002 1 commit
    • unknown's avatar
      Cleanups · c95270b8
      unknown authored
      Don't use DBUG library for struct st_my_thread_var to make code less complicated.
      
      
      Docs/manual.texi:
        Cleanup
      acinclude.m4:
        Search after openssl in /usr/local
      client/mysql.cc:
        Fix prompt
      client/mysqladmin.c:
        Cleanup
      client/mysqltest.c:
        Cleanup
      include/my_pthread.h:
        Move thread variables to the right location
      include/my_sys.h:
        Move thread variables to the right location
      include/mysql.h:
        Clean up client prototypes
      libmysql/libmysql.c:
        Clean up client prototypes
      mysys/my_static.h:
        Cleanup
      mysys/my_thr_init.c:
        Don't use DBUG library for struct st_my_thread_var to make code less complicated
      sql/item_cmpfunc.cc:
        Small optimization
      sql/net_pkg.cc:
        Cleanup
      sql/sql_parse.cc:
        Allow VARCHAR(0)
      c95270b8
  11. 06 Mar, 2002 1 commit
    • unknown's avatar
      Fix for --enable-local-infile · c13baf70
      unknown authored
      Docs/manual.texi:
        Changelog
      acinclude.m4:
        Cleanup --help output
      libmysql/libmysql.c:
        Fix for reading option groups in client
      c13baf70
  12. 07 Feb, 2002 1 commit
    • unknown's avatar
      Update to autoconf 2.52 · 3942e445
      unknown authored
      Fix of InnoDB variables in SHOW VARIABLES
      Fix for ALTER TABLE and InnoDB
      
      
      BUILD/FINISH.sh:
        Update to autoconf 2.52
      BUILD/SETUP.sh:
        Update to autoconf 2.52
      BUILD/compile-alpha:
        Update to autoconf 2.52
      BUILD/compile-pentium-gcov:
        Update to autoconf 2.52
      BUILD/compile-pentium-gprof:
        Update to autoconf 2.52
      BUILD/compile-pentium:
        Update to autoconf 2.52
      Docs/manual.texi:
        Changelog
      acconfig.h:
        Update to autoconf 2.52
      acinclude.m4:
        Update to autoconf 2.52
      bdb/dist/configure.in:
        Update to autoconf 2.52
      client/Makefile.am:
        Update to autoconf 2.52
      configure.in:
        Update to autoconf 2.52
      mysql-test/r/innodb.result:
        Update of InnoDB Cardinality values
      mysys/Makefile.am:
        Update to autoconf 2.52
      scripts/Makefile.am:
        Update to autoconf 2.52
      sql/ha_innobase.cc:
        Fix of InnoDB variables in SHOW VARIABLES
      sql/ha_innobase.h:
        Fix of InnoDB variables in SHOW VARIABLES
      sql/sql_table.cc:
        Fix for ALTER TABLE and InnoDB
      support-files/my-huge.cnf.sh:
        Fixed typo
      support-files/my-large.cnf.sh:
        Fixed typo
      support-files/my-medium.cnf.sh:
        Fixed typo
      support-files/my-small.cnf.sh:
        Fixed typo
      3942e445
  13. 25 Jan, 2002 1 commit
    • unknown's avatar
      Update needed for SuSE 7.3 · 48ff048f
      unknown authored
      Update for autoconf 2.52
      
      
      BitKeeper/deleted/.del-compile-pentium-symbols~b1b0f0b465eb15b8:
        Delete: BUILD/compile-pentium-symbols
      BUILD/Makefile.am:
        Remove not used scripts
      BUILD/SETUP.sh:
        Update needed for SuSE 7.3
      BUILD/compile-alpha:
        Update needed for SuSE 7.3
      BUILD/compile-pentium-debug-no-bdb:
        Update needed for SuSE 7.3
      BUILD/compile-pentium-gcov:
        Update needed for SuSE 7.3
      BUILD/compile-pentium-gprof:
        Update needed for SuSE 7.3
      BUILD/compile-pentium-mysqlfs-debug:
        Update needed for SuSE 7.3
      BUILD/compile-pentium:
        Update needed for SuSE 7.3
      Docs/manual.texi:
        changelog
      Docs/mysqld_error.txt:
        New error messages.
      acconfig.h:
        Update to autoconf 2.52
      acinclude.m4:
        Update to autoconf 2.52
      bdb/dist/configure.in:
        Update to autoconf 2.52
      configure.in:
        Update to autoconf 2.52
      myisam/mi_check.c:
        Fix for myisamchk bug when reparing table with many keys.
      myisam/mi_key.c:
        Fix problem with NAN in key's
      scripts/Makefile.am:
        Fix for autoconf 2.52
      scripts/mysql_new_fix_privilege_tables.sh:
        cleanup
      48ff048f
  14. 07 Nov, 2001 1 commit
    • unknown's avatar
      Portability fix. · 1ed1ec4c
      unknown authored
      Fixed linking problem with InnoDB.
      
      
      BUILD/compile-alpha-cxx:
        Fix for using innodb
      acinclude.m4:
        Fix problem with linking mysqld after Heikkis last changes.
      client/mysql.cc:
        Fixed linking problem
      client/mysqlmanager-pwgen.c:
        Portability fix
      innobase/que/que0que.c:
        Removed some blanks
      myisam/ft_boolean_search.c:
        Portability fix
      myisam/sort.c:
        Portability fix
      mysys/queues.c:
        Portability fix
      strings/ctype-latin1_de.c:
        Portability fix
      tools/mysqlmanager.c:
        Portability fix
      1ed1ec4c
  15. 03 Nov, 2001 1 commit
    • unknown's avatar
      Added STDCALL to mysql_sever and mysql_thread variables · 8b91ed2c
      unknown authored
      Merged error messages with 3.23.44
      Fixed bug with DATA DIRECTORY on windows
      
      
      Docs/internals.texi:
        Update coding policies
      Docs/manual.texi:
        Minor general corrections
      acinclude.m4:
        Fixed wrong cpu-test
      configure.in:
        Remove CPU test, because this makes unportable binaries.
      include/mysql.h:
        Added STDCALL to mysql_sever and mysql_thread variables
      include/mysqld_error.h:
        Merged error messages with 3.23.44
      libmysql/libmysql.c:
        Added STDCALL to mysql_sever and mysql_thread variables
      libmysqld/lib_sql.cc:
        Added STDCALL to mysql_sever and mysql_thread variables
      sql-bench/limits/db2.cfg:
        New limits file
      sql-bench/test-select.sh:
        Fixed bug in cache test
      sql/share/czech/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/danish/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/dutch/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/english/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/estonian/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/french/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/german/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/greek/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/hungarian/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/italian/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/japanese/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/korean/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/norwegian-ny/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/norwegian/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/polish/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/portuguese/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/romanian/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/russian/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/slovak/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/spanish/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/swedish/errmsg.txt:
        Merged error messages with 3.23.44
      sql/share/ukrainian/errmsg.txt:
        Merged error messages with 3.23.44
      sql/sql_parse.cc:
        Fix bug with DATA DIRECTORY on windows.
      sql/sql_select.cc:
        Cleanup
      8b91ed2c
  16. 30 Oct, 2001 1 commit
  17. 19 Oct, 2001 1 commit
  18. 09 Oct, 2001 2 commits
    • unknown's avatar
      Remved Gemini code. · 8cbba405
      unknown authored
      BitKeeper/deleted/.del-ha_gemini.cc~5d72172d33b00c6:
        Delete: sql/ha_gemini.cc
      BitKeeper/deleted/.del-ha_gemini.h~4dfccf1929195747:
        Delete: sql/ha_gemini.h
      BitKeeper/deleted/.del-gemini.result~89b4f9cced8dfc2f:
        Delete: mysql-test/r/gemini.result
      BitKeeper/deleted/.del-gemini.test~51d0362310e55e17:
        Delete: mysql-test/t/gemini.test
      BitKeeper/deleted/.del-have_gemini.inc~42f94f0dfd0f7b18:
        Delete: mysql-test/include/have_gemini.inc
      BitKeeper/deleted/.del-have_gemini.require~206702c48b2e206b:
        Delete: mysql-test/r/have_gemini.require
      BitKeeper/deleted/.del-gemini.dat~a73393a88b124b9f:
        Delete: mysql-test/std_data/gemini.dat
      BitKeeper/deleted/.del-isolation.test~6a39e4138dd4a456:
        Delete: mysql-test/t/isolation.test
      BitKeeper/deleted/.del-isolation.result~4da11e109a3d93a9:
        Delete: mysql-test/r/isolation.result
      acinclude.m4:
        Remved gemini code.
      configure.in:
        Remved gemini code.
      libmysql/libmysql.c:
        Remved gemini code.
      mysql-test/install_test_db.sh:
        Remved gemini code.
      scripts/mysql_install_db.sh:
        Remved gemini code.
      sql/Makefile.am:
        Remved gemini code.
      sql/field.cc:
        Remved gemini code.
      sql/field.h:
        Remved gemini code.
      sql/handler.cc:
        Remved gemini code.
      sql/handler.h:
        Remved gemini code.
      sql/lex.h:
        Remved gemini code.
      sql/mysqld.cc:
        Remved gemini code.
      sql/sql_base.cc:
        Remved gemini code.
      sql/sql_class.cc:
        Remved gemini code.
      sql/sql_class.h:
        Remved gemini code.
      sql/sql_lex.h:
        Remved gemini code.
      sql/sql_parse.cc:
        Remved gemini code.
      sql/sql_rename.cc:
        Remved gemini code.
      sql/sql_table.cc:
        Remved gemini code.
      sql/sql_yacc.yy:
        Remved gemini code.
      8cbba405
    • unknown's avatar
      Add --without-isam configure switch. · 0cbaff7b
      unknown authored
      Portability fix for mysqlmanager.
      
      
      acconfig.h:
        Add HAVE_ISAM
      acinclude.m4:
        Add --without-isam configure switch.
      configure.in:
        Add --without-isam configure switch.
      include/my_global.h:
        remove #define HAVE_ISAM
      libmysqld/examples/test-run:
        pass --language option to embedded server
      sql/Makefile.am:
        use @isam_libs@ instead of hard-coded values
      tools/mysqlmanager.c:
        #include <signal.h> for portability
      0cbaff7b
  19. 08 Oct, 2001 1 commit
    • unknown's avatar
      Updated manual about embedded version. · cef1d752
      unknown authored
      Speed up column-completion in 'mysql'
      Don't use ISAM if HAVE_ISAM is not defined
      A lot of fixes for the embedded version.  All libraries are now included in libmysqld.a
      Changed arguments to convert_dirname() to make it more general.
      Renamed files in the 'merge' directory to all use a common prefix.
      Don't compile both assembler and C functions on x86
      
      
      BitKeeper/deleted/.del-mf_pack2.c~f07795bbcf57be7:
        Delete: mysys/mf_pack2.c
      Docs/manual.texi:
        Updated chapter about embedded version
      acinclude.m4:
        Fix for using BDB and InnoDB with embedded
      client/completion_hash.cc:
        Speed up memory allocation
      client/completion_hash.h:
        Speed up memory allocation
      client/mysql.cc:
        Speed up memory allocation
      client/mysqldump.c:
        Fix to use now convert_dirname
      client/mysqltest.c:
        Fixed memory allocation bugs.
        Added --basedir=#, --compress=#, --server-arg, --server-file.
        Fixes for embedded version
        Changed silent mode to -s instead of -q
      include/my_global.h:
        Update to use HAVE_ISAM
      include/my_sys.h:
        Cleanup of fn_format()
      include/mysql.h:
        Prepare FIELD struct for 4.1
      include/mysql_embed.h:
        Don't use ISAM in embedded version
      innobase/include/srv0srv.h:
        Make InnoDB startup/shutdown silent in embedded version
      innobase/log/log0log.c:
        Make InnoDB startup/shutdown silent in embedded version
      innobase/srv/srv0srv.c:
        Make InnoDB startup/shutdown silent in embedded version
      innobase/srv/srv0start.c:
        Make InnoDB startup/shutdown silent in embedded version
      isam/isamlog.c:
        new convert_dirname
      libmysql/libmysql.c:
        Prepare for 4.1
      libmysqld/Makefile.am:
        Changed to create one libmysqld.a file that includes all other libraries.
      libmysqld/examples/Makefile.am:
        Changed to use new libmysqld.a
      libmysqld/examples/test-run:
        Lot's of fixes to get new mysqltest with embedded MySQL to work.
      libmysqld/lib_sql.cc:
        Changed type of arguments for mysql_server_init() to make code more portable.
      libmysqld/libmysqld.c:
        Cleanup
      merge/Makefile.am:
        Rename to use common prefix.
      merge/mrg_close.c:
        Rename to use common prefix.
      merge/mrg_create.c:
        Rename to use common prefix.
      merge/mrg_def.h:
        Rename to use common prefix.
      merge/mrg_delete.c:
        Rename to use common prefix.
      merge/mrg_extra.c:
        Rename to use common prefix.
      merge/mrg_info.c:
        Rename to use common prefix.
      merge/mrg_locking.c:
        Rename to use common prefix.
      merge/mrg_open.c:
        Rename to use common prefix.
      merge/mrg_panic.c:
        Rename to use common prefix.
      merge/mrg_rrnd.c:
        Rename to use common prefix.
      merge/mrg_rsame.c:
        Rename to use common prefix.
      merge/mrg_static.c:
        Rename to use common prefix.
      merge/mrg_update.c:
        Rename to use common prefix.
      myisam/myisamlog.c:
        Use new convert_dirname
      myisammrg/Makefile.am:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_close.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_create.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_def.h:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_delete.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_extra.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_info.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_locking.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_open.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_panic.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_queue.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_rfirst.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_rkey.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_rlast.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_rnext.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_rprev.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_rrnd.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_rsame.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_static.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_update.c:
        Renamed mymrgdef.h -> myrg_def.h
      myisammrg/myrg_write.c:
        Renamed mymrgdef.h -> myrg_def.h
      mysql-test/include/master-slave.inc:
        Use short filenames for sockets (portability problem on Mac OS X)
      mysql-test/mysql-test-run.sh:
        cleanup
      mysql-test/r/auto_increment.result:
        Cleanup of tests for embedded version
      mysql-test/r/func_system.result:
        Cleanup of tests for embedded version
      mysql-test/r/isam.result:
        Cleanup of tests for embedded version
      mysql-test/r/lock.result:
        Cleanup of tests for embedded version
      mysql-test/r/show_check.result:
        Cleanup of tests for embedded version
      mysql-test/t/auto_increment.test:
        Cleanup of tests for embedded version
      mysql-test/t/backup.test:
        Cleanup of tests for embedded version
      mysql-test/t/count_distinct2-master.opt:
        Cleanup of tests for embedded version
      mysql-test/t/count_distinct2.test:
        Cleanup of tests for embedded version
      mysql-test/t/create.test:
        Cleanup of tests for embedded version
      mysql-test/t/flush.test:
        Cleanup of tests for embedded version
      mysql-test/t/func_system.test:
        Cleanup of tests for embedded version
      mysql-test/t/isam.test:
        Cleanup of tests for embedded version
      mysql-test/t/kill.test:
        Cleanup of tests for embedded version
      mysql-test/t/lock.test:
        Cleanup of tests for embedded version
      mysql-test/t/order_fill_sortbuf-master.opt:
        Cleanup of tests for embedded version
      mysql-test/t/rpl000015.test:
        Use short filenames for sockets (portability problem on Mac OS X)
      mysql-test/t/rpl000016.test:
        Use short filenames for sockets (portability problem on Mac OS X)
      mysql-test/t/rpl000017.test:
        Use short filenames for sockets (portability problem on Mac OS X)
      mysql-test/t/rpl000018.test:
        Use short filenames for sockets (portability problem on Mac OS X)
      mysql-test/t/show_check.test:
        Move ISAM specific tests to isam.test
      mysql-test/t/status.test:
        Cleanup of tests for embedded version
      mysql-test/t/tablelock.test:
        Cleanup
      mysys/Makefile.am:
        Removed not used mf_pack2.c
      mysys/charset.c:
        new convert_dirname
      mysys/default.c:
        new convert_dirname
      mysys/mf_dirname.c:
        Changed convert_dirname() to be more general
      mysys/mf_format.c:
        Changed bit flags to fn_format() to defines.
        Added handling of relative filenames
      BitKeeper/etc/ignore:
        Added libmysqld/examples/test-gdbinit scripts/mysql_explain_log to the ignore list
      mysys/mf_pack.c:
        new convert_dirname
      mysys/mf_tempfile.c:
        new convert_dirname
      scripts/Makefile.am:
        Adde mysql_explain_log
      scripts/mysql_config.sh:
        Added support of --libmysqld-libs
      sql/Makefile.am:
        Fix to use 'innodb_system_libs'
      sql/ha_innobase.cc:
        Make InnoDB startup/shutdown silent in embedded version
      sql/ha_isam.cc:
        Added handling of HAVE_ISAM
      sql/ha_isammrg.cc:
        Added handling of HAVE_ISAM
      sql/ha_myisam.cc:
        Handle relative paths;  Needed to support BACKUP TABLE in embedded version
      sql/ha_myisammrg.cc:
        Rename of filenames
      sql/handler.cc:
        Added handling of HAVE_ISAM
      sql/item_func.cc:
        Fix for ecc (Intel Compiler)
      sql/mysql_priv.h:
        Added global variable 'mysql_embedded'
      sql/mysqld.cc:
        Use HAVE_ISAM
      sql/sql_parse.cc:
        Use new convert_dirname
      sql/sql_select.cc:
        Fix for ecc (Intel Compiler)
      sql/sql_table.cc:
        Added handling of relative filenames
      strings/Makefile.am:
        Don't compile both assembler and C functions on x86
      strings/bchange.c:
        cleanup
      cef1d752
  20. 05 Oct, 2001 1 commit
    • unknown's avatar
      SSL fix · c9654633
      unknown authored
      acinclude.m4:
        When libssl.so was installed from RPM and libssl.a from source libssl.a detection worked properly. Fixed.
      c9654633
  21. 04 Oct, 2001 1 commit
    • unknown's avatar
      changes to make things work in the max version · 5ee900d3
      unknown authored
      acinclude.m4:
        automatically detect installation paths of OpenSSL instead of hard-coding
        automatically enable --with-vio if --with-openssl is enabled
      client/mysqltest.c:
        fixes for embedded library
      libmysqld/Makefile.am:
        md5 is now in mysys
      libmysqld/libmysqld.c:
        added my_connect(), but now can be removed - will do in the next
        changeset
      mysql-test/include/have_bdb.inc:
        disable query log so that result file will not have unneeded 
        show variables
      mysql-test/include/have_gemini.inc:
        disable query log so that result file will not have unneeded 
        show variables
      mysql-test/include/have_innodb.inc:
        disable query log so that result file will not have unneeded 
        show variables
      mysql-test/include/have_openssl.inc:
        disable query log so that result file will not have unneeded 
        show variables
      mysql-test/include/have_openssl_1.inc:
        disable query log so that result file will not have unneeded 
        show variables
      mysql-test/include/have_openssl_2.inc:
        disable query log so that result file will not have unneeded 
        show variables
      mysql-test/r/bdb.result:
        fix for new format
      mysql-test/r/have_openssl.require:
        ssl->openssl
      mysql-test/r/innodb.result:
        fix for query logging
      5ee900d3
  22. 03 Oct, 2001 1 commit
    • unknown's avatar
      Fixed some build problems. · b39f54aa
      unknown authored
      Fix that compressed packets and normal packets looks indentical before calling net_real_write()
      (Needed for query cache)
      Optimize IS NULL handling
      
      
      Build-tools/Do-compile:
        Fix for machines with clocks in an earlier timezone
      Docs/manual.texi:
        Fixed typo
      acinclude.m4:
        Fixed typo
      client/mysqlbinlog.cc:
        Cleanup
      client/mysqltest.c:
        Added --compress to test the compressed protocol
      configure.in:
        Increment shared library number (because structs changed)
      include/mysql.h:
        Optimize structs for Ia64
      include/mysql_com.h:
        Optimize structs for Ia64
      libmysql/libmysql.c:
        Portability fixes
      libmysql/net.c:
        Fix that compressed packets and normal packets looks indentical before calling net_real_write()
        (Needed for query cache)
      libmysqld/examples/Makefile.am:
        Portability fix
      libmysqld/libmysqld.c:
        Portability fixes
      mysql-test/mysql-test-run.sh:
        Added --compress to test the compressed protocol
      mysql-test/t/type_enum.test:
        A
      mysys/mf_casecnv.c:
        Portability fixes
      mysys/mf_tempfile.c:
        Portability fixes
      scripts/make_binary_distribution.sh:
        Add libmysqld to binary distribution
      sql-bench/server-cfg.sh:
        Fix for Interbase
      sql/item.h:
        Optimize IS NULL handling
      sql/item_cmpfunc.cc:
        Optimize IS NULL handling
      sql/item_cmpfunc.h:
        Optimize IS NULL handling
      sql/item_func.cc:
        cleanup
      sql/item_func.h:
        Optimize IS NULL handling
      sql/mysql_priv.h:
        c
      sql/net_serv.cc:
        Fix that compressed packets and normal packets looks indentical before calling net_real_write()
        (Needed for query cache)
      b39f54aa
  23. 30 Sep, 2001 2 commits
    • unknown's avatar
      Portability fix · 3dbd1788
      unknown authored
      strings/Makefile.am:
        Add missing ctype-latin1_de.cc
      3dbd1788
    • unknown's avatar
      SSL compiles and works as far as can see. Continue testing.. · d13f2dfd
      unknown authored
      Docs/manual.ja.texi:
        e-mail address fixed
      include/mysqld_error.h:
        Added 3 new errormessages related to SSL
      mysql-test/install_test_db.sh:
        SSL fix
      scripts/mysql_install_db.sh:
        mysql.user table changes to conform SSL ACL
      sql/lex.h:
        Fixed GRANT+SSL clause
      sql/share/czech/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/danish/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/dutch/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/english/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/estonian/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/french/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/german/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/greek/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/hungarian/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/italian/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/japanese/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/korean/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/norwegian-ny/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/norwegian/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/polish/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/portuguese/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/romanian/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/russian/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/slovak/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/spanish/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/swedish/errmsg.txt:
        Added 3 new errormessages related to SSL
      sql/share/ukrainian/errmsg.txt:
        Added 3 new errormessages related to SSL
      Docs/manual.texi:
        SSL fixes
      BUILD/compile-pentium-max:
        SSL was missing here
      acinclude.m4:
        typo fix
        alignment fix
      client/mysql.cc:
        SSL fixes
      client/mysqladmin.c:
        SSL fixes
      client/mysqlcheck.c:
        SSL fixes
      client/mysqldump.c:
        SSL fixes
      client/mysqlimport.c:
        SSL fixes
      client/mysqlshow.c:
        SSL fixes
      include/mysql.h:
        SSL fixes
      include/sslopt-case.h:
        SSL fixes
      include/sslopt-longopts.h:
        SSL fixes
      include/sslopt-usage.h:
        SSL fixes
      include/sslopt-vars.h:
        SSL fixes
      include/violite.h:
        SSL fixes
        cleanups
      libmysql/libmysql.c:
        SSL fixes
      libmysqld/lib_sql.cc:
        SSL fixes
      sql/mini_client.cc:
        SSL fixes
      sql/mysqld.cc:
        SSL fixes
        cleanup
        new variables to SHOW STATUS
      sql/sql_acl.cc:
        SSL fixes
      sql/sql_acl.h:
        SSL fixes
      sql/sql_lex.h:
        SSL fixes
      sql/sql_parse.cc:
        SSL fixes
      sql/sql_show.cc:
        New functions added
      sql/structs.h:
        New functions added
      vio/test-ssl.c:
        SSL fixes
      vio/test-sslclient.c:
        SSL fixes
      vio/test-sslserver.c:
        SSL fixes
      vio/viosocket.c:
        SSL fixes
      vio/viossl.c:
        SSL fixes
        cleanup
      vio/viosslfactories.c:
        SSL fixes
      sql/sql_yacc.yy:
        SSL fixes
      d13f2dfd
  24. 28 Sep, 2001 2 commits
  25. 27 Sep, 2001 2 commits
    • unknown's avatar
      Final fixes for INSERT into MERGE tables. · 05794bca
      unknown authored
      Move MAX_BLOB_WIDTH to be global
      Added full support for unsigned BIGINT
      Fixed spelling errors
      
      
      BUILD/compile-pentium-debug-max:
        Don't use openssl by default
      Docs/manual.texi:
        Cleanup of MERGE tables, Access usage and UDF functions
      acinclude.m4:
        Cleanup ssl usage
      configure.in:
        Added message when using --with-tools
      include/mysql_com.h:
        Move MAX_BLOB_WIDTH to be global
      myisammrg/myrg_create.c:
        Fix problem with MERGE TABLES and INSERT
      myisammrg/myrg_static.c:
        Fix problem with MERGE TABLES and INSERT
      mysql-test/r/bigint.result:
        Added test of unsigned BIGINT
      mysql-test/r/merge.result:
        Tests for INSERT
      mysql-test/r/type_ranges.result:
        Fixed tests for unsigned bigint
      mysql-test/t/bigint.test:
        Added test of unsigned BIGINT
      mysql-test/t/merge.test:
        Tests for INSERT
      mysys/typelib.c:
        Cleanup
      sql/field.h:
        Fixed unsigned BIGINT
      sql/ha_berkeley.cc:
        Cleanup
      sql/ha_gemini.cc:
        Cleanup
      sql/ha_myisam.cc:
        Cleanup
      sql/ha_myisammrg.cc:
        Fixed INSERT into MERGE tables
      sql/item.cc:
        Fixed unsigned BIGINT
      sql/item.h:
        Fixed unsigned BIGINT
      sql/item_func.cc:
        Fixed unsigned BIGINT
      sql/item_strfunc.cc:
        Fixed spelling errors
      sql/item_sum.cc:
        Fixed unsigned BIGINT
      sql/item_sum.h:
        Fixed unsigned BIGINT
      sql/mf_iocache.cc:
        Fixed spelling errors
      sql/mysql_priv.h:
        Moved MAX_BLOB_WIDTH to be global
      sql/mysqld.cc:
        Fixed spelling errors
      sql/opt_range.cc:
        Fixed spelling errors
      sql/sql_base.cc:
        Fixed bug in SHOW OPEN TABLES
      sql/sql_insert.cc:
        Fixed spelling errors
      sql/sql_lex.h:
        Fixed spelling errors
      sql/sql_parse.cc:
        Fixed spelling errors
      sql/sql_select.cc:
        Fix for unsigned BIGINT
      sql/structs.h:
        Fixed spelling errors
      sql/time.cc:
        Fixed spelling errors
      sql/unireg.cc:
        Fixed spelling errors
      05794bca
    • unknown's avatar
      Cleaned up udf_example.cc and mysql_fix_privilege_tables · b39ab709
      unknown authored
      acinclude.m4:
        Fixed typo in configure
      scripts/mysql_fix_privilege_tables.sh:
        Use CREATE TABLE IF EXISTS to avoid warnings
      sql/udf_example.cc:
        Fixed that avgcost() is compiled properly.
        Added more comments
      b39ab709
  26. 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
  27. 20 Sep, 2001 1 commit
    • unknown's avatar
      Some fixes for Gemini · 6ae95212
      unknown authored
      acinclude.m4:
        Fix for Gemini
      sql-bench/server-cfg.sh:
        Fix for Gemini
      sql/field.cc:
        Fix for Gemini
      6ae95212
  28. 17 Sep, 2001 2 commits
    • unknown's avatar
      Fixed locking problem when using bulk insert · 28097f40
      unknown authored
      Fixed array overrun when using drop_db
      Portability fixes
      
      
      BitKeeper/etc/ignore:
        Added libmysqld/examples/completion_hash.cc libmysqld/examples/completion_hash.h libmysqld/examples/my_readline.h libmysqld/examples/mysql.cc libmysqld/examples/mysqltest.c libmysqld/examples/readline.cc libmysqld/examples/sql_string.cc libmysqld/examples/sql_string.h to the ignore list
      acinclude.m4:
        Fixed reference to top_builddir
      myisam/mi_write.c:
        Fixed locking problem when using bulk insert
      sql/sql_db.cc:
        Fixed array overrun when using drop_db
      28097f40
    • unknown's avatar
      Add some examples for using libmysqld, including a hack for running the · 5fffbb12
      unknown authored
      mysql test suite.
      
      A few minor libmysqld fixes.
      
      Add mysql_server_init() and _end() to mysql.cc and mysqltest.c, so they
      can be linked against libmysqlclient or libmysqld.
      
      
      sql/mysqld.cc:
        have unireg_end() exit(), instead of pthread_exit()
        if inside the EMBEDDED_LIBRARY.  This is a hack
        which hopefully won't be needed.  But without it,
        the program hangs at end.
      client/mysql.cc:
        Don't call mysql_ssl_clear() unless HAVE_OPENSSL.
      client/mysqltest.c:
        Add mysql_server_init() and _end().
      acinclude.m4:
        change .. to $(top_builddir) in innodb_libs
      Makefile.am:
        Add libmysqld/examples to link_sources target
      configure.in:
        output libmysqld/examples/Makefile
        Also, change .. to $(top_builddir) in readline_link
      BitKeeper/etc/ignore:
        added linked_libmysqldex_sources
      mysql-test/mysql-test-run.sh:
        use latin1, not latin1_de, in tests
      libmysqld/libmysqld.c:
        Add replication functions.
      5fffbb12
  29. 26 Aug, 2001 1 commit
  30. 09 Aug, 2001 1 commit
    • unknown's avatar
      acinclude.m4: · 9d5a5207
      unknown authored
        Paste the libtool.m4 from libtool version 1.3.4
        into aclinclude.m4; this should make our configure
        work even when the user has libtool version 1.4
        installed.  This should be removed, and everyone
        should upgrade to libtool 1.4; until then, this is
        a quick hack to make things work.
      
      
      acinclude.m4:
        Paste the libtool.m4 from libtool version 1.3.4
        into aclinclude.m4; this should make our configure
        work even when the user has libtool version 1.4
        installed.  This should be removed, and everyone
        should upgrade to libtool 1.4; until then, this is
        a quick hack to make things work.
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      9d5a5207
  31. 08 Aug, 2001 1 commit
    • unknown's avatar
      Added CPU automatic detection. It examines /proc/cpuinfo (if exists) and finds... · ea4a4de3
      unknown authored
      Added CPU automatic detection. It examines /proc/cpuinfo (if exists) and finds out flags for -mcpu and -march.
      TODO is --with-cpu configure option to force some other processor type.
      Problem is not big as any Intel 686+ CPU will use -mcpu=pentiumpro anyway. Exceptions are Athlons and 586 processors.
      
      
      BUILD/SETUP.sh:
        Removed hardcoded processor type as it will be added later by configure
      acinclude.m4:
        Added CPU automatic detection
      configure.in:
        Added CPU automatic detection
      ea4a4de3
  32. 29 May, 2001 1 commit
    • unknown's avatar
      Pushing all the Gemini changes above the table handler. · 9d523813
      unknown authored
      BUILD/FINISH.sh:
        Add Gemini to configure
      Docs/manual.texi:
        Added Gemini content to the manual.
      acinclude.m4:
        Add Gemini to configure
      configure.in:
        Add Gemini to configure
      include/my_base.h:
        transaction isolation level READ UNCOMMITTED does not allow updates
      include/mysqld_error.h:
        Added new messages for Lock related failures
      sql/field.cc:
        Gemini BLOB support -
      sql/field.h:
        Gemini BLOB Support
      sql/ha_gemini.cc:
        Gemini Table handler
      sql/ha_gemini.h:
        Gemini Table handler
      sql/handler.cc:
        Added new messages for Lock related failures
        Provide the ability to turn off recovery for operations like 
        REPAIR TABLE ans ALTER TABLE
      sql/handler.h:
        Add a bit to have full text indexes as an option
        and define the prototype to optionally turn on and off logging
      sql/lock.cc:
        Added new messages for Lock related failures
      sql/share/czech/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/danish/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/dutch/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/english/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/estonian/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/french/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/german/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/greek/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/hungarian/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/italian/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/japanese/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/korean/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/norwegian-ny/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/norwegian/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/polish/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/portuguese/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/romanian/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/russian/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/slovak/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/spanish/errmsg.txt:
        Added new messages for Lock related failures
      sql/share/swedish/errmsg.txt:
        Added new messages for Lock related failures
      sql/sql_base.cc:
        Avoidlock table overflow issues when doing an alter table on Windows.
        This is Gemini specific.
      sql/sql_table.cc:
        Add a bit to have full text indexes as an option
        and define the prototype to optionally turn on and off logging
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      9d523813
  33. 20 May, 2001 2 commits
  34. 25 Apr, 2001 1 commit
    • unknown's avatar
      Portability fixes for Ia64 and Sgi compiler · 97907ee8
      unknown authored
      DROP DATABASE in mysqladmin asks for confirmation (again)
      Added examined_rows to slow query log
      SHOW CREATE for TEMPORARY table
      
      
      BitKeeper/deleted/.del-shw000001.result~8b20b03d8319b9a5:
        Delete: mysql-test/r/shw000001.result
      BitKeeper/deleted/.del-shw000001.test~770d96a2c1c65b20:
        Delete: mysql-test/t/shw000001.test
      Docs/manual.texi:
        Added information about InnoDB and TEMPORARY tables
      acinclude.m4:
        Portability fixes
      client/errmsg.c:
        merge with libmysqd/errmsg.c
      client/mysqladmin.c:
        DROP DATABASE asks for confirmation (again)
      client/mysqltest.c:
        Portability fixes
      configure.in:
        Portability fixes for SGI compiler on Ia64
      extra/resolve_stack_dump.c:
        Portability fixes
      include/global.h:
        Portability fixes
      isam/_dbug.c:
        Portability fixes
      mysql-test/mysql-test-run.sh:
        Portability fixes
      mysql-test/r/show_check.result:
        New test for SHOW CREATE
      mysql-test/t/show_check.test:
        New test for SHOW CREATE
      scripts/make_binary_distribution.sh:
        Added missing files
      sql/filesort.cc:
        Added examined_rows to slow query log
      sql/log.cc:
        Added examined_rows to slow query log
      sql/mysql_priv.h:
        Added examined_rows to slow query log
      sql/mysqlbinlog.cc:
        Fixed core dump when using wrong option
      sql/mysqld.cc:
        Removed not used argument
      sql/sql_base.cc:
        Fixed name problem with SHOW CREATE for TEMPORARY table
      sql/sql_class.h:
        Added examined_rows to slow query log
      sql/sql_parse.cc:
        Added examined_rows to slow query log
      sql/sql_select.cc:
        Added examined_rows to slow query log
      sql/sql_select.h:
        Added examined_rows to slow query log
      sql/sql_show.cc:
        Fixed SHOW CREATE for TEMPORARY table
      sql/sql_table.cc:
        Added examined_rows to slow query log
      97907ee8