1. 29 Apr, 2005 11 commits
  2. 28 Apr, 2005 22 commits
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0 · 5b4a2439
      unknown authored
      into mysql.com:/home/psergey/mysql-5.0-bug9821
      
      
      sql/sql_parse.cc:
        Auto merged
      5b4a2439
    • unknown's avatar
      Merge mysql.com:/home/mydev/mysql-4.1-4100 · 91f6ad72
      unknown authored
      into mysql.com:/home/mydev/mysql-5.0-5000
      
      
      include/my_sys.h:
        Auto merged
      myisam/myisampack.c:
        Auto merged
      sql/ha_myisammrg.cc:
        Auto merged
      91f6ad72
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0 · 52d79dbf
      unknown authored
      into mysql.com:/home/psergey/mysql-5.0-bug9298-merge
      
      52d79dbf
    • unknown's avatar
      Merge mysql.com:/home/mydev/mysql-4.1-bug5964 · 9d9a1a9c
      unknown authored
      into mysql.com:/home/mydev/mysql-4.1-4100
      
      9d9a1a9c
    • unknown's avatar
      BUG#5964 - 4.1 MERGE tables regression from 4.0 · d9533bf6
      unknown authored
      Changed the creation of the .MRG file so that only the table  name
      is written when the MyISAM table is in the same database as the
      MERGE table, a relative path is used in other cases in mysqld,
      and possibly an absolute path is used in an embedded server.
      No test case is added as the external behaviour is unchanged.
      Only the file names within the .MRG file are changed.
      
      
      include/my_sys.h:
        BUG#5964 - 4.1 MERGE tables regression from 4.0
        Added declaration for a new function.
      myisammrg/myrg_open.c:
        BUG#5964 - 4.1 MERGE tables regression from 4.0
        Changed check for absolute path to check for any path.
      mysys/my_getwd.c:
        BUG#5964 - 4.1 MERGE tables regression from 4.0
        Added a new functions which checks for absolute _or_
        relative paths.
      sql/ha_myisammrg.cc:
        BUG#5964 - 4.1 MERGE tables regression from 4.0
        Changed the creation of the .MRG file so that only the table  name
        is written when the MyISAM table is in the same database as the
        MERGE table, a relative path is used in other cases in mysqld,
        and possibly an absolute path is used in an embedded server.
      d9533bf6
    • unknown's avatar
      Fix tiny typo in configure.in · 3b457f0c
      unknown authored
      
      configure.in:
        Fix typo
      3b457f0c
    • unknown's avatar
      Bug#8321 - myisampack bug in compression algorithm · 6aab4f49
      unknown authored
      Merge from 4.0.
      
      6aab4f49
    • unknown's avatar
      Bug#8321 - myisampack bug in compression algorithm · 0cb74803
      unknown authored
      This is the second of three changesets. It contains the pure bug fix.
      It also contains the second after-review fixes.
      The problem was that with gcc on x86, shifts are done modulo word size. 
      'value' is 32 bits wide and shifting it by 32 bits is a no-op.
      This was triggered by an evil distribution of character incidences. 
      A distribution of 2917027827 characters made of 202 distinct values led to
      34 occurrences of 32-bit Huffman codes.
      This might have been the first time ever that write_bits() had to write
      32-bit values. Since it can be expected that one day even 32 bits might
      be insufficient, the third changeset suggests to enlarge some variables
      to 64 bits.
      
      0cb74803
    • unknown's avatar
      Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 · fbbdc900
      unknown authored
      into neptunus.(none):/home/msvensson/mysql/mysql-5.0
      
      
      configure.in:
        Auto merged
      fbbdc900
    • unknown's avatar
      Removing duplicate AC_PREREQ macros · 9d0f5ac0
      unknown authored
      Setting AC_PREREQ required version to 2.50 until we have sorted out what is required. The manual says 2.58.
      
      
      configure.in:
        Removing duplicate AC_PREREQ macros
      9d0f5ac0
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · ca004b54
      unknown authored
      into neptunus.(none):/home/msvensson/mysql/mysql-5.0
      
      ca004b54
    • unknown's avatar
      After review fixes to check-cpu · d46255b1
      unknown authored
      
      BUILD/check-cpu:
        Remove the exit 0 from check-cpu
      d46255b1
    • unknown's avatar
      A test case for Bug#5673 "Rounding problem in 4.0.21 inserting decimal · 4a33d88b
      unknown authored
      value into a char field": the patch submitted for the bug a while
      ago has never been reviewed or approved to push into 4.0. Decimal
      support in 5.0 resolves the issue.
      Adding the test case and closing the bug report.
      
      
      mysql-test/r/type_decimal.result:
        Bug#5673: test results fixed.
      mysql-test/t/type_decimal.test:
        A test case for Bug#5673 "Rounding problem in 4.0.21 inserting decimal 
        value into a char field"
      4a33d88b
    • unknown's avatar
      Merge bug9911 with 5.0 · e02fdbbb
      unknown authored
      
      mysql-test/r/archive.result:
        Warning will be pushed when renaming table with "optional" files.
      e02fdbbb
    • unknown's avatar
      Merge · dd825146
      unknown authored
      
      sql/examples/ha_archive.cc:
        SCCS merged
      sql/examples/ha_archive.h:
        SCCS merged
      sql/handler.cc:
        SCCS merged
      dd825146
    • unknown's avatar
      Merge mskold@bk-internal.mysql.com:/home/bk/mysql-4.1 · c513dbb4
      unknown authored
      into mysql.com:/usr/local/home/marty/MySQL/mysql-4.1
      
      c513dbb4
    • unknown's avatar
      Merge neptunus.(none):/home/msvensson/mysql/bug9911 · 784b14ba
      unknown authored
      into neptunus.(none):/home/msvensson/mysql/mysql-4.1
      
      784b14ba
    • unknown's avatar
      BUG#9911 After review fixes · d8220f56
      unknown authored
       - Remove ha_archive::rename_table and move the fix to handler::rename_table
      
      
      sql/examples/ha_archive.cc:
        Remove ha_archive::rename_table
      sql/examples/ha_archive.h:
        Remove ha_archive::rename_table
      sql/handler.cc:
        Fix handler::rename_table so it does not care about if the file to rename is missing
      d8220f56
    • unknown's avatar
      Merge mysql.com:/usr/local/home/marty/MySQL/mysql-4.1 · ac166186
      unknown authored
      into mysql.com:/usr/local/home/marty/MySQL/mysql-5.0
      
      
      sql/ha_ndbcluster.cc:
        Auto merged
      ac166186
    • unknown's avatar
      Fix for avoiding gettin Invalid schema object version when doing local... · 49d979d0
      unknown authored
      Fix for avoiding gettin Invalid schema object version when doing local changes, more post review fixes
      
      
      49d979d0
    • unknown's avatar
      Merge · 9cd10022
      unknown authored
      
      BitKeeper/deleted/.del-acinclude.m4~f4ab416bac5003:
        Auto merged
      ndb/include/ndbapi/NdbDictionary.hpp:
        Auto merged
      ndb/src/ndbapi/NdbDictionaryImpl.cpp:
        Auto merged
      9cd10022
    • unknown's avatar
  3. 27 Apr, 2005 7 commits