1. 21 Dec, 2005 1 commit
  2. 20 Dec, 2005 2 commits
    • unknown's avatar
      mysql.cc: · ec5c866e
      unknown authored
        Typo in help message.
      
      
      client/mysql.cc:
        Typo in help message.
      ec5c866e
    • unknown's avatar
      build fix · 243e112f
      unknown authored
      243e112f
  3. 19 Dec, 2005 2 commits
  4. 18 Dec, 2005 5 commits
  5. 17 Dec, 2005 1 commit
  6. 15 Dec, 2005 3 commits
    • unknown's avatar
      Fixed BUG #12440: "Incorrect processing of time values containing · 3d6179e7
      unknown authored
       long fraction and/or large exponent part".
      
      
      mysql-test/r/type_time.result:
        Fixed testcases results (bug #12440)
      mysql-test/t/type_time.test:
        Added testcases for bug #12440
      sql-common/my_time.c:
        Fixed bug #12440: "Incorrect processing of time values containing
         long fraction and/or large exponent part".
         Modified str_to_time(). Process properly fraction part containing
         more than 6 digits. Check for existence of exponent part which
         may result from %g formatting applied to time value specified as
         large real number.
      3d6179e7
    • unknown's avatar
      Makefile.am: · f0e7907c
      unknown authored
        - libtool wants spaces on parameters for its command line options
      
      
      zlib/Makefile.am:
        - libtool wants spaces on parameters for its command line options
      f0e7907c
    • unknown's avatar
      Makefile.am: · 7ffb48ea
      unknown authored
        - Modified zlib/Makefile.am to generate libz.so.1.2.3 instead of libz.so.0.0.0
      
      
      zlib/Makefile.am:
        - Modified zlib/Makefile.am to generate libz.so.1.2.3 instead of libz.so.0.0.0
      7ffb48ea
  7. 14 Dec, 2005 4 commits
  8. 13 Dec, 2005 5 commits
    • unknown's avatar
      Minor Netware specific changes. · ef5390e5
      unknown authored
      
      netware/BUILD/compile-linux-tools:
        Fixed compilation problem with Linux tools.
      scripts/make_binary_distribution.sh:
        Netware specific changes. Discard platform
        specific files and added a couple of missing files.
      sql/tztime.cc:
        Code not ported to Netware yet.
      ef5390e5
    • unknown's avatar
      Merge a193-229-222-105.elisa-laajakaista.fi:/home/my/bk/mysql-4.0 · 93eeb151
      unknown authored
      into  a193-229-222-105.elisa-laajakaista.fi:/home/my/bk/mysql-4.1
      
      
      netware/libmysql.def:
        Auto merged
      netware/my_print_defaults.def:
        Auto merged
      netware/myisamlog.def:
        Auto merged
      netware/myisampack.def:
        Auto merged
      netware/mysql.def:
        Auto merged
      netware/mysql_install_db.def:
        Auto merged
      netware/mysqladmin.def:
        Auto merged
      netware/mysqlbinlog.def:
        Auto merged
      netware/mysqlcheck.def:
        Auto merged
      netware/mysqld_safe.def:
        Auto merged
      netware/mysqldump.def:
        Auto merged
      netware/mysqlimport.def:
        Auto merged
      netware/perror.def:
        Auto merged
      93eeb151
    • unknown's avatar
      Increased stack size for clients on Netware. · 99c55577
      unknown authored
      New libc suggests doing this.
      
      99c55577
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/mysql-4.1 · 9577d74e
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/mysql-4.1-push
      
      
      ndb/src/ndbapi/NdbImpl.hpp:
        Auto merged
      ndb/src/ndbapi/NdbRecAttr.cpp:
        Auto merged
      ndb/src/ndbapi/ndb_cluster_connection.cpp:
        Auto merged
      9577d74e
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1 · b7c385d9
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/mysql-4.1-push
      
      b7c385d9
  9. 12 Dec, 2005 6 commits
    • unknown's avatar
      Merge aivanov@bk-internal.mysql.com:/home/bk/mysql-4.1 · 2cc3119d
      unknown authored
      into  mysql.com:/home/alexi/innodb-ss/mysql-4.1-ss11
      
      2cc3119d
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · 91ed373b
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      91ed373b
    • unknown's avatar
      Fix BUG#12071: "Windows hang: 'Opening tables' or 'Waiting for · bb69e6ff
      unknown authored
       table' lockup".
       Changes from the innodb-4.1-ss11 snapshot.
       Do not call os_file-create_tmpfile() at runtime. Instead, create
       a tempfile at startup and guard access to it with a mutex.
       Also, fix bugs:
       10511: "Wrong padding of UCS2 CHAR columns in ON UPDATE CASCADE";
       13778: "If FOREIGN_KEY_CHECKS=0, one can create inconsistent FOREIGN
       KEYs". When FOREIGN_KEY_CHECKS=0 we still need to check that
       datatypes between foreign key references are compatible.
       Also, added test cases (also for bug 9802).
      
      
      innobase/dict/dict0dict.c:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/dict/dict0load.c:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/include/dict0dict.h:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/include/dict0load.h:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/include/os0file.h:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/include/rem0cmp.h:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/include/srv0srv.h:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/rem/rem0cmp.c:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/row/row0ins.c:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/row/row0mysql.c:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/srv/srv0srv.c:
        Changes from the innodb-4.1-ss11 snapshot
      innobase/srv/srv0start.c:
        Changes from the innodb-4.1-ss11 snapshot
      libmysqld/ha_blackhole.cc:
        Changes from the innodb-4.1-ss11 snapshot
      mysql-test/r/innodb.result:
        Changes from the innodb-4.1-ss11 snapshot
      mysql-test/t/innodb.test:
        Changes from the innodb-4.1-ss11 snapshot
      sql/ha_innodb.cc:
        Changes from the innodb-4.1-ss11 snapshot
      bb69e6ff
    • unknown's avatar
      77ba92c4
    • unknown's avatar
      rpl_until.test + rpl_until.result · 7428cf62
      unknown authored
      Fix for bug#12429: Replication tests fail: "Slave_IO_Running" differs:
      The value is not important, and it depends on timing. Mask it.
      
      Backport and extension of a fix made by Matthias in 5.0, originally it was
      1.1976 05/12/05 17:57:48 mleich@mysql.com
      
      
      mysql-test/r/rpl_until.result:
        Fix for bug#12429: Replication tests fail: "Slave_IO_Running" differs:
        The value is not important, and it depends on timing. Mask it.
        
        Backport and extension of a fix made by Matthias in 5.0, originally it was
        1.1976 05/12/05 17:57:48 mleich@mysql.com
      mysql-test/t/rpl_until.test:
        Fix for bug#12429: Replication tests fail: "Slave_IO_Running" differs:
        The value is not important, and it depends on timing. Mask it.
        
        Backport and extension of a fix made by Matthias in 5.0, originally it was
        1.1976 05/12/05 17:57:48 mleich@mysql.com
      7428cf62
    • unknown's avatar
      ndb - bug#15685 · b00fbda2
      unknown authored
        Error in abort handling in TC when timeout during abort
        
      
      
      ndb/src/kernel/blocks/ERROR_codes.txt:
        New error codes
      ndb/src/kernel/blocks/dblqh/DblqhMain.cpp:
        New error codes
      ndb/src/kernel/blocks/dbtc/DbtcMain.cpp:
        Dont release transaction record to early
      ndb/test/ndbapi/testNodeRestart.cpp:
        Test case
      ndb/test/run-test/daily-basic-tests.txt:
        Test case
      b00fbda2
  10. 11 Dec, 2005 1 commit
    • unknown's avatar
      make_win_src_distribution.sh: · babaf2d3
      unknown authored
        Removed Visual Studio 6 project files, as they are not maintained
      
      
      scripts/make_win_src_distribution.sh:
        Removed Visual Studio 6 project files, as they are not maintained
      babaf2d3
  11. 09 Dec, 2005 1 commit
    • unknown's avatar
      bug#15632 - ndb · f0622629
      unknown authored
        Fix race between INCL_NODEREQ(prio b) and GCP_PREPARE(prio a) by also waiting for starting nodes
      
      
      ndb/include/ndb_version.h.in:
        Handle upgrade of bug fix
      ndb/src/kernel/blocks/ERROR_codes.txt:
        New error code for delaying INCL_NODE_REQ
      ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
        Fix race between INCL_NODEREQ(prio b) and GCP_PREPARE(prio a)
          by also waiting for starting nodes
      ndb/test/ndbapi/testNodeRestart.cpp:
        Add testcase for bug#15632
      f0622629
  12. 08 Dec, 2005 4 commits
    • unknown's avatar
      Fix calls to free_underlaid_joins() in INSERT, DELETE, and UPDATE · 3b0c9e45
      unknown authored
      handling so that indexes are closed before trying to commit the
      transaction. (Bug #15536)
      
      
      mysql-test/r/bdb.result:
        Add new results
      mysql-test/t/bdb.test:
        Add new test
      sql/sql_delete.cc:
        Move call to free_underlaid_joins() to before ha_autocommit_or_rollback().
      sql/sql_insert.cc:
        Move call to free_underlaid_joins() to before ha_autocommit_or_rollback().
      sql/sql_update.cc:
        Move call to free_underlaid_joins() to before ha_autocommit_or_rollback().
      3b0c9e45
    • unknown's avatar
      mysqld.cc: · 9263f23b
      unknown authored
        Bug#14960, reverted code to make symdir work on Windows
      symlink.test:
        Disabled test case on Windows
      
      
      mysql-test/t/symlink.test:
        Disabled test case on Windows
      sql/mysqld.cc:
        Bug#14960, reverted code to make symdir work on Windows
      9263f23b
    • unknown's avatar
      bug#15587 - ndb · 24e9283b
      unknown authored
        Fix typo in autotest script
      
      
      ndb/test/run-test/daily-basic-tests.txt:
        Fix typo in autotest script
      24e9283b
    • unknown's avatar
      bug#15587 - ndb · 431c9d03
      unknown authored
        Fix error in NF during NR
      
      
      ndb/include/kernel/signaldata/DumpStateOrd.hpp:
        Add dump for ERROR 5002 with specified table
      ndb/src/kernel/blocks/ERROR_codes.txt:
        Add dump for ERROR 5002 with specified table
      ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
        Run updateNodeInfo if failed node is not in list of storedReplicas
      ndb/src/kernel/blocks/dblqh/Dblqh.hpp:
        Add dump for ERROR 5002 with specified table
      ndb/src/kernel/blocks/dblqh/DblqhMain.cpp:
        Add dump for ERROR 5002 with specified table
      ndb/test/ndbapi/testNodeRestart.cpp:
        Add testcase for bug#15587
      ndb/test/run-test/daily-basic-tests.txt:
        Add testcase for bug#15587
      431c9d03
  13. 07 Dec, 2005 5 commits
    • unknown's avatar
      Merge msvensson@bk-internal.mysql.com:/home/bk/mysql-4.1 · 30b95ec0
      unknown authored
      into  devsrv-b.mysql.com:/space/magnus/my41-bug9535
      
      30b95ec0
    • unknown's avatar
      Bug#13421 problem with sorting turkish · ade3ee25
      unknown authored
      latin5.xml:
        - Fixing order thee Turkish letters to conform Turkish rules.
        - All non-Turkish accented letters are mappend
          to their non-accented counterparts.
      
      
      sql/share/charsets/latin5.xml:
        Bug#13421 problem with sorting turkish
        Fixing order to conform the Turkish rules.
        All non-Turkish accented letters are mappend to
        the non-accented counterparts.
      ade3ee25
    • unknown's avatar
      Merge msvensson@msvensson.mysql.internal:/home/msvensson/mysql/bug9535/my41-bug9535 · d3b8baab
      unknown authored
      into  devsrv-b.mysql.com:/space/magnus/my41-bug9535
      
      d3b8baab
    • unknown's avatar
      BUG#9535 Warning for "create table t as select uuid();" · e930e227
      unknown authored
         - Set max_length of Item_func_uuid to max_length*system_charset_info->mbmaxlen
          Note! Item_func_uuid should be set to use 'ascii' charset when hex(), format(), md5()
      etc will use 'ascii'
          - Comitting again, the old patch seems to have been lost.
      
      
      mysql-test/r/func_misc.result:
        Test results updated
      mysql-test/t/func_misc.test:
        Test case
      sql/item_strfunc.h:
        Multiply max_length of Item_func_uuid with system_charset_info->mbmaxlen
      e930e227
    • unknown's avatar
      New tool to collate all information to form a good error report for NDB. · df938ce8
      unknown authored
      It will copy from each node the logs and trace dumps (if any) and create
      a tarball. Having this tarball attached to a bug report greatly helps
      troubleshooting and avoids user error.
      
      It will (optionally) also get the filesystem.
      
      
      ndb/tools/ndb_error_reporter:
        New BitKeeper file ``ndb/tools/ndb_error_reporter''
      df938ce8