1. 28 Feb, 2006 14 commits
  2. 27 Feb, 2006 24 commits
    • unknown's avatar
      Merge baker@bk-internal.mysql.com:/home/bk/mysql-5.1-new · 10080bb1
      unknown authored
      into  zim.(none):/home/brian/mysql/dep-5.1
      
      
      10080bb1
    • unknown's avatar
      another cleanup patch for removing tables before tests start. · f78d0531
      unknown authored
      
      mysql-test/extra/binlog_tests/insert_select-binlog.test:
        Fixing isssues with preexisting tables
      mysql-test/r/binlog_stm_insert_select.result:
        new results
      f78d0531
    • unknown's avatar
      Merge mysql.com:/users/lthalmann/bkroot/mysql-5.0 · fedf6131
      unknown authored
      into  mysql.com:/users/lthalmann/bk/mysql-5.0-bug13418
      
      
      sql/field.h:
        Auto merged
      fedf6131
    • unknown's avatar
      Merge mysql.com:/home/dlenev/src/mysql-5.0-bg13525 · b6c3c726
      unknown authored
      into  mysql.com:/home/dlenev/src/mysql-5.1-merges2
      
      
      mysql-test/t/trigger.test:
        Auto merged
      b6c3c726
    • unknown's avatar
      BUG#13418: Virtualized some functions so that Bit_field class will use correct cmp functions · f9804136
      unknown authored
      
      sql/field.h:
        Virtualized some functions so that Bit_field class will use correct cmp functions
      f9804136
    • unknown's avatar
      Fix for trigger.test failures on pushbuild hosts introduced by fix for · 2efabfd1
      unknown authored
      bug #13525 "Rename table does not keep info of triggers".
      
      Now we use MYSQLTEST_VARDIR in order to be able to run this test in different
      vardir. Also improved cleanup after the test.
      
      
      mysql-test/t/trigger.test:
        Now we use MYSQLTEST_VARDIR in order to be able to run this test in different
        vardir. Also improved cleanup after the test.
      2efabfd1
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1-new · 13b4ee92
      unknown authored
      into  mysql.com:/home/dlenev/src/mysql-5.1-merges2
      
      
      sql/sql_base.cc:
        Auto merged
      13b4ee92
    • unknown's avatar
      Merge mysql.com:/home/dlenev/src/mysql-5.0-bg13525 · e54ecf09
      unknown authored
      into  mysql.com:/home/dlenev/src/mysql-5.1-merges2
      
      
      client/mysqltest.c:
        Auto merged
      include/my_global.h:
        Auto merged
      mysql-test/mysql-test-run.pl:
        Auto merged
      mysql-test/mysql-test-run.sh:
        Auto merged
      mysql-test/r/heap.result:
        Auto merged
      mysql-test/r/merge.result:
        Auto merged
      mysql-test/r/ps.result:
        Auto merged
      mysql-test/r/trigger.result:
        Auto merged
      mysql-test/r/view.result:
        Auto merged
      mysql-test/t/ps.test:
        Auto merged
      mysql-test/t/trigger.test:
        Auto merged
      mysql-test/t/view.test:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/field.h:
        Auto merged
      sql/ha_myisammrg.cc:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      sql/sql_select.h:
        Auto merged
      sql/sql_show.cc:
        Auto merged
      sql/sql_table.cc:
        Auto merged
      storage/myisammrg/myrg_queue.c:
        Auto merged
      sql/sql_rename.cc:
        Manual merge.
      sql/sql_trigger.cc:
        Manual merge.
      sql/sql_yacc.yy:
        Manual merge.
      e54ecf09
    • unknown's avatar
      Fixed test results after bad auto-merge. · 475eb3e9
      unknown authored
      475eb3e9
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · c7fc3773
      unknown authored
      into  mysql.com:/home/dlenev/src/mysql-5.0-bg13525
      
      
      c7fc3773
    • unknown's avatar
      Merge svlasenko@bk-internal.mysql.com:/home/bk/mysql-5.0 · 0aae3cd5
      unknown authored
      into  selena.:H:/MYSQL/src/#15943-mysql-5.0
      
      
      mysql-test/r/view.result:
        Auto merged
      mysql-test/t/view.test:
        Auto merged
      0aae3cd5
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 6e7d47e2
      unknown authored
      into  mysql.com:/home/dlenev/src/mysql-5.0-bg13525
      
      
      sql/field.cc:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      sql/sql_table.cc:
        Auto merged
      sql/sql_select.h:
        Manual merge.
      6e7d47e2
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0 · a431e912
      unknown authored
      into  mysql.com:/home/psergey/mysql-5.0-bug17314-push
      
      
      a431e912
    • unknown's avatar
      Post-merge fixes. · 594ba86b
      unknown authored
      
      sql/ha_ndbcluster_binlog.cc:
        Correcting use of bad variable in merge.
      sql/sql_base.cc:
        Removing assertion check for mutex in table share.
      594ba86b
    • unknown's avatar
      BUG#2845 client fails to reconnect if using TCP/IP · f56e8734
      unknown authored
       - Use 'poll' if available
       - Check that sd <= FD_SETSIZE if using 'select'
       - Handle case when 'net_data_is_ready' returns -1, ie. sd > FD_SETSIZE and 'select' is used 
      
      
      sql/net_serv.cc:
        Use 'poll' in favor of 'select' if avaliable
        This is to avoid the limitation with 'select' only being able to handle fd's with numbers <= 1024 as default.
        If 'poll' is not available use 'select' but check that we are not having a number higher than FD_SETSIZE
        Handle the case when 'net_data_is_ready' can't check if there is data to read, since the sd number is too high
      f56e8734
    • unknown's avatar
      Bug#17279 user with no global privs and with create priv in db can create databases · 79fbd665
      unknown authored
       - Use binary charset in acl_cache, to make searches case sensitive
       - Add testcase 
      
      
      mysql-test/r/grant2.result:
        Update test result
      mysql-test/t/grant2.test:
        Add test case for bug#17279, checking that user with access to TESTDB can't create TEStdb
      sql/sql_acl.cc:
        Use binary charset for the acl_cache to make the hash lookups case sensitive.
        Thus denying user with access to "TESTDB" access to "TEStdb"
      79fbd665
    • unknown's avatar
    • unknown's avatar
      Merge shellback.(none):/home/msvensson/mysql/mysql-5.1 · 8b80f542
      unknown authored
      into  shellback.(none):/home/msvensson/mysql/bug17721/my51-bug17721
      
      
      8b80f542
    • unknown's avatar
      Bug#17721 Test 'exampledb' hangs on Windows · 7eeb751a
      unknown authored
      - Removed ifdefs from handler class
      - The handler class is an external interface to dynamically loadable storage engine and should not be changed by defines. This is especially important for the virtual functions. 
      
      
      sql/handler.h:
        Remove the ifdef's for WITH_PARTITION_STORAG_ENGINE from handler class.
      7eeb751a
    • unknown's avatar
      Bug#16795 ndb_cache_multi2 · 701bd9ed
      unknown authored
       - Change && to ||
       - Check for return value != 0 in "ndb->init()"
      
      
      mysql-test/r/ndb_cache_multi2.result:
        Update test result
      mysql-test/t/ndb_cache_multi2.test:
        Update test case
        - add printouts for what server the queries are from
        - Run the query from "while" once on server1 to cache it
      sql/ha_ndbcluster.cc:
        && => ||, to call both the function "thd->store_global()" and "ndb->init()" 
        ndb_init returns 0 on sucess. Fail if not zero.
      701bd9ed
    • unknown's avatar
      Bug#17716 Slave crash in net_clear on qnx · b97082c5
      unknown authored
       - Set FD_SETSIZE before including "sys/select.h"
      
      
      include/my_global.h:
        Define FD_SETSIZE on QNX before including "sys/select.h" or "sys/time.h". This defines number of bits in fd_set type used for 'select'
      b97082c5
    • unknown's avatar
      Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.0 · f37f4b01
      unknown authored
      into mysql.com:/home/psergey/mysql-5.0-bug17314
      
      
      f37f4b01
    • unknown's avatar
      Merge mysql.com:/home/bkroot/mysql-5.1-new · 9a26412c
      unknown authored
      into  mysql.com:/home/bk/fix-mysql-5.1-release
      
      
      sql/log_event.cc:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      9a26412c
    • unknown's avatar
      xml.test: · e2393aa2
      unknown authored
      xml.result:
        Adding test for Bug #16312 XML: extractvalue() crash if angle brackets,
        A fix for #16234 fixed this bug automatically.
      
      
      mysql-test/t/xml.test:
        Adding test for Bug #16312 XML: extractvalue() crash if angle brackets,
        A fix for #16234 fixed this bug automatically.
      e2393aa2
  3. 26 Feb, 2006 2 commits