1. 27 Jun, 2006 2 commits
    • unknown's avatar
      Merge jmiller@bk-internal.mysql.com:/home/bk/mysql-5.1 · 99b67e68
      unknown authored
      into  mysql.com:/data0/mysql-5.1
      
      99b67e68
    • unknown's avatar
      Many files: · 09442a55
      unknown authored
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
        new file
      
      
      mysql-test/t/ndb_partition_error.test:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/t/ndb_partition_key.test:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/t/ndb_partition_list.test:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/t/ndb_partition_range.test:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/t/ndb_blob_partition.test:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/t/ndb_dd_backuprestore.test:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/r/ndb_partition_error.result:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/r/ndb_partition_key.result:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/r/ndb_partition_list.result:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/r/ndb_partition_range.result:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/r/ndb_blob_partition.result:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      mysql-test/r/ndb_dd_backuprestore.result:
        Adding back ndb partition tests from mysql-test-extra per tomas and clavin
      09442a55
  2. 26 Jun, 2006 9 commits
  3. 25 Jun, 2006 4 commits
    • unknown's avatar
      Post merge fix · 4029c475
      unknown authored
      
      mysql-test/r/func_time.result:
        post-merge fix
      mysql-test/r/select.result:
        post-merge fix
      4029c475
    • unknown's avatar
      Merge mysql.com:/home/emurphy/src/bk-clean/tmp_merge · 0a71088e
      unknown authored
      into  mysql.com:/home/emurphy/src/bk-clean/mysql-5.1
      
      
      mysql-test/mysql-test-run.sh:
        Auto merged
      mysql-test/valgrind.supp:
        Auto merged
      mysql-test/r/func_str.result:
        Auto merged
      mysql-test/r/insert_select.result:
        Auto merged
      mysql-test/r/myisam.result:
        Auto merged
      mysql-test/t/func_time.test:
        Auto merged
      mysql-test/t/myisam.test:
        Auto merged
      mysql-test/t/select.test:
        Auto merged
      mysys/Makefile.am:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/field.h:
        Auto merged
      sql/ha_ndbcluster.cc:
        Auto merged
      sql/item_cmpfunc.cc:
        Auto merged
      sql/item_strfunc.cc:
        Auto merged
      sql/item_strfunc.h:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/opt_sum.cc:
        Auto merged
      sql/slave.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
        Auto merged
      storage/ndb/src/ndbapi/ndberror.c:
        Auto merged
      include/Makefile.am:
        manual merge
      mysql-test/r/func_time.result:
        manual merge
      mysql-test/r/select.result:
        manual merge
      0a71088e
    • unknown's avatar
      .del-make_win_src_distribution.sh~f80d8fca44e4e5f1: · ffe4fad9
      unknown authored
        Delete: scripts/make_win_src_distribution.sh
      Makefile.am:
        Unix and Windows now shares source package
      
      
      scripts/Makefile.am:
        Unix and Windows now shares source package
      BitKeeper/deleted/.del-make_win_src_distribution.sh~f80d8fca44e4e5f1:
        Delete: scripts/make_win_src_distribution.sh
      ffe4fad9
    • unknown's avatar
      BUG#20677: Sporadic failure of test case 'ndb_binlog_multi'. · 3b670b98
      unknown authored
      Start test case with a dummy table create and drop. This ensures that
      NDB event subscription is properly set up before the real test starts,
      which otherwise could sometimes cause INSERT events to be lost.
      
      
      mysql-test/r/ndb_binlog_multi.result:
        Start test with dummy table create/drop to avoid a race.
      mysql-test/t/ndb_binlog_multi.test:
        Start test with dummy table create/drop to avoid a race.
      3b670b98
  4. 24 Jun, 2006 4 commits
  5. 23 Jun, 2006 18 commits
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.1 · 3302f3dd
      unknown authored
      into  mysql.com:/data0/knielsen/tmp-5.1
      
      3302f3dd
    • unknown's avatar
      Post merge fix. · 961a272c
      unknown authored
      961a272c
    • unknown's avatar
      Merge mysql.com:/home/emurphy/src/bk-clean/tmp_merge · 287a89a0
      unknown authored
      into  mysql.com:/home/emurphy/src/bk-clean/mysql-5.1
      
      
      mysql-test/r/func_time.result:
        Auto merged
      sql/item_cmpfunc.cc:
        Auto merged
      mysql-test/r/lock_multi.result:
        manual merge
      mysql-test/t/lock_multi.test:
        manual merge
      sql/ha_innodb.cc:
        manual merge
      287a89a0
    • unknown's avatar
      Fix for bug #18897 "Events: unauthorized action possible with · 2b276ab2
      unknown authored
      alter event rename".
      
      ALTER EVENT ... RENAME statement hasn't checked privileges
      for the target database. It also caused server crashes when
      target database was not specified explicitly and there was
      no current database.
      
      This fix adds missing privilege check and check for the case
      when target database is not specified explicitly or implicitly.
      
      
      mysql-test/r/events_bugs.result:
        update result
      mysql-test/t/events_bugs.test:
        add test case for bug 18897 Events: unauthorized action possible with alter event
        rename:
        - test rename to db the user does not have access to
        - test rename when there is no selected db
      sql/sql_parse.cc:
        Additional check for the situation when no db is selected.
        CREATE EVENT abc and ALTER EVENT db.abc RENAME TO xyz,
        and DROP EVENT abc
        won't work if there is no selected DB.
      2b276ab2
    • unknown's avatar
      Merge pchardin@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime · f8da71fc
      unknown authored
      into  mysql.com:/home/cps/mysql/devel/5.1-curs-bug
      
      f8da71fc
    • unknown's avatar
      remove links from bk to get rid of warnings on windows · 3613b8bc
      unknown authored
      
      BitKeeper/deleted/.del-sql_state.c~3b39d30b649690f3:
        Delete: server-tools/instance-manager/sql_state.c
      BitKeeper/deleted/.del-password.c~9d4b6a4c57887ac7:
        Delete: server-tools/instance-manager/password.c
      BitKeeper/deleted/.del-pack.c~4754cd15e3058c75:
        Delete: server-tools/instance-manager/pack.c
      BitKeeper/deleted/.del-net_serv.cc~120fb81d7e670308:
        Delete: server-tools/instance-manager/net_serv.cc
      3613b8bc
    • unknown's avatar
      Merge mysql.com:/usr/local/mysql/mysql-5.1-vg-apr2 · 888be349
      unknown authored
      into  mysql.com:/usr/local/mysql/tmp-5.1
      
      
      server-tools/instance-manager/instance_options.cc:
        Auto merged
      sql/ha_ndbcluster.cc:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/rpl_injector.cc:
        Auto merged
      sql/rpl_injector.h:
        Auto merged
      888be349
    • unknown's avatar
      Merge mysql.com:/usr/local/mysql/mysql-5.0-bug20622 · e9069146
      unknown authored
      into  mysql.com:/usr/local/mysql/mysql-5.1-vg-apr2
      
      
      mysys/mf_dirname.c:
        Auto merged
      server-tools/instance-manager/instance_options.cc:
        Manual merge.
      e9069146
    • unknown's avatar
      BUG#20622: Fix one-byte buffer overrun in IM directory string handling. · 4c15f742
      unknown authored
      The problem was a call to convert_dirname() with a destination buffer
      that did not have room for the trailing slash added by that function.
      This could cause the instance manager to crash in some cases.
      
      
      mysys/mf_dirname.c:
        Clarify in comments that convert_dirname destination must be larger than
        source to accomodate a trailing slash.
      server-tools/instance-manager/instance_options.cc:
        Fix buffer overrun.
      4c15f742
    • unknown's avatar
      Merge monty@192.168.0.9:/my/mysql-5.1 · 45ea159a
      unknown authored
      into  mysql.com:/home/my/mysql-5.1
      
      
      sql/handler.cc:
        Auto merged
      sql/log_event.cc:
        Auto merged
      45ea159a
    • unknown's avatar
      Suppress memory leak from 'kill_server' · a3d284ea
      unknown authored
      (Happens if main thread exists before kill_server thread, which is ok)
      
      a3d284ea
    • unknown's avatar
      Merge ahristov@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime · 230da33c
      unknown authored
      into lmy004.:/work/mysql-5.1-runtime-bug20624
      
      230da33c
    • unknown's avatar
      disable events tests in embedded · 75e89f42
      unknown authored
      (fix for bug#20290 Event mechanism incompatible with embedded server, but tests tried)
      
      
      mysql-test/t/events.test:
        disable test in embedded
      mysql-test/t/events_bugs.test:
        disable test in embedded
      mysql-test/t/events_grant.test:
        disable test in embedded
      mysql-test/t/events_logs_tests.test:
        disable test in embedded
      mysql-test/t/events_microsec.test:
        disable test in embedded
      mysql-test/t/events_scheduling.test:
        disable test in embedded
      mysql-test/t/events_stress.test:
        disable test in embedded
      75e89f42
    • unknown's avatar
      Fixed memory leak (found by rpl_row_inexist_tbl) · bb2b8f42
      unknown authored
      
      sql/handler.cc:
        Made code more portable
      bb2b8f42
    • unknown's avatar
      Merge monty@192.168.0.9:/my/mysql-5.1 · 06bee2ca
      unknown authored
      into  mysql.com:/home/my/mysql-5.1
      
      
      sql/handler.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      06bee2ca
    • unknown's avatar
      Fixed problem when compiling libmysqld (without replication) · ae9300a1
      unknown authored
      This change allows us to use the stmt_binlog function in the code without ifdefs
      (We should avoid having ifdefs in the .cc and .c files)
      
      
      sql/handler.h:
        Removed compiler warnings
      ae9300a1
    • unknown's avatar
      Merge monty@192.168.0.9:/my/mysql-5.1 · f5d88da5
      unknown authored
      into  mysql.com:/home/my/mysql-5.1
      
      
      sql/handler.cc:
        Auto merged
      f5d88da5
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · bd5c43fa
      unknown authored
      into  mysql.com:/home/my/mysql-5.1
      
      
      sql/handler.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      bd5c43fa
  6. 22 Jun, 2006 3 commits
    • unknown's avatar
      Remove compiler warnings · 7c14b927
      unknown authored
      Fixed wrong table flags type in ndbcluster that caused previous commit to fail
      
      
      client/mysqltest.c:
        Portability fix
      mysys/my_bitmap.c:
        Remove compiler warning
      mysys/my_handler.c:
        Remove compiler warning
      mysys/thr_lock.c:
        Remove compiler warning
      plugin/fulltext/plugin_example.c:
        Remove compiler warning
      sql/ha_ndbcluster.h:
        Fixed wrong of handler flags (caused previous commit to fail)
      sql/ha_ndbcluster_binlog.cc:
        Remove compiler warning
      sql/handler.cc:
        Indentation cleanups
      sql/mysql_priv.h:
        Changed log_output_options to ulong to remove compiler warning (and wrong test on 64 bit machines)
      sql/mysqld.cc:
        Changed log_output_options to ulong to remove compiler warning (and wrong test on 64 bit machines)
        Split initialization of variables of different types to remove compiler warning
      sql/set_var.cc:
        Fixed indentation
      sql/set_var.h:
        sys_var_log_output now takes a pointer to ulong
      storage/archive/archive_test.c:
        Remove compiler warning
      7c14b927
    • unknown's avatar
      disabled.def: · 883fdc96
      unknown authored
        Enabled rpl_ndb_auto_inc per Tomas and Lars
      
      
      mysql-test/t/disabled.def:
        Enabled rpl_ndb_auto_inc per Tomas and Lars
      883fdc96
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 774da9ec
      unknown authored
      into  mysql.com:/opt/local/work/mysql-5.0-runtime
      
      774da9ec