An error occurred fetching the project authors.
  1. 02 Oct, 2001 1 commit
  2. 27 Sep, 2001 1 commit
  3. 25 Sep, 2001 1 commit
  4. 22 Sep, 2001 1 commit
  5. 15 Aug, 2001 1 commit
    • unknown's avatar
      manual.texi: · 5cc716b1
      unknown authored
        Added mirror in Hong Kong
      
      
      Docs/manual.texi:
        Added mirror in Hong Kong
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      5cc716b1
  6. 10 Aug, 2001 2 commits
    • unknown's avatar
      Embedded mysql fixes. · b538ff90
      unknown authored
      There is now a mysql_server_init() function which needs to be
      called at the beginning of the program (and _end() for the end
      of the program).  This routine handles argument parsing for the
      embedded server.
      
      Use the embedded version of mysql_load_file() (ignore the LOCAL
      argument, since the client and server are the same program).
      
      There are now mysql_thread_init/end() functions for the client
      to use in a multi-threaded app.  They are just wrappers for
      my_thread_init/end().
      
      
      
      BitKeeper/deleted/.del-README~434e9cae5fa9a4c4:
        Delete: libmysqld/README
      libmysqld/lib_load.cc:
        minor cleanup
      include/mysql.h:
        add mysql_server/thread_init/end()
      libmysql/libmysql.c:
        add mysql_server/thread_init/end()
      libmysqld/lib_sql.cc:
        add mysql_server/thread_init/end()
      libmysqld/libmysqld.c:
        add mysql_server/thread_init/end()
      sql/mysqld.cc:
        allow get_options() to be called more than once
      libmysqld/Makefile.am:
        use lib_load.cc instead of sql_load.cc
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      b538ff90
    • unknown's avatar
      Fixed bug in ALTER TABLE for MERGE tables · bffebc8e
      unknown authored
      Portability fixes
      Fixed problem when giving wrong arguments to myisam_recover
      Fix to remove warnings when using purify
      
      
      BUILD/compile-solaris-sparc-purify:
        Added innodb and berkeleydb to test
      mysql-test/install_test_db.sh:
        Portability fix.
      sql/ha_myisam.cc:
        Fixed problem when giving wrong arguments to myisam_recover
      sql/ha_myisammrg.cc:
        Fixed bug in ALTER TABLE for MERGE tables
      sql/sql_list.h:
        Fix to remove warnings when using purify
      sql/sql_select.cc:
        Fix to remove warnings from purify
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      bffebc8e
  7. 09 Aug, 2001 4 commits
    • 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
    • unknown's avatar
      btr0cur.c Improve range size estimate for big ranges · 5ea83eed
      unknown authored
      ha_innobase.cc	Fix Sort aborted bug
      
      
      sql/ha_innobase.cc:
        Fix Sort aborted bug
      innobase/btr/btr0cur.c:
        Improve range size estimate for big ranges
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      5ea83eed
    • unknown's avatar
      logging_ok Logging to logging@openlogging.org accepted · 799bf1cd
      unknown authored
      ltmain.sh	Don't add -lc to deplibs on FreeBSD.
      
      
      ltmain.sh:
        Don't add -lc to deplibs on FreeBSD.
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      799bf1cd
    • unknown's avatar
      Added new optino --sql-mode to mysqld. · b95d4398
      unknown authored
      Docs/manual.texi:
        New option, --sql-mode=option[,option[,option]]
      sql/ha_myisam.cc:
        Fixed a segmentation fault -bug with myisam-recover which
        occurred if option specified was not a legal one.
      sql/mysql_priv.h:
        New option --sql-mode
      sql/mysqld.cc:
        New option --sql-mode
      sql/sql_class.cc:
        New option --sql-mode
      sql/sql_class.h:
        New option --sql-mode
      sql/sql_lex.cc:
        option --sql-mode, ansi_quotes and ignore_space
      sql/sql_parse.cc:
        option --sql-mode, ignore_space
      sql/sql_select.cc:
        option --sql-mode, mode only_full_group_by
      sql/sql_yacc.yy:
        option --sql-mode, modes pipes_as_concat and real_as_float
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      b95d4398
  8. 02 Aug, 2001 1 commit
  9. 24 Jul, 2001 1 commit
    • unknown's avatar
      OpenSSL fixes. Should not affect anything else. · 2ec8dce1
      unknown authored
      Makefile.am:
        Moved bio dir into server_dirs in acinclude.in
      client/Makefile.am:
        We need OpenSSL includes here
      include/global.h:
        Workaround for OPENSSL librar bug with defining crypt()
      include/violite.h:
        small fixes
      libmysql/Makefile.am:
        We need OpenSSL includes here
      libmysql/Makefile.shared:
        Yes, we need to compile more programs whtn --with-openssl is used
      libmysql/libmysql.c:
        Make it work! (openssl)
      libmysql_r/Makefile.am:
        We need OpenSSL includes here
      sql/mysqld.cc:
        Memory was not freed before
      sql/sql_parse.cc:
        fix
      vio/Makefile.am:
        Added testprogram compilation and openssl libraries linking
      vio/viossl.c:
        Cleanups, fixes, etc...
      vio/viosslfactories.c:
        Copyright was missing. Fixed renamed macros for newer OpenSSL
      vio/viotest-ssl.c:
        Made testprogram work again
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      2ec8dce1
  10. 11 Jul, 2001 1 commit
    • unknown's avatar
      Include latest GPL and LGPL texts from fsf.org · 65876c1f
      unknown authored
      Docs/manual.texi:
        Include latest GPL and LGPL texts from fsf.org
        
        Fix syntax error in email address
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      65876c1f
  11. 10 Jul, 2001 1 commit
  12. 03 Jul, 2001 1 commit
  13. 29 Jun, 2001 1 commit
  14. 28 Jun, 2001 1 commit
    • unknown's avatar
      Implement ORDER BY DESC optimization, which reads values in descending · 950a6871
      unknown authored
      order directly from the index instead of using a filesort.
      
      
      mysql-test/mysql-test-run.sh:
        [ -n $SKIP_TEST ] --> [ -n "$SKIP_TEST" ]; portability fix
      mysql-test/r/order_by.result:
        Added test for ORDER BY DESC optimization
      mysql-test/t/order_by.test:
        Added test for ORDER BY DESC optimization
      sql/opt_range.cc:
        Added QUICK_SELECT_DESC class which implements ORDER BY DESC optimization.
      sql/opt_range.h:
        Added QUICK_SELECT_DESC class which implements ORDER BY DESC optimization.
      sql/sql_select.cc:
        Added QUICK_SELECT_DESC class which implements ORDER BY DESC optimization.
      BitKeeper/etc/ignore:
        Added .gdbinit .vimrc to the ignore list
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      950a6871
  15. 27 Jun, 2001 1 commit
  16. 12 Jun, 2001 2 commits
    • unknown's avatar
      Added --enable-shared to Do-compile · be2b125b
      unknown authored
      Build-tools/Do-compile:
        Added --enable-shared
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      be2b125b
    • unknown's avatar
      send a separate commit message to internals · 54fe14e2
      unknown authored
      added a test for check table
      
      
      BitKeeper/triggers/post-commit:
        send a separate commit message to internals
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      54fe14e2
  17. 11 Jun, 2001 1 commit
    • unknown's avatar
      Changed compare in MyISAM to use my_pread() · 765940cb
      unknown authored
      Fixed that @VAR shows all decimals
      Fixed problem with FLUSH TABLES and LOCK TABLE
      CREATE ... SELECT now creates keys later
      Reset AUTO_INCREMENT order if droping AUTO_INCREMENT key
      
      
      Docs/manual.texi:
        Added MySQL/PostgreSQL comparison
      isam/_dynrec.c:
        Fixed wrong compare (not used in MySQL)
      myisam/mi_dynrec.c:
        Fixed wrong compare (not used in MySQL).
        Changed compare to use my_pread()
      myisam/mi_packrec.c:
        cleanup
      mysql-test/r/alter_table.result:
        Added test for ALTER TABLE
      mysql-test/r/variables.result:
        Added test for variables with REAL values.
      mysql-test/t/alter_table.test:
        Added test for ALTER TABLE
      mysql-test/t/variables.test:
        Added test for variables with REAL values.
      mysys/my_pread.c:
        Cleanup
      sql-bench/Makefile.am:
        removed extra \
      sql-bench/README:
        Fixed typo.
      sql/item_func.cc:
        Fixed that @VAR shows all decimals
      sql/share/swedish/errmsg.OLD:
        update
      sql/sql_base.cc:
        Fixed problem with FLUSH TABLES and LOCK TABLE
      sql/sql_insert.cc:
        CREATE ... SELECT now creates keys later
      sql/sql_table.cc:
        Reset AUTO_INCREMENT order if droping AUTO_INCREMENT key.
      BitKeeper/etc/ignore:
        Added sql-bench/graph-compare-results to the ignore list
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      765940cb
  18. 08 Jun, 2001 4 commits
  19. 07 Jun, 2001 1 commit
    • unknown's avatar
      page0cur.ic Fix a bug in insert buffer and multiversioning · 9c20e1e7
      unknown authored
      manual.texi	Changed innodb_unix_file_flush_method to innodb_flush_method in the manual
      
      
      Docs/manual.texi:
        Changed innodb_unix_file_flush_method to innodb_flush_method in the manual
      innobase/include/page0cur.ic:
        Fix a bug in insert buffer and multiversioning
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      9c20e1e7
  20. 06 Jun, 2001 2 commits
    • unknown's avatar
      Changed innodb_unix_file_flush_method -> innodb_flush_method · 14289d42
      unknown authored
      Cleaned up error messages.
      
      
      mysql-test/mysql-test-run.sh:
        Added option --mysqld to send arguments to mysqld.
      sql/ha_innobase.cc:
        Shortended messages a bit to correspond to the rest of MySQL.
      sql/mysqld.cc:
        Changed innodb_unix_file_flush_method -> innodb_flush_method
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      14289d42
    • unknown's avatar
      sql_table.cc re-apply a lost change where we check to see if the · bb72939a
      unknown authored
      sql_table.cc	table handler supports temporary tables
      
      
      sql/sql_table.cc:
        re-apply a lost change where we check to see if the
        table handler supports temporary tables
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      bb72939a
  21. 05 Jun, 2001 1 commit
  22. 04 Jun, 2001 1 commit
    • unknown's avatar
      manual.texi @xref{safe_mysqld} · 2197533b
      unknown authored
      manual.texi	-> @xref{safe_mysqld, @code{safe_mysqld}}
      manual.texi	Unixes -> versions of Unix (or similar edit)
      manual.texi	@xref{mysqlxxx} -> @xref{mysqlxxx, @code{mysqlxxx}}
      
      
      Docs/manual.texi:
        @xref{safe_mysqld}
        -> @xref{safe_mysqld, @code{safe_mysqld}}
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      2197533b
  23. 03 Jun, 2001 2 commits
    • unknown's avatar
      These are actually two changesets. One for splitting LEX in two and · 4e886689
      unknown authored
      the other for multi-table delete
      
      
      sql/filesort.cc:
        Fixed some bugs for Unique class
      sql/item.cc:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc
      sql/item_sum.cc:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc
      sql/mysql_priv.h:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc
      sql/sql_class.h:
        Adding multi table delete
      sql/sql_delete.cc:
        Added multi-table delete
      sql/sql_lex.cc:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc
      sql/sql_lex.h:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc
      sql/sql_parse.cc:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc, plus added multi-table delete
      sql/sql_select.cc:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc
      sql/sql_update.cc:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc
      sql/sql_yacc.yy:
        Changes caused by splitting lex into two parts, in order to 
        implement UNION's etc, plus added multi-table delete
      sql/uniques.cc:
        Fixed some bugs in duplicate stripping
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      4e886689
    • unknown's avatar
      misplaced #ifdef fixed · b6cb800d
      unknown authored
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      b6cb800d
  24. 01 Jun, 2001 1 commit
  25. 31 May, 2001 4 commits
    • unknown's avatar
      Patch our texi2html to produce more correct HTML. · 4da43bdd
      unknown authored
      Thanks to Colin Faber <cfaber@fpsn.net> for the patch.
      
      
      Docs/Support/texi2html:
        Patch to close </TD>, which is needed for some browsers.
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      4da43bdd
    • unknown's avatar
      sync0sync.ic Use XCHG also to reset the mutex lock word: it makes a... · 7176e43d
      unknown authored
      sync0sync.ic	Use XCHG also to reset the mutex lock word: it makes a serialization point to code on Intel and gives more safety
      
      
      innobase/include/sync0sync.ic:
        Use XCHG also to reset the mutex lock word: it makes a serialization point to code on Intel and gives more safety
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      7176e43d
    • unknown's avatar
      Removed compiler warnings. · d9a9f38e
      unknown authored
      Added preliminary handling of symlinks in MyISAM.
      When using myisamchk to check tables with --force, don't repair
      tables that are marked as 'not closed' if they are ok.
      Change fn_format() to use my_real_path and my_symlink
      
      
      include/myisam.h:
        Added handling of symlinks
      myisam/ft_boolean_search.c:
        cleanup
      myisam/ft_dump.c:
        cleanup
      myisam/mi_check.c:
        Added handling of symlinks.
        When using check and --force, don't repair tables that are marked
        as 'not closed' if they are ok.
      myisam/mi_create.c:
        Added handling of symlinks.
      myisam/mi_dbug.c:
        Added handling of symlinks.
      myisam/mi_info.c:
        Added handling of symlinks.
      myisam/mi_open.c:
        Added handling of symlinks.
      myisam/mi_search.c:
        cleanup
      myisam/myisamchk.c:
        Added handling of symlinks.
      myisam/myisamdef.h:
        Added handling of symlinks.
      myisam/myisamlog.c:
        Fixed bug when using new trees
      myisam/myisampack.c:
        cleanup
      mysys/mf_cache.c:
        cleanup
      mysys/mf_format.c:
        Change to use my_real_path and my_symlink
      mysys/my_alloc.c:
        cleanup
      BitKeeper/etc/ignore:
        Added libmysqld/sql_command libmysqld/backup_dir libmysqld/simple-test to the ignore list
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      d9a9f38e
    • unknown's avatar
      Added functions for symbolic link handling to make it possible to · b6cae0f6
      unknown authored
      backport things from 4.0. This is safe as the functions are not used!
      Fixed bug in new mutex handling in InnoDB
      Make allow_break() and dont_break() defines.
      
      
      Docs/manual.texi:
        Remove -fomit-frame-pointer from default binaries
      configure.in:
        Use -lcma library on HPUX
      include/my_sys.h:
        Added functions for symbolic link handling to make it possible to
        backport things from 4.0. (This is safe as the functions are not used!)
      include/mysys_err.h:
        Error messages for symlink functions.
      innobase/include/sync0sync.ic:
        Fixed bug in new mutex handling
      mysys/Makefile.am:
        Symlink handling
      mysys/errors.c:
        Symlink handling
      mysys/mf_brkhant.c:
        Make allow_break() and dont_break() defines.
      sql/sql_select.h:
        Fix for Intel compiler.
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      b6cae0f6
  26. 30 May, 2001 2 commits
    • unknown's avatar
      md5.c renamed MD5* to my_MD5* to avoid clashes with openssl library · 5041af52
      unknown authored
      md5.c   	when linking to it
      md5.h   	renamed MD5* to my_MD5* to avoid clashes with openssl library
      md5.h   	when linking to it
      
      
      sql/md5.h:
        renamed MD5* to my_MD5* to avoid clashes with openssl library
        when linking to it
      sql/md5.c:
        renamed MD5* to my_MD5* to avoid clashes with openssl library
        when linking to it
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      5041af52
    • unknown's avatar
      manual.texi URL adjustments. · 1158d8a2
      unknown authored
      Docs/manual.texi:
        URL adjustments.
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      1158d8a2