1. 19 Oct, 2004 6 commits
  2. 18 Oct, 2004 15 commits
  3. 16 Oct, 2004 1 commit
  4. 15 Oct, 2004 7 commits
  5. 14 Oct, 2004 11 commits
    • unknown's avatar
      Fix for Bug#6024 "Test "client_test" fails in 4.1.6-gamma build (1)": · 0214953a
      unknown authored
      let's not assume that char is signed (its signedness is not defined).
      The server was also affected by the wrong typedef.
      
      
      include/my_global.h:
        Fix for Bug#6024 "Test "client_test" fails in 4.1.6-gamma build (1)":
        let's not assume that char is signed (its signedness is not defined).
      libmysql/libmysql.c:
        Fix for Bug#6024 "Test "client_test" fails in 4.1.6-gamma build (1)":
        let's not assume that char is signed (its signedness is not defined).
      0214953a
    • unknown's avatar
      libmysql/libmysql.c: · 2b4c2414
      unknown authored
       Fix for Bug#6025 "Test "client_test" fails in 4.1.6-gamma build (2)".
       No need for a test case, the bug is covered already.
      
      
      libmysql/libmysql.c:
        Fix for Bug#6025 "Test "client_test" fails in 4.1.6-gamma build (2)":
        the bug was in assignments like:
          *row+= read_binary_time(tm, row);
        which makes two assingments without a sequence point (read_binary_*
        changes *row too) => undefined behaviour.
        The fix changes read_binary_{time,date,datetime} signature to get
        rid of any probability to fall into the same trouble in future.
      2b4c2414
    • unknown's avatar
      compile-hpux11-parisc2-aCC: · ef154a50
      unknown authored
        Fix a typo. Cleanup.
      
      
      BUILD/compile-hpux11-parisc2-aCC:
        Fix a typo. Cleanup.
      ef154a50
    • unknown's avatar
      Merge lgrimmer@bk-internal.mysql.com:/home/bk/mysql-4.1 · 3afe4b67
      unknown authored
      into mysql.com:/space/my/mysql-4.1
      
      3afe4b67
    • unknown's avatar
      Merge mysql.com:/space/my/mysql-4.1 · 6481664f
      unknown authored
      into mysql.com:/space/my/mysql-4.1-build
      
      6481664f
    • unknown's avatar
      - Cleanup: removed unreferenced local variable "local_file" in mysqlimport.c · e336c384
      unknown authored
      
      client/mysqlimport.c:
         - Cleanup: removed unreferenced local variable "local_file"
      e336c384
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · c0e0bc4f
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-4.1
      
      c0e0bc4f
    • unknown's avatar
      Merge lgrimmer@bk-internal.mysql.com:/home/bk/mysql-4.1 · 3bd4fd51
      unknown authored
      into mysql.com:/space/my/mysql-4.1
      
      3bd4fd51
    • unknown's avatar
      - added missing file strings/my_strtoll10.c to the libmysql.dsp and · fe0ed1ae
      unknown authored
         mysqlclient.dsp project files
      
      
      VC++Files/client/mysqlclient.dsp:
         - added missing file strings/my_strtoll10.c to the mysqlclient.dsp project
           file
      VC++Files/libmysql/libmysql.dsp:
         - added missing file strings/my_strtoll10.c to the libmysql.dsp project
           file
      fe0ed1ae
    • unknown's avatar
      Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 · 8f9bb88c
      unknown authored
      into sanja.is.com.ua:/home/bell/mysql/bk/work-4.1
      
      8f9bb88c
    • unknown's avatar
      This patch removes unnecessary lock from the supremum record, takes · 059ad42f
      unknown authored
      X-locks on duplicates also on LOAD DATA...REPLACE clause and
      fixes a bug #6086 adding --disable_warnings and --enable_warnings around
      the create table clauses in ctype_utf8 tests for InnoDB.
      
      
      innobase/dict/dict0dict.c:
        Remove static.
      innobase/include/dict0dict.h:
        Add prototype for a function dict_scan_to
      innobase/row/row0ins.c:
        Add support for a LOAD DATA INFILE 'xxx' REPLACE INTO TABLE x. We should
        take X-locks on both REPLACE and LOAD DATA...REPLACE queries to duplicate
        records.
      innobase/row/row0sel.c:
        If innodb_locks_unsafe_for_binlog options is used we do not lock
        gaps. Supremum record is really a dummy record i.e. gap, therefore 
        we do set locks there.
      mysql-test/t/ctype_utf8.test:
        Fix bug #6086: Add --disable_warnings and --enable_warnings around the 
        create table where engine=innodb.
      059ad42f