1. 27 Aug, 2004 24 commits
  2. 26 Aug, 2004 16 commits
    • unknown's avatar
      799cd8a5
    • unknown's avatar
      Merge joreland@bk-internal.mysql.com:/home/bk/mysql-4.1 · dce1c10d
      unknown authored
      into mysql.com:/home/jonas/src/mysql-4.1
      
      dce1c10d
    • unknown's avatar
      e8a155e4
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-4.1-ndb · 95536472
      unknown authored
      into poseidon.(none):/home/tomas/mysql-4.1-ndb
      
      
      ndb/src/kernel/vm/Configuration.cpp:
        Auto merged
      95536472
    • unknown's avatar
      Do-compile: · ca73f232
      unknown authored
        Remove --warnings for mysql-test-run. Devs don't use it, and Serg says it's not needed anymore.
      
      
      Build-tools/Do-compile:
        Remove --warnings for mysql-test-run. Devs don't use it, and Serg says it's not needed anymore.
      ca73f232
    • unknown's avatar
      new parameter BackupDataDir · c0f90861
      unknown authored
      c0f90861
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1 · 56cfc57a
      unknown authored
      into mysql.com:/media/sda1/mysql/mysql-4.1-5126
      
      56cfc57a
    • unknown's avatar
      A short fix and test case for Bug#5126 · c52b07e2
      unknown authored
      "Mediumint and PS problem": just treat mediumint as long.
      
      
      libmysql/libmysql.c:
        A short fix for bug #5126 "Mediumint and PS problem": just
        treat mediumint as long, as it's sent just like long.
      tests/client_test.c:
        A test case for bug#5126
      c52b07e2
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · 5b373b26
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      
      BitKeeper/etc/logging_ok:
        auto-union
      5b373b26
    • unknown's avatar
      - typo fix - make sure to include an existing file in the source · 90340b05
      unknown authored
         distribution...
      
      90340b05
    • unknown's avatar
      Fixed wrong number of fragment records in DIH · eeb08802
      unknown authored
      Fixed bug in failed create table
      Fixed new test case for failed create table using new ERROR_INSERT
      
      
      ndb/src/kernel/blocks/ERROR_codes.txt:
        Added new error insert for test of failed create table
      ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
        Added new error insert for test of failed create table
        Fixed bug in handling failed create table
        Moved some constants to pc.hpp
      ndb/src/kernel/vm/Configuration.cpp:
        Added new error insert for test of failed create table
        Fixed bug in handling failed create table
        Moved some constants to pc.hpp
      ndb/src/kernel/vm/pc.hpp:
        Constants moved here from DIH
      ndb/test/ndbapi/testDict.cpp:
        New test case for failed create table
      eeb08802
    • unknown's avatar
      after merge · 0952c705
      unknown authored
      
      sql/item_row.cc:
        ds20 compat fix
      0952c705
    • unknown's avatar
      Merge serg.mylan:/usr/home/serg/Abk/mysql-4.0 · 2cdbfbb4
      unknown authored
      into serg.mylan:/usr/home/serg/Abk/mysql-4.1
      
      2cdbfbb4
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-4.1/ · fd8120ac
      unknown authored
      into serg.mylan:/usr/home/serg/Abk/mysql-4.1
      
      
      client/mysql.cc:
        Auto merged
      fd8120ac
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-4.0/ · 3362039a
      unknown authored
      into serg.mylan:/usr/home/serg/Abk/mysql-4.0
      
      3362039a
    • unknown's avatar
      If the system has 64 bit "long", then "long long" does not add new · 334a5ad4
      unknown authored
      functionality. The existing code takes advantage of this when
      "typedef"ing 'longlong' in 'my_global.h'. This holds for Alpha CPUs.
      If the compiler then has prototypes for C99 functions 'strtoll()' and
      'strtoull()' but no implementation, the existing code in 'strtoull.c'
      collides with that prototype. These collisions are avoided now.
      
      
      include/m_string.h:
        Extend the "fake" approach from 'strtoull()' onto 'strtoll()'.
      strings/strto.c:
        Ensure that calling file has included necessary headers,
        as these are needed at the upper level already.
      strings/strtol.c:
        Cleanup/alignment with the "long long" functions.
      strings/strtoll.c:
        When "long" is 64 bit already, system function 'strtol()' can be used.
        Header files 'my_global.h' and 'm_string.h' will manage that,
        if they are included early enough.
      strings/strtoul.c:
        Cleanup/alignment with the "long long" functions.
      strings/strtoull.c:
        When "long" is 64 bit already, system function 'strtoul()' can be used.
        Header files 'my_global.h' and 'm_string.h' will manage that,
        if they are included early enough.
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      334a5ad4