An error occurred fetching the project authors.
  1. 20 Apr, 2005 1 commit
  2. 13 Apr, 2005 1 commit
    • unknown's avatar
      More changes to reflect the removal of manual.texi from the sources: · a7fae731
      unknown authored
      - Added a stub scripts/fill_help_tables.sql file to satisfy the build dependencies
      - Removed scripts/fill_help_tables.sh and updated scripts/Makefile.am accordingly
      
      The fill_help_tables.sql stub will be replaced with the approriate content when building the
      official source distribution via Bootstrap - it's now autogenerated on the documentation server
      and will be copied into place before packing up the source distribution.
      
      
      scripts/Makefile.am:
        - removed fill_help_tables.sh and the creation of fill_help_tables.sql from the Makefile
          (fill_help_tables.sql is now generated on the documentation server and will be added to
          the offical source distribution during the Bootstrap
      support-files/mysql.spec.sh:
        - fixed a typo
      a7fae731
  3. 04 Feb, 2005 1 commit
    • unknown's avatar
      A fix for Bug#6273 "building fails on link": we should not use · fe83a193
      unknown authored
      CLIENT_LIBS in mysql_config as CLIENT_LIBS point to builddir when
      we use the bundled zlib.
      
      
      acinclude.m4:
        Extend MYSQL_CHECK_ZLIB_WITH_COMPRESS m4 macro to substitute ZLIB_DEPS -
        this is a special version of ZLIB_LIBS to use in mysql_config
      configure.in:
        Remove NON_THREADED_CLIENT_LIBS which weren't really 
        NON_THREADED_CLIENT_LIBS and use NON_THREADED_LIBS instead.
        AC_SUBST NON_THREADED_LIBS and STATIC_NSS_FLAGS as they're now
        needed inside mysql_config.sh
      scripts/Makefile.am:
        Add STATIC_NSS_FLAGS, NON_THREADED_LIBS and ZLIB_DEPS to sed 
        substitution list.
      scripts/mysql_config.sh:
        We can't use CLIENT_LIBS as in case when we use the bundled zlib
        it has a reference to $(top_builddir)/zlib.
        libs and libs_r now need to be specified explicitly.
      zlib/Makefile.am:
        Install libz.la in case it's used by MySQL: this way we guarantee
        that paths printed by mysql_config are valid in all cases.
      fe83a193
  4. 28 Jan, 2005 1 commit
    • unknown's avatar
      small Makefile.am cleanup · 5c3c4079
      unknown authored
          clean: targets removed
          generated *.h files moved to include/
      
      
      Docs/Images/Makefile.am:
        no clean: targets please!
      client/Makefile.am:
        generated *.h files moved to include/
      extra/Makefile.am:
        generated *.h files moved to include/
      include/Makefile.am:
        no clean: targets please!
      libmysql/Makefile.am:
        generated *.h files moved to include/
      libmysql_r/Makefile.am:
        generated *.h files moved to include/
      libmysqld/Makefile.am:
        generated *.h files moved to include/
      libmysqld/examples/Makefile.am:
        generated *.h files moved to include/
        no clean: target please!
      ndb/docs/Makefile.am:
        no clean: targets please!
      scripts/Makefile.am:
        SUPERCLEANFILES means nothing
      server-tools/instance-manager/Makefile.am:
        generated *.h files moved to include/
      sql/Makefile.am:
        generated *.h files moved to include/
      sql/share/Makefile.am:
        instead of (incorrectly) duplicating comp_err command line,
        call do make in extra/
      tools/Makefile.am:
        generated *.h files moved to include/
      BitKeeper/etc/ignore:
        Added include/mysqld_ername.h include/mysqld_error.h include/sql_state.h to the ignore list
      5c3c4079
  5. 11 Jan, 2005 1 commit
  6. 22 Oct, 2004 1 commit
  7. 19 Feb, 2004 1 commit
    • unknown's avatar
      Major work on Windows build automation-- add binary packaging, suffixes · ea9aa4d3
      unknown authored
      Build-tools/Do-win-build:
        Add suffix option, classic build, binary packaging
      VC++Files/comp_err/comp_err.dsp:
        Update project file -- binary goes to ../client_release now
      VC++Files/my_print_defaults/my_print_defaults.dsp:
        Update project file -- binary goes to ../client_release now
      VC++Files/myisam_ftdump/myisam_ftdump.dsp:
        Update project file -- binary goes to ../client_release now
      VC++Files/myisampack/myisampack.dsp:
        Update project file -- binary goes to ../client_release now
      scripts/Makefile.am:
        Add make_win_binary_distribution to Makefile (for @VERSION@)
      ea9aa4d3
  8. 15 Nov, 2003 1 commit
  9. 08 Oct, 2003 1 commit
  10. 07 Oct, 2003 1 commit
    • unknown's avatar
      Simple cleanups · c7fd510a
      unknown authored
      client/mysqlbinlog.cc:
        Add default handling to mysqlbinlog
      mysql-test/mysql-test-run.sh:
        Cleanup of mysqldump/mysqlbinlog argument handling
      scripts/Makefile.am:
        Remove duplicate
      scripts/mysql_install_db.sh:
        Change -eq to =
      c7fd510a
  11. 23 Sep, 2003 1 commit
    • unknown's avatar
      Block SIGPIPE also for not threaded client programs. · a86e11ef
      unknown authored
      Added --include and --libs_r options to mysql_config.
      Added mysql_get_client_version() to client library
      Fixed some minor benchmark issues
      
      
      
      acinclude.m4:
        Fixed that 'no' is printed if openssl not used
      configure.in:
        Fixed error message
      extra/comp_err.c:
        Skip lines before first {
      include/mysql.h:
        Indentation cleanup
      libmysql/libmysql.c:
        Block SIGPIPE also for not threaded programs.
        This is now done once in mysql_server_init() and not for every call to mysql_init().
        Added mysql_get_client_version()
      libmysql/libmysql.def:
        added mysql_get_client_version
      scripts/Makefile.am:
        Add openssl libraries to mysql_config
      scripts/mysql_config.sh:
        Added options --include and --libs_r
        Added C compiler options to 'cflags'
      scripts/mysql_install_db.sh:
        Fixed tests with IN_RPM to not give warnings
      sql-bench/bench-init.pl.sh:
        Updated version number
      sql-bench/server-cfg.sh:
        Remove duplicate line
      sql-bench/test-alter-table.sh:
        Increase loops for more relevant test
      sql-bench/test-select.sh:
        Fix wrong test for count_distinct_2
      tests/mail_to_db.pl:
        Default db and table for easier usage
      a86e11ef
  12. 17 Sep, 2003 1 commit
  13. 12 Sep, 2003 1 commit
    • unknown's avatar
      New Windows source package automation for 3.23 · dcf6e50d
      unknown authored
      VC++Files/InstallShield/3.23.XX-com/Component Definitions/.fgl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Component Definitions/Default.cdf:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Component Definitions/Default.fgl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/File Groups/Clients and Tools.fgl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/File Groups/Default.fdf:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/File Groups/Default.fgl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/File Groups/Development.fgl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/File Groups/Documentation.fgl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/File Groups/Grant Tables.fgl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/File Groups/Servers.fgl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/MySQL 3.23.com.ipr:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Registry Entries/Default.rge:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Script Files/Setup.dbg:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Script Files/Setup.ino:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Script Files/Setup.ins:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Script Files/Setup.obs:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Script Files/Setup.rul:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Setup Files/Uncompressed Files/Language Independent/OS Independent/SETUP.BMP:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Shell Objects/Default.shl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/String Tables/Default.shl:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Text Substitutions/Build.tsb:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Text Substitutions/Setup.tsb:
        mvdir
      VC++Files/InstallShield/3.23.XX-com/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt:
        Add version placeholders for automation
      VC++Files/InstallShield/3.23.XX-com/String Tables/0009-English/value.shl:
        Add version placeholders for automation
      VC++Files/InstallShield/3.23.XX-gpl/Setup Files/Compressed Files/Language Independent/OS Independent/infolist.txt:
        Add version placeholders for automation
      VC++Files/InstallShield/3.23.XX-gpl/String Tables/0009-English/value.shl:
        Add version placeholders for automation
      scripts/Makefile.am:
        Build make_win_src_distribution script by default
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      dcf6e50d
  14. 07 Aug, 2003 3 commits
  15. 20 Jun, 2003 1 commit
  16. 05 Jun, 2003 1 commit
    • unknown's avatar
      After merge fixes · 824dd7f5
      unknown authored
      mysql-test/r/repair_part1.result:
        Rename: mysql-test/r/repair.result -> mysql-test/r/repair_part1.result
      mysql-test/t/repair_part1.test:
        Rename: mysql-test/t/repair.test -> mysql-test/t/repair_part1.test
      include/sql_common.h:
        Declare not_error_sqlstate
      scripts/Makefile.am:
        Added back fill_help_tables.sql
      824dd7f5
  17. 04 Jun, 2003 1 commit
    • unknown's avatar
      Added SQLSTATE to client/server protocol · b388eb00
      unknown authored
      bmove_allign -> bmove_align
      Added OLAP function ROLLUP
      Split mysql_fix_privilege_tables to a script and a .sql data file
      Added new (MEMROOT*) functions to avoid calling current_thd() when creating some common objects.
      Added table_alias_charset, for easier --lower-case-table-name handling
      Better SQL_MODE handling (Setting complex options also sets sub options)
      New (faster) assembler string functions for x86
      
      
      BitKeeper/etc/ignore:
        added libmysqld/sql_state.c
      client/mysql.cc:
        Added SQLSTATE to error messages
        Added new function put_error() to be able to clean up some old code.
      client/mysqltest.c:
        Write ERROR SQLSTATE for all errors
      dbug/dbug.c:
        Portability fixes
      include/m_string.h:
        Rename bmove_allign as bmove_align
      include/mysql.h:
        Added SQLSTATE (for embedded version)
      include/mysql_com.h:
        Send correct SQLSTATE for the error to the client
      libmysql/libmysql.c:
        Changed default error state to HY000
        Applied code cleanup patch
      libmysqld/Makefile.am:
        Added sql_state.cc
      libmysqld/libmysqld.c:
        Added sqlstate
      mysql-test/r/analyse.result:
        Updated results
      mysql-test/r/ansi.result:
        Updated results
      mysql-test/r/auto_increment.result:
        Updated results
      mysql-test/r/bdb-deadlock.result:
        Updated results
      mysql-test/r/bdb.result:
        Updated results
      mysql-test/r/comments.result:
        Updated results
      mysql-test/r/create.result:
        Updated results
      mysql-test/r/ctype_collate.result:
        Updated results
      mysql-test/r/delayed.result:
        Updated results
      mysql-test/r/delete.result:
        Updated results
      mysql-test/r/derived.result:
        Updated results
      mysql-test/r/distinct.result:
        Updated results
      mysql-test/r/drop.result:
        Updated results
      mysql-test/r/err000001.result:
        Updated results
      mysql-test/r/explain.result:
        Updated results
      mysql-test/r/flush.result:
        Updated results
      mysql-test/r/fulltext.result:
        Updated results
      mysql-test/r/func_gconcat.result:
        Updated results
      mysql-test/r/func_system.result:
        Updated results
      mysql-test/r/grant_cache.result:
        Updated results
      mysql-test/r/group_by.result:
        Updated results
      mysql-test/r/handler.result:
        Updated results
      mysql-test/r/heap.result:
        Updated results
      mysql-test/r/heap_btree.result:
        Updated results
      mysql-test/r/heap_hash.result:
        Updated results
      mysql-test/r/innodb.result:
        Updated results
      mysql-test/r/innodb_handler.result:
        Updated results
      mysql-test/r/insert_select.result:
        Updated results
      mysql-test/r/insert_update.result:
        Updated results
      mysql-test/r/join.result:
        Updated results
      mysql-test/r/join_outer.result:
        Updated results
      mysql-test/r/key.result:
        Updated results
      mysql-test/r/lock.result:
        Updated results
      mysql-test/r/lock_multi.result:
        Updated results
      mysql-test/r/merge.result:
        Updated results
      mysql-test/r/multi_update.result:
        Updated results
      mysql-test/r/myisam.result:
        Updated results
      mysql-test/r/null.result:
        Updated results
      mysql-test/r/olap.result:
        Updated results
      mysql-test/r/order_by.result:
        Updated results
      mysql-test/r/packet.result:
        Updated results
      mysql-test/r/query_cache.result:
        Updated results
      mysql-test/r/row.result:
        Updated results
      mysql-test/r/rpl000001.result:
        Updated results
      mysql-test/r/rpl000009.result:
        Updated results
      mysql-test/r/rpl_empty_master_crash.result:
        Updated results
      mysql-test/r/rpl_log.result:
        Updated results
      mysql-test/r/rpl_replicate_do.result:
        Updated results
      mysql-test/r/rpl_rotate_logs.result:
        Updated results
      mysql-test/r/select.result:
        Updated results
      mysql-test/r/select_safe.result:
        Updated results
      mysql-test/r/show_check.result:
        Updated results
      mysql-test/r/sql_mode.result:
        Updated results
      mysql-test/r/subselect.result:
        Updated results
      mysql-test/r/temp_table.result:
        Updated results
      mysql-test/r/truncate.result:
        Updated results
      mysql-test/r/type_blob.result:
        Updated results
      mysql-test/r/type_decimal.result:
        Updated results
      mysql-test/r/type_float.result:
        Updated results
      mysql-test/r/type_ranges.result:
        Updated results
      mysql-test/r/union.result:
        Updated results
      mysql-test/r/update.result:
        Updated results
      mysql-test/r/user_var.result:
        Updated results
      mysql-test/r/varbinary.result:
        Updated results
      mysql-test/r/variables.result:
        Updated results
      mysql-test/t/ansi.test:
        Test of sql_mode
      mysql-test/t/derived.test:
        Updated results
      mysql-test/t/func_system.test:
        Make this independen of the MySQL server name
      mysql-test/t/lowercase_table.test:
        Cleanup
      mysql-test/t/olap.test:
        A lot of new tests
      mysql-test/t/sql_mode.test:
        More test for sql_mode
      mysql-test/t/subselect.test:
        Added a few new tests (to find a bug in the item_ref code)
      scripts/Makefile.am:
        Added mysql_fix_privilege_tables.sql
      scripts/mysql_fix_privilege_tables.sh:
        Totally new script.  This bascily just pipes mysql_fix_privilege_tables.sql through 'mysql' to 'mysqld'
      sql/Makefile.am:
        Added sql_state.cc
      sql/item.cc:
        Extended Item_field::eq() to be able to better match GROUP BY fields on the command line.
        Needed for ROLLUP
      sql/item.h:
        Added function to be able to avoid calling current_thd() when doing new Item.
      sql/item_sum.cc:
        Moved copy_or_same() and some reset() functions from item_sum.h
        Needed to be able to access thd->mem_root.
      sql/item_sum.h:
        Moved some functions to item_sum.cc
        Added make_unique() for ROLLUP
      sql/item_uniq.h:
        Fixed return value
      sql/mysql_priv.h:
        Updated MODE flags
      sql/mysqld.cc:
        Added ANSI as it's own mode
        Moved charset_info variables here
        Cleaned up handler_count handling (for NT)
        Added table_alias_charset, for easier --lower-case-table-name handling
      sql/net_serv.cc:
        New comment
      sql/protocol.cc:
        Send SQLSTATE to client
      sql/set_var.cc:
        Better SQL_MODE handling (Setting complex options also sets sub options)
      sql/set_var.h:
        Better SQL_MODE handling
      sql/sql_base.cc:
        Make alias depend on --lower-case-table-names
        Make find_item_in_list also check database name
      sql/sql_cache.cc:
        Indentation cleanup
      sql/sql_list.h:
        Added safety assert
        Addes support of alloc without current_thd()
      sql/sql_prepare.cc:
        Update after prototype change
      sql/sql_select.cc:
        Added ROLLUP
      sql/sql_select.h:
        structures for rollup
      sql/sql_show.cc:
        Easier SQL_MODE handling
      sql/sql_string.cc:
        Move CHARSET_INFO to mysqld (to be together with all other global variables)
      sql/sql_string.h:
        Added function to be able to avoid calling current_thd() when doing new Item.
      sql/sql_table.cc:
        Simpler --lower-case-table-name handling
      sql/sql_union.cc:
        Update after prototype change
      sql/sql_yacc.yy:
        ROLLUP
      sql/unireg.h:
        bmove_allign ->bmove_align
      strings/Makefile.am:
        Fix to be able to compile str_test.c
      strings/ctype.c:
        Removed empty lines
      strings/str_test.c:
        Added test of bmove_align
      strings/strings-x86.s:
        Faster bmove_align, bmove_upp and strmake
      strings/strings.asm:
        move_allg
      b388eb00
  18. 29 May, 2003 1 commit
  19. 21 Mar, 2003 1 commit
    • unknown's avatar
      Fixes for fill_help_tables.sql · e4ae47ff
      unknown authored
      innobase/ha/ha0ha.c:
        Removed compiler warnings
      mysql-test/t/innodb.test:
        Another fix for cardinality
      scripts/Makefile.am:
        Install fill_help_tables.sql in prefix/share/mysql
        Don't install make_binary_distribution
      scripts/fill_help_tables.sh:
        use INSERT IGNORE to avoid errors
      scripts/make_binary_distribution.sh:
        Install and use fill_help_tables.sql
      scripts/mysql_install_db.sh:
        Search for and use fill_help_tables.sql
      sql/mysqld.cc:
        Don't write shutdown message when called from mysql_install_db
      support-files/Makefile.am:
        Don't install binary-configure
      support-files/binary-configure.sh:
        Don't use config files
      e4ae47ff
  20. 20 Feb, 2003 1 commit
  21. 03 Feb, 2003 1 commit
    • unknown's avatar
      - renamed scripts/fill_func_tables.sh to scripts/fill_help_tables and · a46ca55c
      unknown authored
         updated all relevant files to honor this change (as discussed with vva)
       - added some more comments to the fill_help_tables script
       - minor cleanups
      
      
      scripts/Makefile.am:
         - renamed fill_funct_tables -> fill_help_tables to clarify purpose
           of this script (after discussing this with vva)
         - make sure "make clean" removes both the output and the script
         - fixed tabbing
      scripts/fill_help_tables.sh:
         - reflect name change, add some more info about the function of this script
      scripts/mysql_install_db.sh:
         - renamed fill_func_tables.sql -> fill_help_tables.sql (this does not yet
           resolve the problem that mysql_install_db does not find this file in 
           the binary distribution)
      a46ca55c
  22. 20 Dec, 2002 1 commit
    • unknown's avatar
      Changed thd variables max_join_size and select_limit to type ha_rows. · 791e9fb3
      unknown authored
      This fixed some optimization problems when using -DBIG_TABLES
      Portabilty fixes for OpenUnix and HPUX
      Added C and C++ version numbers to mysqlbug
      
      
      Docs/mysqld_error.txt:
        Added new error message
      acinclude.m4:
        Fix for configure problem on OpenUnix
      configure.in:
        Fix for OpenUnix
        Added C and C++ versions to mysqlbug
      mysql-test/r/variables.result:
        Update of max_join_size handling
      mysql-test/t/variables.test:
        Update of max_join_size handling
      mysys/Makefile.am:
        Removed duplicate row
      mysys/my_alloc.c:
        Safety fixes (not fatal)
      scripts/Makefile.am:
        Added C and C++ compiler versions to mysqlbug
      scripts/mysqlbug.sh:
        Added C and C++ compiler versions to mysqlbug
      sql/item_func.cc:
        Fixed that user variables that changes are not threated as constants.
      sql/item_func.h:
        Fixed that user variables that changes are not threated as constants.
      sql/mysqld.cc:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/repl_failsafe.cc:
        Removed not needed cast
      sql/set_var.cc:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/set_var.h:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/slave.cc:
        Removed not needed cast
      sql/sql_class.h:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/sql_parse.cc:
        Removed not needed cast
        Fixed security problem with mysql_drop_db()
      sql/sql_show.cc:
        Changed thd variables max_join_size and select_limit to type ha_rows
      sql/structs.h:
        Changed thd variables max_join_size and select_limit to type ha_rows
      791e9fb3
  23. 07 Nov, 2002 1 commit
    • unknown's avatar
      Portability fixes for Fortre C++ 5.0 (on Sun) in 32 and 64 bit modes. · c88b9102
      unknown authored
      client/mysqlbinlog.cc:
        Portability fix
      configure.in:
        Added use of ASFLAGS (For Solaris with Forte 5.0)
      include/my_global.h:
        Portability fix
      include/myisam.h:
        Portability fix
      include/queues.h:
        Portability fix
      innobase/include/ut0ut.h:
        Portability fix
      innobase/log/log0log.c:
        Portability fix
      innobase/rem/rem0cmp.c:
        Portability fix
      innobase/trx/trx0sys.c:
        Portability fix
      isam/pack_isam.c:
        Portability fix
      myisam/ft_boolean_search.c:
        Portability fix
      myisam/mi_dynrec.c:
        Code change to go around bug in Forte 5.0
      myisam/sort.c:
        Portability fix
      mysys/my_aes.c:
        Portability fix
      scripts/Makefile.am:
        Support for ASFLAGS
      scripts/mysqlbug.sh:
        Support for ASFLAGS
      sql/field.cc:
        Portability fix
      sql/filesort.cc:
        Portability fix
      sql/gen_lex_hash.cc:
        Portability fix
      sql/ha_innodb.cc:
        Portability fix
        Changed SHOW INNODB STATUS to return error instead of writing message to log file.
      sql/ha_isammrg.cc:
        Portability fix
      sql/ha_myisam.cc:
        Portability fix
      sql/ha_myisammrg.cc:
        Portability fix
      sql/hash_filo.h:
        Portability fix
      sql/hostname.cc:
        Portability fix
      sql/item_cmpfunc.h:
        Indentation change
      sql/item_func.cc:
        Portability fix
      sql/item_func.h:
        Portability fix
      sql/log.cc:
        Portability fix
      sql/log_event.cc:
        Portability fix
      sql/mysql_priv.h:
        Portability fix
      sql/mysqld.cc:
        Portability fix
        Fixed bug with rpl_recovery_rank command line option on 64 bit systems
      sql/opt_range.cc:
        Portability fix
      sql/repl_failsafe.cc:
        Portability fix
      sql/slave.cc:
        Portability fix
      sql/slave.h:
        Portability fix
      sql/sql_acl.cc:
        Portability fix
      sql/sql_base.cc:
        Portability fix
      sql/sql_cache.cc:
        Portability fix
      sql/sql_cache.h:
        Portability fix
      sql/sql_class.cc:
        Portability fix
      sql/sql_delete.cc:
        Portability fix
      sql/sql_insert.cc:
        Portability fix
      sql/sql_manager.cc:
        Portability fix
      sql/sql_parse.cc:
        Portability fix
      BUILD/compile-solaris-sparc-forte:
        C
      sql/sql_udf.cc:
        Portability fix
      sql/sql_update.cc:
        Portability fix
      strings/Makefile.am:
        Portability fix
      strings/bmove_upp-sparc.s:
        Fix so that this works on 32 and 64 bit sparcs
      strings/str_test.c:
        Cleanup
      strings/strappend-sparc.s:
        Fix so that this works on 32 and 64 bit sparcs
      strings/strend-sparc.s:
        Fix so that this works on 32 and 64 bit sparcs
      strings/strmake-sparc.s:
        Fix so that this works on 32 and 64 bit sparcs
      strings/strmov-sparc.s:
        Fix so that this works on 32 and 64 bit sparcs
      strings/strnmov-sparc.s:
        Fix so that this works on 32 and 64 bit sparcs
      strings/strstr-sparc.s:
        Fix so that this works on 32 and 64 bit sparcs
      strings/strxmov-sparc.s:
        Fixes to make this more portable, but it's still not usable on 64 bit systems :(
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      c88b9102
  24. 28 Oct, 2002 1 commit
    • unknown's avatar
      add help command on server side · fc4c9c01
      unknown authored
      include/mysqld_error.h:
        add error for corrupt help db
      scripts/Makefile.am:
        add script for fill help db
      scripts/mysql_install_db.sh:
        modify for add help db
      sql/Makefile.am:
        modify for add sql_help.cc
      sql/lex.h:
        add help command
      sql/mysql_priv.h:
        add mysqld_help function declaration
      sql/share/czech/errmsg.txt:
        add message for help-db error
      sql/share/danish/errmsg.txt:
        add message for help-db error
      sql/share/dutch/errmsg.txt:
        add message for help-db error
      sql/share/english/errmsg.txt:
        add message for help-db error
      sql/share/estonian/errmsg.txt:
        add message for help-db error
      sql/share/french/errmsg.txt:
        add message for help-db error
      sql/share/german/errmsg.txt:
        add message for help-db error
      sql/share/greek/errmsg.txt:
        add message for help-db error
      sql/share/hungarian/errmsg.txt:
        add message for help-db error
      sql/share/italian/errmsg.txt:
        add message for help-db error
      sql/share/japanese/errmsg.txt:
        add message for help-db error
      sql/share/korean/errmsg.txt:
        add message for help-db error
      sql/share/norwegian-ny/errmsg.txt:
        add message for help-db error
      sql/share/norwegian/errmsg.txt:
        add message for help-db error
      sql/share/polish/errmsg.txt:
        add message for help-db error
      sql/share/portuguese/errmsg.txt:
        add message for help-db error
      sql/share/romanian/errmsg.txt:
        add message for help-db error
      sql/share/russian/errmsg.txt:
        add message for help-db error
      sql/share/serbian/errmsg.txt:
        add message for help-db error
      sql/share/slovak/errmsg.txt:
        add message for help-db error
      sql/share/spanish/errmsg.txt:
        add message for help-db error
      sql/share/swedish/errmsg.txt:
        add message for help-db error
      sql/share/ukrainian/errmsg.txt:
        add message for help-db error
      sql/sql_lex.h:
        add SQLCOM_END 
        and help_arg in Lex
      sql/sql_parse.cc:
        add SQLCOM_HELP handler
      sql/sql_yacc.yy:
        add help command
      fc4c9c01
  25. 27 Jun, 2002 1 commit
    • unknown's avatar
      Removed mysql_ssl_clear() · 835a75c9
      unknown authored
      Added statistics information for alarms (for bug tracking)
      Don't store "incomplete" in the xxx.cfg file if we are not using --restart. (Crash-me)
      Enlarged STACK_BUF_ALLOC becasue of failed crash-me test
      Aded new script mysql_tableinfo to make a system directory.
      
      
      Docs/manual.texi:
        Changelog and TODO
      include/mysql.h:
        Removed mysql_ssl_clear() (One should use mysql_close() instead)
      include/thr_alarm.h:
        Added info for alarms
      libmysql/libmysql.c:
        Made mysql_ssl_clear() static
      libmysql/libmysql.def:
        cleanup
      libmysqld/libmysqld.def:
        cleanup
      myisam/myisamchk.c:
        describe -> description
      myisam/myisampack.c:
        Fixed copyright.
      mysys/thr_alarm.c:
        Added statistics information for alarms (for bug tracking)
      scripts/Makefile.am:
        Added mysql_table_info
      sql-bench/crash-me.sh:
        Don't store "incomplete" in the xxx.cfg file if we are not using --restart.
        This was done becasue "incomplete" made it harder to quickly repeat a test that
        failed.
      sql-bench/limits/mysql.cfg:
        Update to 1.58
      sql/hostname.cc:
        Remved compiler warning
      sql/item_func.cc:
        cleanup
      sql/item_func.h:
        Cleanup
      sql/mysql_priv.h:
        Enlarged STACK_BUF_ALLOC becasue of failed crash-me test
      sql/opt_range.cc:
        Removed purify warning
      sql/sql_parse.cc:
        cleanup
      sql/sql_test.cc:
        Added ala
      835a75c9
  26. 09 Jun, 2002 1 commit
  27. 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
  28. 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
  29. 19 Dec, 2001 1 commit
    • unknown's avatar
      mysql_fix_extensions added · 6a39d321
      unknown authored
      BitKeeper/etc/ignore:
        Added scripts/mysql_fix_extensions to the ignore list
      scripts/mysql_fix_extensions.sh:
        typo fixed
      6a39d321
  30. 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
  31. 28 Jun, 2001 1 commit
    • unknown's avatar
      Changed safe_mysqld -> mysqld_safe · 833f353e
      unknown authored
      Added some alias to SHOW commands
      Prepare for dynamic changing of MySQL variables
      
      
      man/Makefile.am:
        Changed safe_mysqld -> mysqld_safe
      man/isamchk.1:
        Changed safe_mysqld -> mysqld_safe
      man/isamlog.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysql.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysql_zap.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysqlaccess.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysqladmin.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysqld.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysqld_multi.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysqld_safe.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysqldump.1:
        Changed safe_mysqld -> mysqld_safe
      man/mysqlshow.1:
        Changed safe_mysqld -> mysqld_safe
      man/perror.1:
        Changed safe_mysqld -> mysqld_safe
      man/replace.1:
        Changed safe_mysqld -> mysqld_safe
      man/which.2:
        Changed safe_mysqld -> mysqld_safe
      myisam/mi_search.c:
        Fixed bug when using packed keys.
      scripts/Makefile.am:
        Changed safe_mysqld -> mysqld_safe
      scripts/make_binary_distribution.sh:
        Changed safe_mysqld -> mysqld_safe
      scripts/mysql_install_db.sh:
        Changed safe_mysqld -> mysqld_safe
      scripts/mysqld_multi.sh:
        Changed safe_mysqld -> mysqld_safe
      scripts/mysqld_safe-watch.sh:
        Changed safe_mysqld -> mysqld_safe
      scripts/mysqld_safe.sh:
        Changed safe_mysqld -> mysqld_safe
      sql/lex.h:
        Addex SHOW INDEXES as an alias for SHOW INDEX
      sql/sql_class.cc:
        Prepare for dynamic changing of MySQL variables
      sql/sql_lex.h:
        Prepare for dynamic changing of MySQL variables
      sql/sql_yacc.yy:
        Some changes to SHOW commands.
      support-files/binary-configure.sh:
        Changed safe_mysqld -> mysqld_safe
      support-files/mysql-max.spec.sh:
        Changed safe_mysqld -> mysqld_safe
      support-files/mysql-multi.server.sh:
        Changed safe_mysqld -> mysqld_safe
      support-files/mysql.server.sh:
        Changed safe_mysqld -> mysqld_safe
      support-files/mysql.spec.sh:
        Changed safe_mysqld -> mysqld_safe
      833f353e
  32. 19 Jan, 2001 1 commit
    • unknown's avatar
      Add --with-server-suffix (MYSQL_SERVER_SUFFIX). · c25f29bc
      unknown authored
      configure.in:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      include/mysql_version.h.in:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      myisam/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      mysql-test/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      scripts/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      scripts/mysqlbug.sh:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      sql-bench/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      sql/mysqld.cc:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      support-files/Makefile.am:
        add --with-server-suffix (MYSQL_SERVER_SUFFIX)
      c25f29bc
  33. 16 Dec, 2000 1 commit
    • unknown's avatar
      Fixed error when copying mysqld_multi · 289de3ff
      unknown authored
      Fixes for mysql-test
      Fixed race condition in SHOW LOGS
      
      
      BUILD/compile-solaris-sparc:
        cleanup
      Build-tools/Do-compile:
        Fixed problem
      Makefile.am:
        Merged tests with benchmarks
      configure.in:
        Fix for Solaris 2.8
      scripts/Makefile.am:
        Fixed error when copying mysqld_multi
      scripts/make_binary_distribution.sh:
        Fixes for mysql-test
      sql/ha_berkeley.cc:
        Fixed race condition in SHOW LOGS
      sql/mysqld.cc:
        Fixed bug in networking
      289de3ff
  34. 07 Dec, 2000 1 commit
    • unknown's avatar
      Changed name mysql_multi_mysqld to mysqld_multi. · 54649a94
      unknown authored
      Docs/manual.texi:
        Changed name mysql_multi_mysqld to mysqld_multi.
        This is because safe_mysqld will be converted to mysqld_safe
        in the future and the new name is shorter than the old one.
      scripts/Makefile.am:
        Added mysqld_multi
      scripts/mysqld_multi.sh:
        Changed name from mysql_multi_mysqld to mysqld_multi
      54649a94
  35. 17 Nov, 2000 1 commit
    • unknown's avatar
      Fixes for bugs in the usage of IO_CACHE · 8f906f77
      unknown authored
      Docs/manual.texi:
        Fixed the TRUNCATE syntax + Changelog
      include/my_sys.h:
        Added my_b_vprintf
      mysys/mf_iocache2.c:
        Added my_b_vprintf
      mysys/my_vsnprintf.c:
        Fixed fatal (new) bug
      mysys/thr_lock.c:
        Cleanup
      readline/bind.c:
        cleanup
      scripts/Makefile.am:
        Added mysqldumpslow
      sql-bench/crash-me.sh:
        Fixed TRUNCATE
      sql/log.cc:
        bug fix
      sql/log_event.cc:
        Removed compiler warnings
      sql/log_event.h:
        Fixed non portable header in binary dump
      sql/mf_iocache.cc:
        cleanup
      sql/mysqld.cc:
        Fixed loop problem on NT
      sql/slave.cc:
        cleanup
      sql/sql_class.cc:
        Fixed typos
      sql/sql_parse.cc:
        cleanup
      sql/sql_select.cc:
        bugfix
      sql/sql_table.cc:
        cleanup
      sql/sql_yacc.yy:
        Changed ALTER TABLE ... ORDER BY to get fewer warnings
      sql/unireg.cc:
        cleanup
      sql/unireg.h:
        Added missing define
      8f906f77
  36. 14 Sep, 2000 1 commit
    • unknown's avatar
      configure fixes · 3dac1751
      unknown authored
      scripts/make_binary_distribution.sh:
        Change mode to -rw-rw-r--
      scripts/mysql_convert_table_format.sh:
        Change mode to -rw-rw-r--
      scripts/mysql_find_rows.sh:
        Change mode to -rw-rw-r--
      scripts/mysql_setpermission.sh:
        Change mode to -rw-rw-r--
      scripts/mysql_zap.sh:
        Change mode to -rw-rw-r--
      scripts/mysqlaccess.sh:
        Change mode to -rw-rw-r--
      scripts/mysqlbug.sh:
        Change mode to -rw-rw-r--
      scripts/mysqlhotcopy.sh:
        Change mode to -rw-rw-r--
      scripts/safe_mysqld-watch.sh:
        Change mode to -rw-rw-r--
      scripts/safe_mysqld.sh:
        Change mode to -rw-rw-r--
      scripts/mysqlaccess.conf:
        Change mode to -rw-rw-r--
      support-files/binary-configure.sh:
        Change mode to -rw-rw-r--
      Docs/Makefile.am:
        Remove manual.ps when doing make distclean
      Docs/manual.texi:
        Fix
      Makefile.am:
        Fix that my_config.h is properly created and removed
      include/Makefile.am:
        Fix that my_config.h is properly created and removed
      libmysql/Makefile.shared:
        Add some distclean targets
      scripts/Makefile.am:
        Add some distclean targets
      support-files/Makefile.am:
        Add some distclean targets
      3dac1751
  37. 07 Sep, 2000 1 commit
    • unknown's avatar
      Small bug fixes · bee9933a
      unknown authored
      support-files/mysql.server-sys5.sh:
        Change mode to -rw-rw-r--
      Docs/manual.texi:
        Added information about BeOS, Access 2000, AIX and user links
      client/mysql.cc:
        Fixed SOURCE to work on windows
      client/mysqldump.c:
        Strip of white space
      configure.in:
        Fix for AIX
      include/dbug.h:
        Assert handling
      include/my_pthread.h:
        Ia64 needs more thread stack than other processors
      include/my_sys.h:
        More comments
      myisam/mi_key.c:
        Fixed wrong key length checks
      mysql.proj:
        update
      mysys/charset.c:
        Cleanup
      mysys/mf_keycache.c:
        Moved SEC_LINK to file that used it
      mysys/my_static.h:
        Moved SEC_LINK to file that used it
      scripts/Makefile.am:
        Fix for debian
      scripts/mysql_install_db.sh:
        Cleanup
      sql/gen_lex_hash.cc:
        Better values
      sql/ha_berkeley.cc:
        Fix of reading of unique key
      sql/handler.cc:
        Fix memory allocation bug
      sql/mysqld.cc:
        Fix for Ia64
      sql/share/charsets/latin1.conf:
        Fixed sortorder back to scandinavian.
      sql/sql_yacc.yy:
        FULL shouldn't be a keyword
      support-files/Makefile.am:
        Fix for debian
      support-files/mysql.server.sh:
        Cleanups
      bee9933a
  38. 18 Aug, 2000 1 commit
    • unknown's avatar
      Updated benchmark and results for PostgreSQL 7.0.2 · 6a5d4b6b
      unknown authored
      Added more status to the MyISAM files to avoid checking files that
      has already been checked.
      
      
      Docs/manual.texi:
        Turn off RCS flag
      BitKeeper/deleted/.del-ATIS-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-RUN-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-alter-table-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-big-tables-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-connect-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-create-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-insert-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-select-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-wisconsin-pg-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-ATIS-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-RUN-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-alter-table-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-big-tables-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-connect-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-create-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-insert-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-select-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-wisconsin-pg_fast-Linux_2.2.14_5.0_i686:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-ATIS-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-RUN-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-alter-table-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-big-tables-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-connect-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-create-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-insert-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-select-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-wisconsin-pg_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-ATIS-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-ATIS-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-RUN-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-RUN-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-alter-table-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-alter-table-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-big-tables-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-big-tables-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-connect-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-connect-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-create-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-create-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-insert-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-insert-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-select-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-select-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-wisconsin-mysql-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      BitKeeper/deleted/.del-wisconsin-mysql_fast-Linux_2.2.14_5.0_i686-cmp-mysql,pg:
        ***MISSING WEAVE***
      dbug/Makefile.am:
        Fix for bitkeeper
      extra/Makefile.am:
        Fix for bitkeeper
      heap/Makefile.am:
        Fix for bitkeeper
      isam/Makefile.am:
        Fix for bitkeeper
      merge/Makefile.am:
        Fix for bitkeeper
      myisam/ChangeLog:
        Added more status for the MyISAM table
      myisam/Makefile.am:
        Fix for bitkeeper
      myisam/mi_check.c:
        Added more status for the MyISAM table
      myisam/mi_extra.c:
        Added more status for the MyISAM table
      myisam/mi_page.c:
        Added more status for the MyISAM table
      myisam/myisamchk.c:
        Added more status for the MyISAM table
      myisammrg/Makefile.am:
        Fix for bitkeeper
      mysys/Makefile.am:
        Fix for bitkeeper
      readline/Makefile.am:
        Fix for bitkeeper
      regex/Makefile.am:
        Fix for bitkeeper
      scripts/Makefile.am:
        Fix for bitkeeper
      sql-bench/Comments/Access.crash-me:
        Comments for crash-me
      sql-bench/Comments/Adabas.crash-me:
        Comments for crash-me
      sql-bench/Comments/Empress.crash-me:
        Comments for crash-me
      sql-bench/Comments/Informix.crash-me:
        Comments for crash-me
      sql-bench/Comments/postgres.benchmark:
        Updated documentation
      sql-bench/Comments/postgres.crash-me:
        Comments for crash-me
      sql-bench/Makefile.am:
        Added the Comments directory
      sql-bench/Results/ATIS-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/ATIS-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/RUN-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/RUN-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/alter-table-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/alter-table-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/big-tables-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/big-tables-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/connect-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/connect-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/create-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/create-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/insert-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/insert-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/select-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/select-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/wisconsin-pg-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/Results/wisconsin-pg_fast-Linux_2.2.14_my_SMP_i686-cmp-mysql,pg:
        Version number fix
      sql-bench/compare-results.sh:
        Fix bug in --relative
      sql-bench/test-insert.sh:
        Fix for duplicate key test
      sql/ha_myisam.cc:
        Don't check checked tables
      sql/lex.h:
        Remove MAX as a reserved keyword
      sql/sql_yacc.yy:
        Remove MAX as a reserved keyword
      strings/Makefile.am:
        Fix for bitkeeper
      support-files/Makefile.am:
        Fix for bitkeeper
      tests/Makefile.am:
        Fix for bitkeeper
      vio/Makefile.am:
        Fix for bitkeeper
      6a5d4b6b