1. 11 Jan, 2007 4 commits
    • unknown's avatar
      Merge kpettersson@bk-internal:/home/bk/mysql-4.1-maint · 081b9c0e
      unknown authored
      into  kpdesk.mysql.com:/home/thek/dev/mysql-4.1-maint
      
      
      mysys/mf_iocache.c:
        Auto merged
      081b9c0e
    • unknown's avatar
      Merge kpdesk.mysql.com:/home/thek/dev/mysql-4.0-maint · 9397ff2a
      unknown authored
      into  kpdesk.mysql.com:/home/thek/dev/mysql-4.1-maint
      
      
      mysys/mf_iocache.c:
        Auto merged
      mysys/my_read.c:
        Auto merged
      mysys/my_seek.c:
        Auto merged
      9397ff2a
    • unknown's avatar
      Merge naruto.:C:/cpp/bug24751/my41-bug24751 · b88f53e7
      unknown authored
      into  naruto.:C:/cpp/mysql-4.1-maint
      
      
      b88f53e7
    • unknown's avatar
      Bug#24751 - Possible infinit loop in init_io_cache() when insufficient memory · 2cbccbfb
      unknown authored
      - When cache memory can't be allocated size is recaclulated using 3/4 of
        the requested memory. This number is rounded up to the nearest 
        min_cache step. 
        However with the previous implementation the new cache size might
        become bigger than requested because of this rounding and thus we get
        an infinit loop.
      - This patch fixes this problem by ensuring that the new cache size
        always will be smaller on the second and subsequent iterations until
        we reach min_cache.
      
      
      mysys/mf_iocache.c:
        - Added mask to cachesize to ensure that algorithm always produce a 
          smaller cache size than current, until we reach 'min_cache' size.
      2cbccbfb
  2. 22 Dec, 2006 4 commits
    • unknown's avatar
      Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-4.1-maint · 0f462179
      unknown authored
      into  siva.hindu.god:/usr/home/tim/m/bk/41
      
      
      0f462179
    • unknown's avatar
      Merge polly.local:/tmp/maint/bug24037/my41-bug24037 · 368dcac4
      unknown authored
      into  polly.local:/home/kaa/src/maint/mysql-4.1-maint
      
      
      368dcac4
    • unknown's avatar
      Fix for the bug #24037 "Lossy Hebrew to Unicode conversion". · ee37cf0b
      unknown authored
      Added definitions for the following Hebrew characters as specified by the ISO/IEC 8859-8:1999:
      
      LEFT-TO-RIGHT MARK (LRM)
      RIGHT-TO-LEFT MARK (RLM)
      
      
      sql/share/charsets/hebrew.xml:
        Added definitions for the following Hebrew characters as specified by the ISO/IEC 8859-8:1999:
        
        LEFT-TO-RIGHT MARK (LRM)
        RIGHT-TO-LEFT MARK (RLM)
      strings/conf_to_src.c:
        Added a warning comment in the generated C source file.
      strings/ctype-extra.c:
        Re-generated from sql/share/charsets/hebrew.xml
      mysql-test/r/ctype_hebrew.result:
        Added the test case for bug #24037 "Lossy Hebrew to Unicode conversion"
      mysql-test/t/ctype_hebrew.test:
        Added the test case for bug #24037 "Lossy Hebrew to Unicode conversion"
      ee37cf0b
    • unknown's avatar
      Merge siva.hindu.god:/usr/home/tim/m/bk/g41 · 454b7d0f
      unknown authored
      into  siva.hindu.god:/usr/home/tim/m/bk/41
      
      
      scripts/mysqld_multi.sh:
        Auto merged
      454b7d0f
  3. 21 Dec, 2006 1 commit
  4. 20 Dec, 2006 3 commits
  5. 19 Dec, 2006 1 commit
  6. 16 Dec, 2006 1 commit
  7. 15 Dec, 2006 5 commits
  8. 14 Dec, 2006 9 commits
  9. 13 Dec, 2006 1 commit
  10. 12 Dec, 2006 1 commit
  11. 11 Dec, 2006 6 commits
  12. 08 Dec, 2006 4 commits
    • unknown's avatar
      Makefile.am · b8151c7e
      unknown authored
          - test* targets are identical (as much as possible) to 5.0 & 5.1 versions
          - use @PERL@ ./mysql-test-run.pl, instead of depending on /usr/bin/perl location
          - PHONY: target includes all test targets
      
      
      Makefile.am:
        - test* targets are identical (as much as possible) to 5.0 & 5.1 versions
        - use @PERL@ ./mysql-test-run.pl, instead of depending on /usr/bin/perl location
        - PHONY: target includes all test targets
      b8151c7e
    • unknown's avatar
      Bug#19410 Test 'kill' fails on Windows + SCO · 0abeff72
      unknown authored
      
      mysql-test/t/kill.test:
        Move the connect of second connection to just before the query to be killed are sent.
        This introduces less variance since the connect time is not included in the delay
        we want between send of query and kill.
      0abeff72
    • unknown's avatar
      Add missing space · 8fc4864e
      unknown authored
      8fc4864e
    • unknown's avatar
      Bug#19410 Test 'kill' fails on Windows + SCO · e8d82549
      unknown authored
       - Use "mysql_field_count" to determine if there is a need to
         call "mysql_store_result"
      
      
      client/mysqltest.c:
        Only call 'mysql_store_result' if 'mysql_field_count' is greater than 0
        indicating that this query has a result set.  This change is mainly since
        if mysql_store_result fails the value returned by mysql_field_count will be reset.
      e8d82549