1. 24 Aug, 2004 40 commits
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · 2ce9f883
      unknown authored
      into poseidon.(none):/home/tomas/mysql-4.1-clean
      
      
      2ce9f883
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 89b7c75f
      unknown authored
      into mysql.com:/media/sda1/mysql/mysql-4.1-5034
      
      
      89b7c75f
    • unknown's avatar
      committed skipped file · aa8a12fe
      unknown authored
      aa8a12fe
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 16a364f5
      unknown authored
      into mysql.com:/media/sda1/mysql/mysql-4.1-5034
      
      
      16a364f5
    • unknown's avatar
      Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-4.1 · 6564806b
      unknown authored
      into eagle.mysql.r18.ru:/home/vva/work/BUG_libedit/mysql-4.1.clear
      
      
      acinclude.m4:
        Auto merged
      configure.in:
        Auto merged
      6564806b
    • unknown's avatar
      bug fix · 4cf158b0
      unknown authored
      4cf158b0
    • unknown's avatar
      resurrect fix for · c2d207e8
      unknown authored
      Bug #4696  	segfault in cmd-line-utils/libedit/history.c:history_save() 
      (bundled libedit)
      
      
      c2d207e8
    • unknown's avatar
      enables case insensitivity in ndb config file · 45c94a28
      unknown authored
      45c94a28
    • unknown's avatar
      Merge: manual resolve · 205cf804
      unknown authored
      
      sql/sql_class.h:
        Auto merged
      sql/sql_lex.cc:
        Auto merged
      sql/sql_lex.h:
        Auto merged
      sql/sql_prepare.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      sql/sql_class.cc:
        Manual resolve of the merge
      205cf804
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · a8f24dc7
      unknown authored
      into poseidon.(none):/home/tomas/mysql-4.1-clean
      
      
      a8f24dc7
    • unknown's avatar
      fixed AC_DEFINE(HAVE_HIST_ENTRY) in acinclude.m4 · 6b20f46a
      unknown authored
      
      acinclude.m4:
        fixed AC_DEFINE(HAVE_HIST_ENTRY)
      6b20f46a
    • unknown's avatar
      Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-4.1 · f8f627d0
      unknown authored
      into eagle.mysql.r18.ru:/home/vva/work/BUG_libedit/mysql-4.1.clear_v2
      
      
      client/mysql.cc:
        Auto merged
      configure.in:
        Auto merged
      f8f627d0
    • unknown's avatar
      fixed AC_DEFINE's for libedit-2.6.7 · 99538ee3
      unknown authored
      
      acinclude.m4:
        fixed AC_DEFINE(HAVE_HIST_ENTRY)
      configure.in:
        fixed new AC_DEFINE's
      99538ee3
    • unknown's avatar
      added skipped file for libedit-2.6.7 · b755d751
      unknown authored
      b755d751
    • unknown's avatar
      Fix for Bug#5034 "prepared "select 1 into @arg15", second · 49bd559e
      unknown authored
      execute crashes server": we were deleting lex->result
      after each execute, but prepared statements assumed that
      it's left intact.
      The fix adds cleanup() method to select_result hierarchy,
      so that result objects can be reused.
      Plus we now need to delete result objects more wisely.
      
      
      mysql-test/r/ps.result:
        Test results fixed: test case for bug#5034
      mysql-test/t/ps.test:
        A test case for bug#5034, few followups
      sql/sql_class.cc:
        - fix warning in THD::THD
        - implementation of cleanup() for select_result hierarchy
        - select_export::send_eof was identical to 
          select_dump::send_eof: moved to the base class select_to_file.
        - Statement::end_statement() to end lex, free items, and
          delete possible select_result
      sql/sql_class.h:
        - select_result::cleanup() declaration
        -
      sql/sql_insert.cc:
        - implementation of select_insert::cleanup(): currently
          we always create a new instance of select_insert/
          select_create on each execute.
      sql/sql_lex.cc:
        - with more complicated logic of freeing lex->result it's 
          easier to have it non-zero only if it points to a valid
          result.
      sql/sql_lex.h:
        Now st_lex::st_lex is not empty.
      sql/sql_parse.cc:
        mysql_execute_command():
        - delete select_result *result only if it was created in
          this function.
        - use end_statement() to cleanup lex and thd in the end of
          each statement.
        - no need to save THD::lock if this is explain. This save
          apparently left from times when derived tables were 
          materialized here, not in open_and_lock_tables.
      sql/sql_prepare.cc:
        - call result->cleanup() in reset_stmt_for_execute
        - now Statement is responsible for freeing its lex->result.
      sql/sql_select.cc:
        handle_select():
        - don't delete result, it might be needed
          for next executions
        - result is never null
      49bd559e
    • unknown's avatar
      added skipped macro for new libedit-2.6.7 in configure.in · b4727f76
      unknown authored
      
      configure.in:
        added skipped macro for new libedit-2.6.7
      b4727f76
    • unknown's avatar
      upgrade to libedit-2.6.7 · af043308
      unknown authored
      (fixed Bug #4462 libedit compile failure)
      
      
      BitKeeper/etc/ignore:
        change config.h -> config.h to commit cmd-line-utils/libedit/config.h
      cmd-line-utils/libedit/Makefile.am:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/chared.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/chared.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/common.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/el.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/el.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/emacs.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/hist.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/hist.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/histedit.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/history.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/key.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/key.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/makelist.sh:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/map.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/map.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/parse.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/prompt.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/read.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/readline.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/readline/readline.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/refresh.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/search.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/search.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/sig.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/sig.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/sys.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/term.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/tokenizer.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/tokenizer.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/tty.c:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/tty.h:
        upgrade to libedit-2.6.7
      cmd-line-utils/libedit/vi.c:
        upgrade to libedit-2.6.7
      configure.in:
        change liblibedit.a to correct libedit.a
      af043308
    • unknown's avatar
      Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-4.1 · 68a1e80d
      unknown authored
      into build.mysql.com:/users/rburnett/mysql41
      
      
      68a1e80d
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 3e45c82e
      unknown authored
      into mysql.com:/home/my/mysql-4.1
      
      
      sql/sql_class.cc:
        Auto merged
      3e45c82e
    • unknown's avatar
      my_handler.c: · a66d1ba7
      unknown authored
        Added (my_bool) cast to !(nextflag & SEARCH_PREFIX) code to correct MSVC warning about mismatched integral types
      
      
      mysys/my_handler.c:
        Added (my_bool) cast to !(nextflag & SEARCH_PREFIX) code to correct MSVC warning about mismatched integral types
      a66d1ba7
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1 · 63d25317
      unknown authored
      into mysql.com:/home/jonas/src/mysql-4.1
      
      
      63d25317
    • unknown's avatar
      Merge vvagin@bk-internal.mysql.com:/home/bk/mysql-4.1 · 7b2966f9
      unknown authored
      into eagle.mysql.r18.ru:/home/vva/work/BUG_4998/mysql-4.1
      
      
      7b2966f9
    • unknown's avatar
      Merge eagle.mysql.r18.ru:/home/vva/work/mysql.orig/clear/mysql-4.1 · 4c55e2ac
      unknown authored
      into eagle.mysql.r18.ru:/home/vva/work/BUG_4998/mysql-4.1
      
      
      sql-common/client.c:
        Auto merged
      4c55e2ac
    • unknown's avatar
      more accurate processing of find_type result · 84648dfb
      unknown authored
      (Bug #4998 --protocol doesn't reject bad values)
      
      
      client/mysql.cc:
        more accurate processing of find_type result
      client/mysqladmin.c:
        more accurate processing of find_type result
      client/mysqlbinlog.cc:
        more accurate processing of find_type result
      client/mysqlcheck.c:
        more accurate processing of find_type result
      client/mysqldump.c:
        more accurate processing of find_type result
      client/mysqlimport.c:
        more accurate processing of find_type result
      client/mysqlshow.c:
        more accurate processing of find_type result
      sql-common/client.c:
        more accurate processing of find_type result
      84648dfb
    • unknown's avatar
      Portablity fixes & simple optimizations · 20f24a42
      unknown authored
      
      sql/ha_ndbcluster.cc:
        Added missing cast
      sql/item.cc:
        Portability fix (for windows)
      sql/lock.cc:
        Cleanup + more comments
      sql/sql_class.cc:
        Portability fix + more comments
      sql/sql_select.cc:
        Portability fix
      sql/sql_table.cc:
        Simpler handling of auto_increment in ALTER TABLE
      20f24a42
    • unknown's avatar
      added alias MYSQLD for API · 0639dbbf
      unknown authored
      added choice of : or = in config file
      set case insensitive section names
      
      
      mysql-test/ndb/ndb_config_2_node.ini:
        added alias MYSQLD for API
      ndb/src/common/mgmcommon/ConfigInfo.cpp:
        added alias MYSQLD for API
      ndb/src/common/mgmcommon/ConfigInfo.hpp:
        added alias MYSQLD for API
      ndb/src/common/mgmcommon/InitConfigFileParser.cpp:
        added choice of : or = in config file
      0639dbbf
    • unknown's avatar
      fixed : · de225e63
      unknown authored
      Bug #3937  	fails to compile with both gcc 3.3.3/icc8
      Bug #4728  	mysql couldn't be compiled using system readline (readline-4.3)
      
      
      acinclude.m4:
        1. added defun MYSQL_CHECK_READLINE_DECLARES_HIST_ENTRY for last versions of readline and libedit
        2. added #undef __P in defuns MYSQL_CHECK_LIBEDIT_INTERFACE, MYSQL_CHECK_NEW_RL_INTERFACE
      client/mysql.cc:
        1. added #undef __P before #include "readline/readline.h" because readline-4.2 declares own __P
        2. changed !defined(USE_LIBEDIT_INTERFACE) to !defined(HAVE_HIST_ENTRY) before declaring of own hist_entry
           because latest versions of libedit declare hist_entry too
      cmd-line-utils/Makefile.am:
        added copyright header
      configure.in:
        1. added comment for --with-readline/--with-libedit options
        2. added define for HAVE_HIST_ENTRY and macro to check it
        3. added AC_LANG_CPLUSPLUS before readline/libedit checks
      de225e63
    • unknown's avatar
      Use "configured" socklen_t · 940a6b4e
      unknown authored
      Fix master printout
      
      
      ndb/src/mgmclient/CommandInterpreter.cpp:
        Fix master printout
      ndb/src/mgmsrv/MgmtSrvr.cpp:
        Use "configured" socklen_t
      ndb/src/mgmsrv/MgmtSrvr.hpp:
        Use "configured" socklen_t
      ndb/src/mgmsrv/Services.cpp:
        Use "configured" socklen_t
      940a6b4e
    • unknown's avatar
      Compile fix sol9x86 · dbd2625f
      unknown authored
      
      ndb/src/kernel/blocks/grep/Grep.hpp:
        Remove own addRecSignal-methods
      ndb/src/kernel/blocks/grep/GrepInit.cpp:
        Remove own addRecSignal-methods
      ndb/src/mgmsrv/MgmtSrvr.cpp:
        #ifdef SUNPRO_CC 5.6
      ndb/src/ndbapi/NdbEventOperation.cpp:
        Compile fix
      ndb/src/ndbapi/NdbScanFilter.cpp:
        #ifdef SUNPRO_CC 5.6
      ndb/src/ndbapi/TransporterFacade.hpp:
        Compile fix
      ndb/test/ndbapi/testIndex.cpp:
        Compile fix
      dbd2625f
    • unknown's avatar
      Merge paul@bk-internal.mysql.com:/home/bk/mysql-4.1 · ae87e658
      unknown authored
      into kite-hub.kitebird.com:/src/extern/MySQL/bk/mysql-4.1
      
      
      ae87e658
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1 · d7dd19aa
      unknown authored
      into mysql.com:/dbdata/psergey/mysql-4.1-root-root
      
      
      d7dd19aa
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1 · 2ba96c63
      unknown authored
      into mysql.com:/home/jonas/src/mysql-4.1
      
      
      2ba96c63
    • unknown's avatar
      Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1 · 352965b3
      unknown authored
      into deer.(none):/home/hf/work/mysql-4.1.5066
      
      
      352965b3
    • unknown's avatar
      SCO unix compile fix · b1a91d21
      unknown authored
      
      ndb/src/common/portlib/Makefile.am:
        Rename from .c to .cpp as c++ features needed
      ndb/src/common/portlib/NdbTCP.cpp:
        NDB_MUTEX_INITIALIZER isn't preset on SCO unix
      ndb/src/ndbapi/Ndbinit.cpp:
        NDB_MUTEX_INITIALIZER isn't preset on SCO unix
      b1a91d21
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1 · 28ae9fcb
      unknown authored
      into mysql.com:/home/jonas/src/mysql-4.1
      
      
      28ae9fcb
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 0fa99ec2
      unknown authored
      into brandersnatch.localdomain:/home/dlenev/src/mysql-4.1-fix
      
      
      0fa99ec2
    • unknown's avatar
      Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1 · d96933b4
      unknown authored
      into deer.(none):/home/hf/work/mysql-4.1.5066
      
      
      d96933b4
    • unknown's avatar
      Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1 · c6e77b16
      unknown authored
      into deer.(none):/home/hf/work/mysql-4.1.emb
      
      
      c6e77b16
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1 · f6c7d7e4
      unknown authored
      into poseidon.(none):/home/tomas/mysql-4.1-clean
      
      
      f6c7d7e4
    • unknown's avatar
      some more printouts to SHOW command · 3dae7e93
      unknown authored
      
      mysql-test/ndb/ndbcluster.sh:
        stop instead of kill
      3dae7e93