1. 01 Feb, 2005 3 commits
    • unknown's avatar
      Proper fix for comparision with ' ' · c53184eb
      unknown authored
      (Bug #7788 "Table is full" occurs during a multitable update")
      
      
      client/mysqldump.c:
        Style fixes
      innobase/include/univ.i:
        UNIV_DEBUG should not depend on configure --debug but on --debug=full
      mysql-test/r/compare.result:
        Added test to find bug in previous bugfix
      mysql-test/t/compare.test:
        Added test to find bug in previous bugfix
      mysys/my_handler.c:
        Proper fix for comparision with ' '
      strings/ctype-big5.c:
        Proper fix for comparision with ' '
      strings/ctype-bin.c:
        Proper fix for comparision with ' '
      strings/ctype-gbk.c:
        Proper fix for comparision with ' '
      strings/ctype-latin1.c:
        Proper fix for comparision with ' '
      strings/ctype-mb.c:
        Proper fix for comparision with ' '
      strings/ctype-simple.c:
        Proper fix for comparision with ' '
      strings/ctype-sjis.c:
        Proper fix for comparision with ' '
      strings/ctype-tis620.c:
        Proper fix for comparision with ' '
      strings/ctype-ucs2.c:
        Proper fix for comparision with ' '
      strings/ctype-utf8.c:
        Proper fix for comparision with ' '
      c53184eb
    • unknown's avatar
      After merge fixes · e5d8e72a
      unknown authored
      
      innobase/mem/mem0pool.c:
        Auto merged
      sql/ha_innodb.cc:
        Auto merged
      configure.in:
        Ignore changes that were backported to 4.0
      scripts/mysql_install_db.sh:
        Ignore Ramil's changes for now
      e5d8e72a
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-4.1 · 99620cec
      unknown authored
      into mysql.com:/home/jimw/my/mysql-4.1-clean
      
      
      99620cec
  2. 31 Jan, 2005 14 commits
  3. 30 Jan, 2005 1 commit
    • unknown's avatar
      Bug#7011 · 934fde09
      unknown authored
        Fix replication for multi-update
        new test - rpl_multi_update2
      
      
      sql/mysql_priv.h:
        Bug#7011
          New function mysql_multi_update_lock()
      sql/sql_parse.cc:
        Bug#7011
          New function check_multi_update_lock()
          For multi-update on slave, perform an early open&lock
      sql/sql_update.cc:
        Bug#7011
          Split out multi-update locking into its own function,
            mysql_multi_update_lock()
      934fde09
  4. 29 Jan, 2005 10 commits
  5. 28 Jan, 2005 11 commits
  6. 27 Jan, 2005 1 commit
    • unknown's avatar
      Bug#8167 signal usage clash between mysql server and ndb shared memory · df7bb879
      unknown authored
          added shared memory config parameter, signum for use in signalling
          added global variable for holdign signum to be used for shared memory connection
          only fiddle with signals if it is set
          simplified common ndb client option handling
      
      
      ndb/include/Makefile.am:
        added common defaults file
      ndb/include/mgmapi/mgmapi_config_parameters.h:
        added shared memory config parameter, signum for use in signalling
      ndb/include/transporter/TransporterDefinitions.hpp:
        added shared memory config parameter, signum for use in signalling
      ndb/include/util/ndb_opts.h:
        simplified common ndb client option handling
      ndb/src/common/mgmcommon/IPCConfig.cpp:
        added shared memory config parameter, signum for use in signalling
      ndb/src/common/portlib/NdbThread.c:
        added global variable for holdign signum to be used for shared memory connection
        only block signals if shared memory is used
      ndb/src/common/transporter/SHM_Transporter.cpp:
        use signum in new global variable for shared memory signalling
      ndb/src/common/transporter/TransporterRegistry.cpp:
        use signum in new global variable for shared memory signalling
        only fiddle with signals if it is set
      ndb/src/cw/cpcd/main.cpp:
        ndb_opts not really used
      ndb/src/kernel/vm/Configuration.cpp:
        simplified common ndb client option handling
      ndb/src/mgmclient/main.cpp:
        simplified common ndb client option handling
      ndb/src/mgmsrv/ConfigInfo.cpp:
        added shared memory config parameter, signum for use in signalling
      ndb/src/mgmsrv/main.cpp:
        simplified common ndb client option handling
      ndb/tools/delete_all.cpp:
        simplified common ndb client option handling
      ndb/tools/desc.cpp:
        simplified common ndb client option handling
      ndb/tools/drop_index.cpp:
        simplified common ndb client option handling
      ndb/tools/drop_tab.cpp:
        simplified common ndb client option handling
      ndb/tools/listTables.cpp:
        simplified common ndb client option handling
      ndb/tools/restore/restore_main.cpp:
        simplified common ndb client option handling
      ndb/tools/select_all.cpp:
        simplified common ndb client option handling
      ndb/tools/select_count.cpp:
        simplified common ndb client option handling
      ndb/tools/waiter.cpp:
        simplified common ndb client option handling
      df7bb879