1. 16 Aug, 2006 5 commits
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/51-work · a8bbedd7
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
      
      
      a8bbedd7
    • unknown's avatar
      ndb - · dbec4026
      unknown authored
        Increase deadlock-timeout to cater for slow test-machines (possibly running several tests in parallell)
        This will hopefully remove some volatile testfailures in pushbuild
          (i've seen a couple by looking at logs)
      
      
      mysql-test/ndb/ndb_config_1_node.ini:
        Increase deadlock-timeout to cater for slow test-machines (possibly running several tests in parallell)
      mysql-test/ndb/ndb_config_2_node.ini:
        Increase deadlock-timeout to cater for slow test-machines (possibly running several tests in parallell)
      mysql-test/ndb/ndb_config_4_node.ini:
        Increase deadlock-timeout to cater for slow test-machines (possibly running several tests in parallell)
      dbec4026
    • unknown's avatar
      Merge willster.(none):/home/stewart/Documents/MySQL/5.0/ndb · e2da07cd
      unknown authored
      into  willster.(none):/home/stewart/Documents/MySQL/5.1/ndb
      
      
      storage/ndb/src/mgmapi/mgmapi.cpp:
        Auto merged
      storage/ndb/src/mgmclient/CommandInterpreter.cpp:
        Auto merged
      e2da07cd
    • unknown's avatar
      BUG#21671 memory leak for mgmapi event listeners · 105ed9de
      unknown authored
      fixes the following valgrind warning (when running ndb_mgm under valgrind,
      or, indeed any other mgmapi program listening to events):
      
      ==23291== 190 (20 direct, 170 indirect) bytes in 1 blocks are definitely lost in loss record 13 of 22
      ==23291==    at 0x401C895: operator new(unsigned) (vg_replace_malloc.c:163)
      ==23291==    by 0x8075300: ParserImpl::run(Parser<ParserImpl::Dummy>::Context*, Properties const**, bool volatile*) const (Parser.cpp:178)
      ==23291==    by 0x806D09B: Parser<ParserDummy>::parse(Parser<ParserDummy>::Context&, ParserDummy&) (Parser.hpp:219)
      ==23291==    by 0x80671C4: ndb_mgm_call(ndb_mgm_handle*, ParserRow<ParserDummy> const*, char const*, Properties const*) (mgmapi.cpp:355)
      ==23291==    by 0x806AB79: ndb_mgm_listen_event_internal(ndb_mgm_handle*, int const*, int) (mgmapi.cpp:1419)
      ==23291==    by 0x806AC1F: ndb_mgm_listen_event (mgmapi.cpp:1434)
      ==23291==    by 0x805EB5D: event_thread_run(void*) (CommandInterpreter.cpp:467)
      ==23291==    by 0x806F70A: ndb_thread_wrapper (NdbThread.c:68)
      ==23291==    by 0x4042340: start_thread (in /lib/tls/i686/cmov/libpthread-2.3.6.so)
      ==23291==    by 0x429D4ED: clone (in /lib/tls/i686/cmov/libc-2.3.6.so)
      
      
      ndb/src/mgmapi/mgmapi.cpp:
        fix memory leak for mgmapi event listeners (1 per connect)
        
        (missing delete of reply Properties object returned by ndb_mgm_call)
      105ed9de
    • unknown's avatar
      BUG#21670 memory leak in ndb_mgm -e show · 60a0e3d0
      unknown authored
      fix the following valgrind warning when running ndb_mgm -e show (leak only in client)
      
      ==20398== 14,596 (11,936 direct, 2,660 indirect) bytes in 4 blocks are definitely lost in loss record 24 of 25
      ==20398==    at 0x401C4A1: malloc (vg_replace_malloc.c:149)
      ==20398==    by 0x80797A3: ConfigValuesFactory::create(unsigned, unsigned) (ConfigValues.cpp:309)
      ==20398==    by 0x8079F03: ConfigValuesFactory::expand(unsigned, unsigned) (ConfigValues.cpp:325)
      ==20398==    by 0x8079967: ConfigValuesFactory::put(ConfigValues::Entry const&) (ConfigValues.cpp:414)
      ==20398==    by 0x807A7B6: ConfigValuesFactory::unpack(void const*, unsigned) (ConfigValues.cpp:701)
      ==20398==    by 0x806CB9D: ConfigValuesFactory::unpack(UtilBuffer const&) (ConfigValues.hpp:252)
      ==20398==    by 0x8069160: ndb_mgm_get_configuration (mgmapi.cpp:1941)
      ==20398==    by 0x8060661: CommandInterpreter::executeShow(char*) (CommandInterpreter.cpp:1242)
      ==20398==    by 0x8063966: CommandInterpreter::execute_impl(char const*) (CommandInterpreter.cpp:715)
      ==20398==    by 0x8064040: CommandInterpreter::execute(char const*, int, int*) (CommandInterpreter.cpp:625)
      ==20398==    by 0x8064189: Ndb_mgmclient::execute(char const*, int, int*) (CommandInterpreter.cpp:203)
      ==20398==    by 0x805E56C: read_and_execute(int) (main.cpp:124)
      ==20398==    by 0x805E754: main (main.cpp:162)
      ==20398==
      
      
      ndb/src/mgmclient/CommandInterpreter.cpp:
        correctly free (destroy) the configuration fetched for show
      60a0e3d0
  2. 15 Aug, 2006 13 commits
    • unknown's avatar
      BUG#21647 events tests fails with --with-ndbcluster · be495c39
      unknown authored
      ignore the ndb injector thread when selecting from INFORMATION_SCHEMA.PROCESSLIST
      
      
      mysql-test/r/events.result:
        don't select Daemon processes from I_S.PROCESSLIST (i.e. NDB Injector Thread)
      mysql-test/r/events_bugs.result:
        don't select Daemon processes from I_S.PROCESSLIST (i.e. NDB Injector Thread)
      mysql-test/t/events.test:
        don't select Daemon processes from I_S.PROCESSLIST (i.e. NDB Injector Thread)
      mysql-test/t/events_bugs.test:
        don't select Daemon processes from I_S.PROCESSLIST (i.e. NDB Injector Thread)
      be495c39
    • unknown's avatar
      BUG#21652 I_S.PROCESSLIST truncates STATE field compared to SHOW FULL PROCESSLIST · fdc1ee2c
      unknown authored
      increase maximum length to 64 (max length that ndb injector creates is currently 62)
      
      
      sql/sql_show.cc:
        Increase max length of I_S.PROCESSLIST.STATE to accomodate NDB injector strings.
      fdc1ee2c
    • unknown's avatar
      BUG#21650 not_embedded_server fails --with-ndbcluster · e884c5ba
      unknown authored
      make test ignore NDB injector thread
      
      
      mysql-test/r/not_embedded_server.result:
        Use INFORMATION_SCHEMA for getting PROCESSLIST so we can exclude the
        NDB Binlog Injector thread as it may/may not be running depending on
        if --with-ndbcluster is specified to mysql-test-run
      mysql-test/t/not_embedded_server.test:
        Use INFORMATION_SCHEMA for getting PROCESSLIST so we can exclude the
        NDB Binlog Injector thread as it may/may not be running depending on
        if --with-ndbcluster is specified to mysql-test-run
      e884c5ba
    • unknown's avatar
      Merge ssmith@bk-internal.mysql.com:/home/bk/mysql-5.1-new-ndb · 6633a291
      unknown authored
      into  willster.(none):/home/stewart/Documents/MySQL/5.1/ndb
      
      
      6633a291
    • unknown's avatar
      BUG#21648 information_schema test fails --with-ndbcluster · 3106a0a5
      unknown authored
      make test work both with and without ndbcluster
      
      
      mysql-test/r/information_schema.result:
        fix test so that it passes --with-ndbcluster
        
        add conditions to ignore the table_schema='cluster' on some queries as different
        tables are in the cluster database if ndb is running or not.
      mysql-test/t/information_schema.test:
        ignore the 'cluster' database as results differ if --with-ndbcluster or without
        
        explictly use schema 'test' for bug7476 check.
      3106a0a5
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/51-work · f455f7d0
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
      
      
      f455f7d0
    • unknown's avatar
      ndb - · 88166fe3
      unknown authored
        Fix ndb_condition_pushdown (5.0->5.1 merge error)
      
      
      storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp:
        Fix ndb_condition_pushdown
      88166fe3
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/51-work · d44a1cd4
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
      
      
      d44a1cd4
    • unknown's avatar
      ndb - bug#21172 · 6beb5cfa
      unknown authored
        Fix build failure if O_DIRECT is not defined
        Fix stack overflow by making odirect_readbuf global
        Remove soem old debug variables
      
      
      storage/ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp:
        Fix build failure if O_DIRECT is not defined
        Fix stack overflow by making odirect_readbuf global
        Remove soem old debug variables
      storage/ndb/src/kernel/blocks/ndbfs/Ndbfs.cpp:
        Fix build failure if O_DIRECT is not defined
        Fix stack overflow by making odirect_readbuf global
        Remove soem old debug variables
      6beb5cfa
    • unknown's avatar
      Merge willster.(none):/home/stewart/Documents/MySQL/5.0/ndb · b6479b3b
      unknown authored
      into  willster.(none):/home/stewart/Documents/MySQL/5.1/ndb
      
      
      storage/ndb/src/mgmsrv/MgmtSrvr.cpp:
        Auto merged
      storage/ndb/src/mgmsrv/MgmtSrvr.hpp:
        Auto merged
      storage/ndb/src/mgmsrv/Services.cpp:
        Auto merged
      storage/ndb/src/kernel/blocks/backup/Backup.cpp:
        manual merge
      storage/ndb/src/mgmclient/CommandInterpreter.cpp:
        manual merge
      storage/ndb/src/ndbapi/ClusterMgr.cpp:
        manual merge
      storage/ndb/src/ndbapi/ClusterMgr.hpp:
        manual merge
      b6479b3b
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · 94fda191
      unknown authored
      into  willster.(none):/home/stewart/Documents/MySQL/5.1/ndb
      
      
      mysql-test/t/disabled.def:
        Auto merged
      sql/ha_ndbcluster.cc:
        Auto merged
      sql/ha_ndbcluster_binlog.cc:
        Auto merged
      storage/ndb/src/mgmsrv/ConfigInfo.cpp:
        Auto merged
      94fda191
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · f32014a9
      unknown authored
      into  willster.(none):/home/stewart/Documents/MySQL/5.0/ndb
      
      
      f32014a9
    • unknown's avatar
      BUG#20823 testBackup FailMaster failing · 5cafb623
      unknown authored
        
      few cases not handled properly (NF occurs).
      
      
      ndb/src/kernel/blocks/backup/Backup.cpp:
        Don't write fragment info if we haven't retreived any fragment info yet
        (FailMaster test 2)
            
        Go directly onto closing files if the tabPtr is RNIL (as we're in recovery)
      5cafb623
  3. 14 Aug, 2006 19 commits
    • unknown's avatar
      Merge fixes · 7260fd70
      unknown authored
      
      mysql-test/r/mysqldump.result:
        Merge result fix
      mysql-test/r/repair.result:
        Merge Result Fix
      mysql-test/t/mysqldump.test:
        Fix of test
      7260fd70
    • unknown's avatar
      Merge zim.(none):/home/brian/mysql/dep-5.0 · 948a8943
      unknown authored
      into  zim.(none):/home/brian/mysql/dep-5.1
      
      
      client/mysql.cc:
        Auto merged
      mysql-test/r/grant.result:
        Auto merged
      mysql-test/r/grant2.result:
        Auto merged
      mysql-test/r/heap_btree.result:
        Auto merged
      mysql-test/t/grant.test:
        Auto merged
      mysql-test/t/grant2.test:
        Auto merged
      mysql-test/t/mysqlbinlog.test:
        Auto merged
      mysql-test/t/repair.test:
        Auto merged
      scripts/fill_func_tables.sh:
        Auto merged
      scripts/mysql_install_db.sh:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/field.h:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/set_var.cc:
        Auto merged
      sql/sql_update.cc:
        Auto merged
      storage/heap/hp_delete.c:
        Auto merged
      storage/myisam/mi_update.c:
        Auto merged
      storage/myisam/sort.c:
        Auto merged
      mysql-test/r/mysqldump.result:
        Fixing Result
      mysql-test/r/repair.result:
        Fixing result
      mysql-test/t/mysqldump.test:
        Merging change
      storage/archive/ha_archive.cc:
        Merging in change
      948a8943
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · 45a5ca85
      unknown authored
      into  bodhi.local:/opt/local/work/mysql-5.1-runtime-merge
      
      
      45a5ca85
    • unknown's avatar
      scripts/make_binary_distribution.sh : Drop the "max" server from 5.1 packages. · c657ab8f
      unknown authored
      
      scripts/make_binary_distribution.sh:
        Drop the "max" server from 5.1 packages.
      c657ab8f
    • unknown's avatar
      Merge baker@bk-internal.mysql.com:/home/bk/mysql-5.0 · 61d5563b
      unknown authored
      into  zim.(none):/home/brian/mysql/dep-5.0
      
      
      61d5563b
    • unknown's avatar
      Fix a test case (proper clean up). · 492e7b08
      unknown authored
      
      mysql-test/r/mysqldump.result:
        Update results.
      mysql-test/t/mysqldump.test:
        Fix a bug in the test case that left user mysqltest_1@localhost 
        around (this broke furhter tests).
      492e7b08
    • unknown's avatar
      Fix a test suite failure. · e7f7263d
      unknown authored
      
      mysql-test/r/partition_grant.result:
        Update results (cleanup pon top of partition_grant.test)
      e7f7263d
    • unknown's avatar
      ndb - bug#21213 · 68b8afe1
      unknown authored
        5.1-fix adopt to changes in node recovery
      
      
      storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp:
        ix totSendLenAi also in "new" node recovery
      68b8afe1
    • unknown's avatar
      Merge may.pils.ru:/home/svoj/devel/mysql/BUG18874/mysql-4.1 · 867f7368
      unknown authored
      into  may.pils.ru:/home/svoj/devel/mysql/BUG18874/mysql-5.0
      
      
      myisam/sort.c:
        Auto merged
      mysql-test/r/repair.result:
        Auto merged
      mysql-test/t/repair.test:
        Auto merged
      867f7368
    • unknown's avatar
      merge · 7542d1f7
      unknown authored
      7542d1f7
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · 021cea21
      unknown authored
      into  bodhi.local:/opt/local/work/mysql-5.1-runtime-merge
      
      
      sql/mysql_priv.h:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      sql/sql_delete.cc:
        Auto merged
      sql/sql_trigger.cc:
        Auto merged
      sql/sql_view.cc:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      sql/table.cc:
        Auto merged
      sql/sql_db.cc:
        Manual merge.
      sql/sql_show.cc:
        Manual merge.
      sql/sql_table.cc:
        Manual merge.
      021cea21
    • unknown's avatar
      675a5b77
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/50-work · abd3a43b
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/51-work
      
      
      storage/ndb/include/ndbapi/NdbOperation.hpp:
        Auto merged
      storage/ndb/src/kernel/blocks/ERROR_codes.txt:
        Auto merged
      storage/ndb/src/kernel/blocks/dbtc/Dbtc.hpp:
        Auto merged
      storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp:
        Auto merged
      storage/ndb/src/kernel/blocks/dbtup/DbtupPagMan.cpp:
        Auto merged
      storage/ndb/src/kernel/blocks/dbtup/DbtupPageMap.cpp:
        Auto merged
      storage/ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp:
        Auto merged
      storage/ndb/src/mgmapi/ndb_logevent.cpp:
        Auto merged
      storage/ndb/test/ndbapi/testIndex.cpp:
        Auto merged
      storage/ndb/test/ndbapi/testSystemRestart.cpp:
        Auto merged
      storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
        merge
      storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp:
        merge
      storage/ndb/src/kernel/blocks/dbtup/DbtupExecQuery.cpp:
        merge
      storage/ndb/test/run-test/daily-basic-tests.txt:
        merge
      abd3a43b
    • unknown's avatar
      BUG#18874 - Setting myisam_repair_threads > 1, index cardinality always 1 · f6d7985a
      unknown authored
      Fixed by moving update_key_parts() down to be after write_index().
      
      
      myisam/sort.c:
        write_index() collects index statistic which is further used in
        update_key_parts(). Thus update_key_parts() must be called after
        write_index().
      mysql-test/r/repair.result:
        Test case for bug#18874.
      mysql-test/t/repair.test:
        Test case for bug#18874.
      f6d7985a
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb · 5c484fd0
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/51-work
      
      
      5c484fd0
    • unknown's avatar
      Fix for bug#20648 We introduce a new field method for knowing "real size", and... · ba8be739
      unknown authored
      Fix for bug#20648 We introduce a new field method for knowing "real size", and we now in archive null unused bits of a row to null before writing. 
      
      
      sql/field.cc:
        data_length for field needs to be calculated directly.
      sql/field.h:
        The new method data_length() returns the "real" length of the field.
      sql/ha_archive.cc:
        Before a write_row() archive nulls space beyond the size of the row in varchars to make sure that compression only sees NULL.
      ba8be739
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/41-work · d0bd2688
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/50-work
      
      
      ndb/src/kernel/blocks/dbdih/DbdihMain.cpp:
        Auto merged
      ndb/src/kernel/blocks/ndbcntr/NdbcntrMain.cpp:
        Auto merged
      d0bd2688
    • unknown's avatar
      Manual merge 5.0->5.1. Post-merge fixes. · 21e75cb0
      unknown authored
      
      client/mysqldump.c:
        A post-merge fix - 'sock' was renamed to 'mysql'
      mysql-test/r/events_bugs.result:
        A post merge fix: now we strip rear comments from the query before
        it gets into the log.
      mysql-test/r/func_group.result:
        A post merge fix: default clause is now printed uppercase.
      mysql-test/r/im_life_cycle.result:
        Fix my mistake in manual resolve.
      mysql-test/r/mysqlcheck.result:
        use test; - after we drop client_test_db there is no current database.
        This cleanup is present in 5.1 only, but the test that was added in 
        5.0 assumes there is a current database, test.
      mysql-test/r/mysqldump.result:
        Ignore results of execution of mysqldump: we can't rely on 
        MASTER_LOG_POS in test results, it's different for statement
        and row level logging.
      mysql-test/r/mysqlshow.result:
        A post-merge fix: information schema contains a few more tables
        in 5.1
      mysql-test/r/mysqltest.result:
        A post merge fix: add 5.1 test end separator.
      mysql-test/r/ndb_basic.result:
        A post-merge fix: add test end separators.
      mysql-test/r/rpl_switch_stm_row_mixed.result:
        A post merge fix: length of varbinary column is now 3 times less.
        Assuming a side effect of some other change. Length of any
        field is not relevant in this test.
      mysql-test/r/rpl_view.result:
        Add an end of test marker.
      mysql-test/r/show_check.result:
        Remove duplicate results. Add results from a merged test case.
      mysql-test/r/sp-error.result:
        Add test end separators.
      mysql-test/r/sp-security.result:
        Post-merge fix: use test after the current database is dropped.
      mysql-test/r/sp.result:
        Remove a duplicate result (bad merge that left a copy of
        the test case for Bug#19862 in the test suite).
      mysql-test/r/strict.result:
        An after-merge fix for a new test case: in 5.1 we issue a more accurate
        error message: "Incorrect value" instead of "Truncated value". I reason
        it so that in case of an error nothing is truncated, really.
        Also found similar changes in other test cases.
      mysql-test/r/type_datetime.result:
        Fix the text of an error.
      mysql-test/r/union.result:
        A post-merge fix: CHARACTER SET is now uppercase.
      mysql-test/t/mysqlcheck.test:
        A post-merge fix: use test, after current database is dropped, there
        is no current database.
      mysql-test/t/mysqldump.test:
        Disable result log: it's dependent on binlog position.
      mysql-test/t/sp-security.test:
        use test
      sql/item_sum.cc:
        Adjust the call to the constructor after the merge.
      sql/sp_head.cc:
        Add a missing DBUG_VOID_RETURN, move security checks out of
        execute_trigger to Table_triggers_list: in 5.1 we check for
        TRIGGER privilege, not SUPER privilege to execute triggers, so these
        checks lack table context inside execute_trigger and have to be
        performed when we have table object on hand.
      sql/sql_db.cc:
        A post-merge fix: adjust load_db_opt_by_name and check_db_dir_existence
        (new functions added in 5.0) to be tablename-to-filename encoding 
        friendly.
      sql/sql_lex.cc:
        A post-merge fix: make skip_rear_comments operate on const uchar *s.
      sql/sql_lex.h:
        A post-merge fix.
      sql/sql_show.cc:
        A post-merge fix: fix a bad merge, rename orig_sql_command -> sql_command.
      sql/sql_trigger.cc:
        A post-merge fix: move security checks to process_triggers
        from execute_trigger.
      sql/sql_view.cc:
        Adjust to the new signature of skip_rear_comments.
      sql/sql_yacc.yy:
        Adjust to the new signature of init_strings.
      21e75cb0
    • unknown's avatar
      Merge perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new · 2c2bf276
      unknown authored
      into  perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
      
      
      2c2bf276
  4. 12 Aug, 2006 1 commit
    • unknown's avatar
      Merge bodhi.local:/opt/local/work/tmp_merge · f68085c4
      unknown authored
      into  bodhi.local:/opt/local/work/mysql-5.1-runtime-merge
      
      
      BitKeeper/etc/ignore:
        auto-union
      BitKeeper/deleted/.del-im_options_set.result~59278f56be61d921:
        Auto merged
      BitKeeper/deleted/.del-mysqld.dsp~ffdbf2d234e23e56:
        Auto merged
      BitKeeper/deleted/.del-mysys.dsp~32695fee91189326:
        Auto merged
      BitKeeper/deleted/.del-im_options_set.imtest~b53d9d60e5684833:
        Auto merged
      BitKeeper/deleted/.del-im_options_unset.imtest~768eb186b51d0048:
        Auto merged
      BitKeeper/deleted/.del-im_options_unset.result~20a4790cd3c70a4f:
        Auto merged
      client/mysql.cc:
        Auto merged
      client/mysqlbinlog.cc:
        Auto merged
      client/mysqlcheck.c:
        Auto merged
      client/mysqldump.c:
        Auto merged
      client/mysqltest.c:
        Auto merged
      dbug/dbug.c:
        Auto merged
      extra/perror.c:
        Auto merged
      extra/yassl/src/yassl_imp.cpp:
        Auto merged
      extra/yassl/src/yassl_int.cpp:
        Auto merged
      include/mysql.h:
        Auto merged
      include/mysql_com.h:
        Auto merged
      libmysql/libmysql.c:
        Auto merged
      mysql-test/r/cast.result:
        Auto merged
      mysql-test/r/date_formats.result:
        Auto merged
      mysql-test/r/federated.result:
        Auto merged
      mysql-test/r/func_compress.result:
        Auto merged
      mysql-test/r/func_group.result:
        Auto merged
      mysql-test/r/func_time.result:
        Auto merged
      mysql-test/r/gis-rtree.result:
        Auto merged
      mysql-test/r/gis.result:
        Auto merged
      mysql-test/r/im_daemon_life_cycle.result:
        Auto merged
      mysql-test/r/im_utils.result:
        Auto merged
      mysql-test/r/join_outer.result:
        Auto merged
      mysql-test/r/mysqlcheck.result:
        Auto merged
      mysql-test/r/rpl_sp.result:
        Auto merged
      mysql-test/r/rpl_trigger.result:
        Auto merged
      mysql-test/r/sp-code.result:
        Auto merged
      mysql-test/r/sp-security.result:
        Auto merged
      mysql-test/r/strict.result:
        Auto merged
      mysql-test/r/type_blob.result:
        Auto merged
      mysql-test/r/type_datetime.result:
        Auto merged
      mysql-test/r/type_ranges.result:
        Auto merged
      mysql-test/r/udf.result:
        Auto merged
      mysql-test/r/user_var.result:
        Auto merged
      mysql-test/t/cast.test:
        Auto merged
      mysql-test/t/disabled.def:
        Auto merged
      mysql-test/t/func_group.test:
        Auto merged
      mysql-test/t/func_time.test:
        Auto merged
      mysql-test/t/im_daemon_life_cycle.imtest:
        Auto merged
      mysql-test/t/im_life_cycle.imtest:
        Auto merged
      mysql-test/t/im_utils.imtest:
        Auto merged
      mysql-test/t/mysql.test:
        Auto merged
      mysql-test/t/mysqlbinlog.test:
        Auto merged
      mysql-test/t/mysqlcheck.test:
        Auto merged
      mysql-test/t/ps.test:
        Auto merged
      mysql-test/t/rpl_trigger.test:
        Auto merged
      mysql-test/t/sp-security.test:
        Auto merged
      mysql-test/t/strict.test:
        Auto merged
      mysql-test/t/udf.test:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/item.cc:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/item_func.h:
        Auto merged
      sql/item_strfunc.cc:
        Auto merged
      sql/item_strfunc.h:
        Auto merged
      sql/item_subselect.cc:
        Auto merged
      sql/item_sum.h:
        Auto merged
      sql/item_timefunc.cc:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/protocol.cc:
        Auto merged
      sql/slave.cc:
        Auto merged
      sql/sp.cc:
        Auto merged
      sql/sp_head.h:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      sql/sql_lex.cc:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      sql/sql_prepare.cc:
        Auto merged
      sql/sql_udf.cc:
        Auto merged
      sql/sql_view.cc:
        Auto merged
      sql/table.cc:
        Auto merged
      sql-common/client.c:
        Auto merged
      sql-common/my_time.c:
        Auto merged
      sql/table.h:
        Auto merged
      storage/ndb/src/kernel/error/ndbd_exit_codes.c:
        Auto merged
      storage/ndb/src/mgmsrv/ConfigInfo.cpp:
        Auto merged
      mysql-test/r/im_life_cycle.result:
        e
        use local
      mysql-test/r/ps.result:
        use local
      client/Makefile.am:
        Manual merge.
      client/mysqlimport.c:
        Manual merge.
      configure.in:
        Manual merge.
      mysql-test/mysql-test-run.pl:
        Manual merge.
      mysql-test/r/mysqldump.result:
        Manual merge.
      mysql-test/r/mysqltest.result:
        Manual merge.
      mysql-test/r/ndb_basic.result:
        Manual merge.
      mysql-test/r/rpl_view.result:
        Manual merge.
      mysql-test/r/show_check.result:
        Manual merge.
      mysql-test/r/sp-error.result:
        Manual merge.
      mysql-test/r/sp.result:
        Manual merge.
      mysql-test/r/union.result:
        Manual merge.
      mysql-test/t/mysqldump.test:
        Manual merge.
      mysql-test/t/mysqltest.test:
        Manual merge.
      mysql-test/t/ndb_basic.test:
        Manual merge.
      mysql-test/t/rpl_sp.test:
        Manual merge.
      mysql-test/t/rpl_view.test:
        Manual merge.
      mysql-test/t/show_check.test:
        Manual merge.
      mysql-test/t/sp-error.test:
        Manual merge.
      mysql-test/t/sp.test:
        Manual merge.
      sql/item_sum.cc:
        Manual merge.
      sql/mysql_priv.h:
        Manual merge.
      sql/sp_head.cc:
        Manual merge.
      sql/sql_db.cc:
        Manual merge.
      sql/sql_delete.cc:
        Manual merge.
      sql/sql_lex.h:
        Manual merge.
      sql/sql_show.cc:
        Manual merge.
      sql/sql_table.cc:
        Manual merge.
      sql/sql_trigger.cc:
        Manual merge.
      sql/sql_yacc.yy:
        Manual merge.
      tests/mysql_client_test.c:
        Manual merge.
      f68085c4
  5. 11 Aug, 2006 2 commits