1. 04 Aug, 2005 1 commit
    • unknown's avatar
      grant.result, grant.test: · 9e3562d7
      unknown authored
        fixing tests accordingly
      item.cc:
        Bug #10892 user variables not auto cast for comparisons
        When mixing strings with different character sets,
        and coercibility is the same, we allow conversion
        if one character set is superset for other character set.
      
      
      sql/item.cc:
        Bug #10892 user variables not auto cast for comparisons
        When mixing strings with different character sets,
        and coercibility is the same, we allow conversion
        if one character set is superset for other character set.
      mysql-test/t/grant.test:
        fixing tests accordingly
      mysql-test/r/grant.result:
        fixing tests accordingly
      9e3562d7
  2. 03 Aug, 2005 12 commits
    • unknown's avatar
      BUG#12330 Adding updated result file which I missed in last changeset. · 357ebcc2
      unknown authored
      Adds --replace_column to make test results deterministic.
      
      
      mysql-test/r/rpl_slave_status.result:
        BUG#12330 updated result file which I missed in last changeset
        This updates the test to use --replace_column to make the test
        deterministic.
      357ebcc2
    • unknown's avatar
      Merge mysql.com:/Users/emurphy/src/bk-clean/mysql-4.1 · 6743d718
      unknown authored
      into  mysql.com:/Users/emurphy/src/work/mysql-4.1-bug12330
      
      
      6743d718
    • unknown's avatar
      BUG#12330 Add --replace_column in order to make test deterministic. · e3036421
      unknown authored
      
      mysql-test/t/rpl_slave_status.test:
        Add --replace-column to make show slave status deterministic
      e3036421
    • unknown's avatar
      Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1 · 1764a75f
      unknown authored
      into mysql.com:/M41/mysql-4.1
      
      
      1764a75f
    • unknown's avatar
      Manual merge: Current 4.1.14 has precedence over 4.1.10b · d868eaf4
      unknown authored
      
      BitKeeper/etc/config:
        Auto merged
      VC++Files/client/mysql.dsp:
        Auto merged
      VC++Files/client/mysqladmin.dsp:
        Auto merged
      VC++Files/client/mysqlcheck.dsp:
        Auto merged
      VC++Files/client/mysqldump.dsp:
        Auto merged
      VC++Files/client/mysqlimport.dsp:
        Auto merged
      VC++Files/client/mysqlshow.dsp:
        Auto merged
      VC++Files/client/mysqltest.dsp:
        Auto merged
      VC++Files/mysql-test/mysql_test_run_new.dsp:
        Auto merged
      VC++Files/mysqlbinlog/mysqlbinlog.dsp:
        Auto merged
      VC++Files/mysqlcheck/mysqlcheck.dsp:
        Auto merged
      VC++Files/mysqlmanager/mysqlmanager.dsp:
        Auto merged
      acinclude.m4:
        Auto merged
      zlib/ChangeLog:
        Auto merged
      zlib/FAQ:
        Auto merged
      zlib/INDEX:
        Auto merged
      zlib/README:
        Auto merged
      zlib/crc32.c:
        Auto merged
      zlib/deflate.c:
        Auto merged
      zlib/deflate.h:
        Auto merged
      zlib/gzio.c:
        Auto merged
      zlib/infback.c:
        Auto merged
      zlib/inffast.c:
        Auto merged
      zlib/inflate.c:
        Auto merged
      zlib/inftrees.c:
        Auto merged
      zlib/inftrees.h:
        Auto merged
      zlib/trees.c:
        Auto merged
      zlib/zconf.h:
        Auto merged
      zlib/zlib.3:
        Auto merged
      zlib/zlib.h:
        Auto merged
      zlib/zutil.h:
        Auto merged
      d868eaf4
    • unknown's avatar
      Merge lgrimmer@bk-internal.mysql.com:/home/bk/mysql-4.1 · bb10cc45
      unknown authored
      into mysql.com:/space/my/mysql-4.1
      
      
      bb10cc45
    • unknown's avatar
      Merge hundin.mysql.fi:/home/heikki/mysql-4.0 · 3e292846
      unknown authored
      into  hundin.mysql.fi:/home/heikki/mysql-4.1
      
      
      3e292846
    • unknown's avatar
      ha_innodb.cc: · 076c375a
      unknown authored
        Fix compilation error in previous commit
      
      
      sql/ha_innodb.cc:
        Fix compilation error in previous commit
      076c375a
    • unknown's avatar
      buf0buf.c: · e1659c81
      unknown authored
        Fix a bug: InnoDB could in a crash recovery print a big false corruption warning if the first page of an ibdata file was 'recreated' in the buffer pool; this could happen, for example, if a table was dropped, and the page used later
      
      
      innobase/buf/buf0buf.c:
        Fix a bug: InnoDB could in a crash recovery print a big false corruption warning if the first page of an ibdata file was 'recreated' in the buffer pool; this could happen, for example, if a table was dropped, and the page used later
      e1659c81
    • unknown's avatar
      Merge hundin.mysql.fi:/home/heikki/mysql-4.0 · a743ebd3
      unknown authored
      into  hundin.mysql.fi:/home/heikki/mysql-4.1
      
      
      sql/ha_innodb.cc:
        Auto merged
      a743ebd3
    • unknown's avatar
      ha_innodb.cc: · 43b1710c
      unknown authored
        Backport of Bug #9670 to 4.0: assertion failure in ut_a(cursor->old_stored == BTR_PCUR_OLD_STORED)
      
      
      sql/ha_innodb.cc:
        Backport of Bug #9670 to 4.0: assertion failure in ut_a(cursor->old_stored == BTR_PCUR_OLD_STORED)
      43b1710c
    • unknown's avatar
      Portability fixes: · 820a9c5f
      unknown authored
       - Moved a few DBUG_ENTER statements after the variable declarations to satisfy some
         compilers (e.g. gcc-2.95.x, gcc-2.96, IBM xlc_r) in ndb/src/common/portlib/NdbMutex.c
         and ndb/src/common/portlib/NdbThread.c
       - portability fix for FreeBSD 4.x and HPUX: replaced atoll() with strtoll() in 
         ndb/tools/config.cpp
      
      
      ndb/src/common/portlib/NdbMutex.c:
         - Moved a few DBUG_ENTER statements after the variable declarations to satisfy some
           compilers (e.g. gcc-2.95.x, gcc-2.96, IBM xlc_r)
      ndb/src/common/portlib/NdbThread.c:
         - Moved a DBUG_ENTER statement after the variable declarations to satisfy some
           compilers (e.g. gcc-2.95.x, gcc-2.96, IBM xlc_r)
      ndb/tools/config.cpp:
         - portability fix for FreeBSD 4.x and HPUX: replaced atoll() with strtoll()
      820a9c5f
  3. 02 Aug, 2005 12 commits
    • unknown's avatar
      item_sum.cc: · bcaff837
      unknown authored
        Reversed the changes to fix bug #12095 after review
        done by SergeyG. Applied a fix suggested by him.
        Added my comment.
      
      
      sql/item_sum.cc:
        Reversed the changes to fix bug #12095 after review
        done by SergeyG. Applied a fix suggested by him.
        Added my comment.
      bcaff837
    • unknown's avatar
      sql_select.cc, sql_class.h: · c2b83502
      unknown authored
        Reversed the changes to fix bug #12095 after review
        done by SergeyG. Applied a fix suggested by him.
      
      
      sql/sql_class.h:
        Reversed the changes to fix bug #12095 after review
        done by SergeyG. Applied a fix suggested by him.
      sql/sql_select.cc:
        Reversed the changes to fix bug #12095 after review
        done by SergeyG. Applied a fix suggested by him.
      c2b83502
    • unknown's avatar
      Merge mysql.com:/space/my/mysql-4.1 · 3202508b
      unknown authored
      into mysql.com:/space/my/mysql-4.1-build
      
      
      3202508b
    • unknown's avatar
      - Fixed the Requires: tag for the server RPM (BUG#12233), make sure to list all · acfc848e
      unknown authored
        required commands/packages so the installation succeeds. Removed the superflouus
        Requires field from the source RPM.
      
      
      acfc848e
    • unknown's avatar
      Merge svojtovich@bk-internal.mysql.com:/home/bk/mysql-4.1 · 49b8de7d
      unknown authored
      into  mysql.com:/home/svoj/devel/mysql/BUG12075/mysql-4.1
      
      
      49b8de7d
    • unknown's avatar
      Fix for BUG#12075. · b9ccc653
      unknown authored
      FULLTEXT non-functional for big5 strings
      
      
      mysql-test/r/ctype_big5.result:
        Test case for BUG#12075.
      mysql-test/t/ctype_big5.test:
        Test case for BUG#12075.
      strings/ctype-big5.c:
        hack: (to be fixed properly later) all multi-byte sequences are considered isalpha() now
      b9ccc653
    • unknown's avatar
      After merge fix. · ad26ba25
      unknown authored
      ad26ba25
    • unknown's avatar
      Merge mysql.com:/home/svoj/devel/mysql/BUG11684/mysql-4.0 · 82a3e845
      unknown authored
      into  mysql.com:/home/svoj/devel/mysql/BUG11684/mysql-4.1
      
      
      myisam/sort.c:
        Auto merged
      mysql-test/r/fulltext.result:
        Manual merge.
      mysql-test/t/fulltext.test:
        Manual merge.
      82a3e845
    • unknown's avatar
      BUG#11684 fix. · 451ec64d
      unknown authored
      Repair crashes mysql when table has fulltext index.
      
      
      myisam/sort.c:
        Use static ft_buf instead of dynamic mergebuf. Latter could be NULL if record has long words.
      mysql-test/r/fulltext.result:
        Test case for BUG#11684 - repair crashes mysql when table has fulltext index.
      mysql-test/t/fulltext.test:
        Test case for BUG#11684 - repair crashes mysql when table has fulltext index.
      451ec64d
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-9947 · c679cb67
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-4.1-clean
      
      
      sql/sql_parse.cc:
        Auto merged
      c679cb67
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-11402 · dc6810ec
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-4.1-clean
      
      
      sql/item_func.cc:
        Auto merged
      mysql-test/t/func_math.test:
        Resolve conflict
      dc6810ec
    • unknown's avatar
      Merge mysql.com:/home/jimw/my/mysql-4.1-10724 · a69ca6dc
      unknown authored
      into  mysql.com:/home/jimw/my/mysql-4.1-clean
      
      
      sql/item_func.cc:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      mysql-test/t/user_var.test:
        Resolve conflict
      a69ca6dc
  4. 01 Aug, 2005 1 commit
  5. 31 Jul, 2005 4 commits
  6. 30 Jul, 2005 1 commit
  7. 29 Jul, 2005 8 commits
    • unknown's avatar
      fix for bug#12665 · 52dfa3b8
      unknown authored
      macro floatget was missing in config-win.h
      
      
      52dfa3b8
    • unknown's avatar
      Security fix in "zlib": · 0f867ef7
      unknown authored
      - upgrade zlib to 1.2.2
        (originally:  2005/03/23 21:08:13+01:00 serg@serg.mylan )
      - fixed linking with zlib
        (originally:  2005/05/24 22:42:43+02:00 lenz@mysql.com )
      - one more build fix for zlib.lib - added libpath to the mysql_test_run_new project files
        (originally:  2005/05/25 10:55:21+02:00 lenz@mysql.com )
      - Do not build the RPMs statically on i386 by default, only when adding either
        "--with static" or "--define '_with_static 1'" to the RPM build options.
        Static linking really only makes sense when linking against the specially patched
        glibc 2.2.5.
        (originally:  2005/06/14 21:39:08+02:00 lenz@mysql.com )
      - Apply security patch to bundled zlib for CAN-2005-2096. (Bug #11844)
        (originally:  2005/07/11 10:37:21-07:00 jimw@mysql.com )
      - applied a security fix to inftrees.h from the bundled zlib to resolve a second
        potential zlib security vulnerability (CAN-2005-1849). Fix was taken from the
        official zlib-1.2.3 distribution (no other zlib-1.2.3 changes were applied)
        (originally:  2005/07/27 14:55:08+02:00 lenz@mysql.com )
      - build the RPM binaries against the bundled zlib, when static linking is requested
        (originally:  2005/07/27 16:42:13+02:00 lenz@mysql.com )
      
      
      VC++Files/client/mysql.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/client/mysqladmin.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/client/mysqlcheck.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/client/mysqldump.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/client/mysqlimport.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/client/mysqlshow.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/client/mysqltest.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/mysql-test/mysql_test_run_new.dsp:
        - added zlib.lib to the LINK32 options
        - added libpath option so that zlib.lib will be found
      VC++Files/mysqlbinlog/mysqlbinlog.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/mysqlcheck/mysqlcheck.dsp:
        - added zlib.lib to the LINK32 options
      VC++Files/mysqlmanager/mysqlmanager.dsp:
        - added zlib.lib to the LINK32 options
      acinclude.m4:
        clarify help text
      support-files/mysql.spec.sh:
        - Do not build statically on i386 by default, only when adding either "--with
          static" or "--define '_with_static 1'" to the RPM build options. Static
          linking really only makes sense when linking against the specially patched
          glibc 2.2.5.
        - build against the bundled zlib, when linking statically
      zlib/ChangeLog:
        upgrade zlib to 1.2.2
      zlib/FAQ:
        upgrade zlib to 1.2.2
      zlib/INDEX:
        upgrade zlib to 1.2.2
      zlib/README:
        upgrade zlib to 1.2.2
      zlib/crc32.c:
        upgrade zlib to 1.2.2
      zlib/deflate.c:
        upgrade zlib to 1.2.2
      zlib/deflate.h:
        upgrade zlib to 1.2.2
      zlib/gzio.c:
        upgrade zlib to 1.2.2
      zlib/infback.c:
        upgrade zlib to 1.2.2
      zlib/inffast.c:
        upgrade zlib to 1.2.2
      zlib/inflate.c:
        upgrade zlib to 1.2.2
      zlib/inftrees.c:
        upgrade zlib to 1.2.2
        Apply security patch for CAN-2005-2096
      zlib/inftrees.h:
        upgrade zlib to 1.2.2
        applied another security fix to resolve CAN-2005-1849, taken from the 1.2.3 zlib sources
      zlib/trees.c:
        upgrade zlib to 1.2.2
      zlib/zconf.h:
        upgrade zlib to 1.2.2
      zlib/zlib.3:
        upgrade zlib to 1.2.2
      zlib/zlib.h:
        upgrade zlib to 1.2.2
      zlib/zutil.h:
        upgrade zlib to 1.2.2
      0f867ef7
    • unknown's avatar
      - fixed a typo in C++Files/client/mysqlclient_ia64.dsp: ctype-cp963.c -> ctype-cp932.c · 8cec8458
      unknown authored
        (thanks to JoergB for spotting it)
      
      
      VC++Files/client/mysqlclient_ia64.dsp:
        - fixed a typo: ctype-cp963.c -> ctype-cp932.c (thanks to JoergB for spotting it)
      8cec8458
    • unknown's avatar
      Increase version number (prepare for new build including security fixes in "zlib"). · 3fee068e
      unknown authored
      
      BitKeeper/etc/config:
        Using licensed version now.
      3fee068e
    • unknown's avatar
      func_gconcat.result, func_gconcat.test: · 21d2fb62
      unknown authored
        Added a test case for bug #12095.
      sql_class.h:
        Fixed bug #12095: a join query with GROUP_CONCAT over a single row table.
        Added a flag to the TMP_TABLE_PARAM class forcing to put constant
        items generated after elimination of a single row table into temp table
        in some cases (e.g. when GROUP_CONCAT is calculated over a single row
        table).
        bk ci sql/item_sum.cc
        Fixed bug #12095: a join query with GROUP_CONCAT over a single row table.
        If GROUP_CONCAT is calculated we always put its argument into a temp
        table, even when the argument is a constant item.
      sql_select.cc:
        Fixed bug #12095: a join query with GROUP_CONCAT over one row table.
        If temp table is used to calculate GROUP_CONCAT the argument should
        be always put into this table, even when it is a constant item.
      
      
      sql/sql_select.cc:
        Fixed bug #12095: a join query with GROUP_CONCAT over one row table.
        If temp table is used to calculate GROUP_CONCAT the argument should
        be always put into this table, even when it is a constant item.
      sql/sql_class.h:
        Fixed bug #12095: a join query with GROUP_CONCAT over a single row table.
        Added a flag to the TMP_TABLE_PARAM class forcing to put constant
        items generated after elimination of a single row table into temp table
        in some cases (e.g. when GROUP_CONCAT is calculated over a single row
        table).
        bk ci sql/item_sum.cc
        Fixed bug #12095: a join query with GROUP_CONCAT over a single row table.
        If GROUP_CONCAT is calculated we always put its argument into a temp
        table, even when the argument is a constant item.
      mysql-test/t/func_gconcat.test:
        Added a test case for bug #12095.
      mysql-test/r/func_gconcat.result:
        Added a test case for bug #12095.
      21d2fb62
    • unknown's avatar
      testcase for bug 10780 was not added in the previous commit · 26547b33
      unknown authored
      
      mysql-test/t/rpl_slave_status.test:
        New BitKeeper file ``mysql-test/t/rpl_slave_status.test''
      26547b33
    • unknown's avatar
      patch for bug 10780 · fa7ed076
      unknown authored
      
      sql/slave.cc:
        bug 10780
      sql/slave.h:
        bug 10780
      mysql-test/r/rpl_slave_status.result:
        New BitKeeper file ``mysql-test/r/rpl_slave_status.result''
      fa7ed076
    • unknown's avatar
      null_key.test, null_key.result: · 0ad1836d
      unknown authored
        Made the test case for bug #12144 independent on other tests.
      
      
      mysql-test/r/null_key.result:
        Made the test case for bug #12144 independent on other tests.
      mysql-test/t/null_key.test:
        Made the test case for bug #12144 independent on other tests.
      0ad1836d
  8. 28 Jul, 2005 1 commit
    • unknown's avatar
      null_key.test, null_key.result: · a54ddda4
      unknown authored
        Modified the test case for patch of the bug #12144
        to display status of Handler_read_next before and
        after the tested query.
      
      
      mysql-test/r/null_key.result:
        Modified the test case for patch of the bug #12144
        to display status of Handler_read_next before and
        after the tested query.
      mysql-test/t/null_key.test:
        Modified the test case for patch of the bug #12144
        to display status of Handler_read_next before and
        after the tested query.
      a54ddda4