1. 02 Nov, 2007 10 commits
  2. 01 Nov, 2007 4 commits
  3. 31 Oct, 2007 5 commits
  4. 30 Oct, 2007 13 commits
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-4.1-amain · 967c06df
      unknown authored
      into  stella.local:/home2/mydev/mysql-4.1-axmrg
      
      
      967c06df
    • unknown's avatar
      Makefile.am: · 1de7e5c0
      unknown authored
        Ensure use of libedit "config.h" by adding "-I. -I$(srcdir)" to DEFS,
        work around for problem with automake 1.10 (bug#24809)
      
      
      cmd-line-utils/libedit/Makefile.am:
        Ensure use of libedit "config.h" by adding "-I. -I$(srcdir)" to DEFS,
        work around for problem with automake 1.10 (bug#24809)
      1de7e5c0
    • unknown's avatar
      Minor Makefile fixes: · 85ba610f
      unknown authored
      1) Add a new top level "Makefile.am" target "make embedded-test".
      
      2) Fix a syntax error (bad merge) in "netware/Makefile.am".
      
      
      Makefile.am:
        Add a new "make" target "embedded-test" so that it is easier 
        to test the "embedded server" ("libmyslqd").
        Make it "phony".
        
        Use it via a sub-make within "test-bt" to avoid code duplication.
      netware/Makefile.am:
        Cleanup: Macros "BUILT_SOURCES" and "CLEANFILES" should be defined only once.
      85ba610f
    • unknown's avatar
      Merge pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/p2-bug30296.1 · be9e5213
      unknown authored
      into  pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/p2-bug30296.1-merge-5.1
      
      
      be9e5213
    • unknown's avatar
      Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build · 4123825d
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build
      
      
      4123825d
    • unknown's avatar
      Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.1-build · 173d8d79
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      173d8d79
    • unknown's avatar
      Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.0-build · e3b246d6
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build
      
      
      e3b246d6
    • unknown's avatar
      Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work · 2f0838d5
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build
      
      
      2f0838d5
    • unknown's avatar
      Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build-work · 0ca87f8e
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      0ca87f8e
    • unknown's avatar
      bug#30630 · b0bc908c
      unknown authored
      b0bc908c
    • unknown's avatar
      Post-merge fix · dd3abf50
      unknown authored
      dd3abf50
    • unknown's avatar
      BUG#11392 - fulltext search bug · b698b6fd
      unknown authored
      Fulltext boolean mode phrase search may crash server on platforms
      where size of pointer is not equal to size of unsigned integer
      (in other words some 64-bit platforms).
      
      The problem was integer overflow.
      
      Affects 4.1 only.
      
      
      myisam/ft_boolean_search.c:
        my_match_t::beg is unsigned int, that means type of expression
        (m[0].beg - 1) has unsigned type too. It may happen that instr()
        finds substring in the beggining of passed string, returning
        m[0].beg equal to 0. In this case value of expression (m[0].beg - 1)
        is equal to MAX_UINT.
        
        This is not a problem on platforms where sizeof(pointer) equals to
        sizeof(uint). That means ptr[(uint)-1] = ptr[(uint)MAX_UINT] = ptr - 1.
        
        On some 64-bit platforms where sizeof(pointer) is 8 and sizeof(uint)
        is 4, wrong address gets accessed. In other words ptr[(uint)-1] is
        equal to ptr + MAX_UINT.
      mysql-test/r/fulltext.result:
        A test case for BUG#11392.
      mysql-test/t/fulltext.test:
        A test case for BUG#11392.
      b698b6fd
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-5.0-bug4692 · 9fa501f0
      unknown authored
      into  stella.local:/home2/mydev/mysql-5.1-bug4692
      
      
      mysql-test/r/myisam.result:
        Bug#4692 - DISABLE/ENABLE KEYS waste a space
        Manual merge
      mysql-test/t/myisam.test:
        Bug#4692 - DISABLE/ENABLE KEYS waste a space
        Manual merge
      storage/myisam/mi_check.c:
        Bug#4692 - DISABLE/ENABLE KEYS waste a space
        Manual merge
      9fa501f0
  5. 29 Oct, 2007 8 commits
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-5.1-build · bd00ccb7
      unknown authored
      into  trift2.:/MySQL/M51/push-5.1
      
      
      bd00ccb7
    • unknown's avatar
      autorun.sh: · 7752cee4
      unknown authored
        After review changes
      
      
      BUILD/autorun.sh:
        After review changes
      7752cee4
    • unknown's avatar
      autorun.sh: · 1b261d3d
      unknown authored
        Removed innobase from compile-dist, and let it use autorun.sh to avoid
        code duplication. Also corrected a problem when searching for one of
        "libtoolize" and "glibtoolize", now it honors the PATH setting (Bug#31405)
      
      
      BUILD/autorun.sh:
        Removed innobase from compile-dist, and let it use autorun.sh to avoid
        code duplication. Also corrected a problem when searching for one of
        "libtoolize" and "glibtoolize", now it honors the PATH setting (Bug#31405)
      1b261d3d
    • unknown's avatar
      5.1 has been promoted to "rc" status. · 16c621d3
      unknown authored
      16c621d3
    • unknown's avatar
      Merge trift2.:/MySQL/M50/push-5.0 · ede89c64
      unknown authored
      into  trift2.:/MySQL/M51/push-5.1
      
      
      mysql-test/r/derived.result:
        Auto merged
      mysql-test/r/ps_2myisam.result:
        Auto merged
      mysql-test/r/ps_3innodb.result:
        Auto merged
      mysql-test/r/ps_4heap.result:
        Auto merged
      mysql-test/r/ps_5merge.result:
        Auto merged
      BitKeeper/deleted/.del-ps_6bdb.result:
        Auto merged
      mysql-test/r/sp.result:
        Auto merged
      mysql-test/r/type_date.result:
        Auto merged
      mysql-test/r/type_datetime.result:
        Auto merged
      mysql-test/suite/ndb/r/ps_7ndb.result:
        Auto merged
      mysql-test/t/sp.test:
        Auto merged
      mysql-test/t/type_date.test:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/item_timefunc.cc:
        Auto merged
      sql/sql_cache.cc:
        Null merge of a 5.0 patch, by order of the original author via IRC.
      ede89c64
    • unknown's avatar
      Merge trift2.:/MySQL/M51/mysql-5.1 · a861c70d
      unknown authored
      into  trift2.:/MySQL/M51/push-5.1
      
      
      configure.in:
        Auto merged
      mysql-test/suite/funcs_1/r/innodb__datadict.result:
        Auto merged
      mysql-test/suite/funcs_1/r/memory__datadict.result:
        Auto merged
      mysql-test/suite/funcs_1/r/myisam__datadict.result:
        Auto merged
      mysql-test/r/partition.result:
        Ensure test for bug number 27816 is in the merged tree.
      mysql-test/t/partition.test:
        Ensure test for bug number 27816 is in the merged tree.
      a861c70d
    • unknown's avatar
      Merge trift2.:/MySQL/M41/push-4.1 · a2f5911b
      unknown authored
      into  trift2.:/MySQL/M50/push-5.0
      
      
      a2f5911b
    • unknown's avatar
      Merge trift2.:/MySQL/M50/clone-5.0 · b63ae73d
      unknown authored
      into  trift2.:/MySQL/M50/push-5.0
      
      
      mysql-test/r/derived.result:
        Auto merged
      mysql-test/r/ps_2myisam.result:
        Auto merged
      mysql-test/r/ps_3innodb.result:
        Auto merged
      mysql-test/r/ps_4heap.result:
        Auto merged
      mysql-test/r/ps_5merge.result:
        Auto merged
      mysql-test/r/ps_6bdb.result:
        Auto merged
      mysql-test/r/ps_7ndb.result:
        Auto merged
      mysql-test/r/sp.result:
        Auto merged
      mysql-test/r/type_datetime.result:
        Auto merged
      mysql-test/t/derived.test:
        Auto merged
      mysql-test/t/sp.test:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/item_timefunc.cc:
        Auto merged
      mysql-test/r/type_date.result:
        Null-merge 5.0.50 build clone:
        The test for bug#31221 is already in the receiving tree.
      mysql-test/t/type_date.test:
        Null-merge 5.0.50 build clone:
        The test for bug#31221 is already in the receiving tree.
      b63ae73d