1. 05 Nov, 2007 1 commit
  2. 03 Nov, 2007 1 commit
  3. 02 Nov, 2007 15 commits
  4. 01 Nov, 2007 4 commits
  5. 31 Oct, 2007 5 commits
  6. 30 Oct, 2007 13 commits
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-4.1-amain · c0c20d48
      unknown authored
      into  stella.local:/home2/mydev/mysql-4.1-axmrg
      
      c0c20d48
    • unknown's avatar
      Makefile.am: · 92cd1de5
      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)
      92cd1de5
    • unknown's avatar
      Minor Makefile fixes: · 13d2bfa4
      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.
      13d2bfa4
    • unknown's avatar
      Merge pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/p2-bug30296.1 · b6add237
      unknown authored
      into  pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/p2-bug30296.1-merge-5.1
      
      b6add237
    • unknown's avatar
      Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build · 6c144fce
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build
      
      6c144fce
    • unknown's avatar
      Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.1-build · edea16b2
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      edea16b2
    • unknown's avatar
      Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.0-build · f806dcae
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build
      
      f806dcae
    • unknown's avatar
      Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work · 59d3d938
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build
      
      59d3d938
    • unknown's avatar
      Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build-work · 61fc1595
      unknown authored
      into  pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      61fc1595
    • unknown's avatar
      bug#30630 · 85c79e49
      unknown authored
      85c79e49
    • unknown's avatar
      Post-merge fix · 4de18dff
      unknown authored
      4de18dff
    • unknown's avatar
      BUG#11392 - fulltext search bug · 1b1d467b
      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.
      1b1d467b
    • unknown's avatar
      Merge stella.local:/home2/mydev/mysql-5.0-bug4692 · 7b803420
      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
      7b803420
  7. 29 Oct, 2007 1 commit