1. 04 Dec, 2006 5 commits
    • unknown's avatar
      No bug number. · 3483ed7d
      unknown authored
      Fixed typos in the comments.
      
      
      sql/sql_yacc.yy:
        Fixed typos
      3483ed7d
    • unknown's avatar
      Merge outpost.site:/home/cps/mysql/trees/5.0-runtime-19044 · 971b2aab
      unknown authored
      into  outpost.site:/home/cps/mysql/trees/5.1-runtime-19044
      
      
      server-tools/instance-manager/listener.cc:
        Auto merged
      971b2aab
    • unknown's avatar
      Fix Bug #19044 IM aborts on exit · 2beef6d5
      unknown authored
      On windows IM aborted on assert once one
      stoppped it. The reason is that we didn't
      close the sockets on windows and therefore,
      the listener thread wasn't able to finish.
      This happened because we used close() call
      for it. While on windows one should use
      closesocket().
      On other platfroms we have appropriate defines
      for closesocket(), so this is the function which
      should be used.
      
      
      server-tools/instance-manager/listener.cc:
        close -> closesocket
      2beef6d5
    • unknown's avatar
      Merge pchardin@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime · ad8bccee
      unknown authored
      into  outpost.site:/home/cps/mysql/trees/5.1-runtime-19044
      
      
      storage/csv/ha_tina.cc:
        Auto merged
      ad8bccee
    • unknown's avatar
      Fix Bug #21328 mysqld issues warnings on ALTER CSV table to MyISAM · 178acd10
      unknown authored
      
      mysql-test/r/csv.result:
        update result file
      mysql-test/r/log_tables.result:
        log_tables test contains alter of a CSV table with
        NULLs which results in warnings. In fact this is how
        the bug noticed. So, now when it is fixed we should
        update result file.
      mysql-test/t/csv.test:
        add a test for the bug
      storage/csv/ha_tina.cc:
        We should write 0 to the data file in the
        case we meet NULL. CSV does not support
        NULL values internally and we shouldn't
        distinguish them from 0 when writing a row
        (the alternative is to implement full NULL
        support). Otherwise other routines (such as
        Field::check_int() become confused).
        In 5.0 NULLs are stored as zeroes. In 5.1 it
        somehow turned into empty string. Which is wrong.
      178acd10
  2. 01 Dec, 2006 10 commits
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · b71e1ee3
      unknown authored
      into  bodhi.local:/opt/local/work/mysql-5.1-runtime
      
      
      server-tools/instance-manager/guardian.cc:
        Auto merged
      sql/handler.cc:
        Auto merged
      sql/set_var.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      sql/sql_prepare.cc:
        Auto merged
      b71e1ee3
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1-runtime · 26ea337e
      unknown authored
      into  bodhi.local:/opt/local/work/mysql-5.1-runtime
      
      26ea337e
    • unknown's avatar
      Merge bodhi.local:/opt/local/work/mysql-5.0-4968 · 1df4f8fb
      unknown authored
      into  bodhi.local:/opt/local/work/mysql-5.1-runtime
      
      
      sql/sql_class.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      sql/sql_prepare.cc:
        Auto merged
      tests/mysql_client_test.c:
        Manual merge.
      1df4f8fb
    • unknown's avatar
      A fix and a test case for Bug#24179 "select b into $var" fails with · ffc103ca
      unknown authored
      --cursor_protocol": fix a misleading error message in case of
      SELECT .. INTO.
      
      
      sql/sql_class.cc:
        Implement select_result::check_simple_select hierarchy to 
        support correct error messages in case of SELECT .. INTO and C API 
        cursors.
      sql/sql_class.h:
        Set the error message inside the function that checks for the error
        condition (simple_select, renamed to check_simple_select).
      sql/sql_prepare.cc:
        Use a new method that now sets the error.
      tests/mysql_client_test.c:
        Add a test case for Bug#24179 "select b into $var" fails with 
        --cursor_protocol" (check for the right error message and error code).
      ffc103ca
    • unknown's avatar
      Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.1 · 14e1e7bf
      unknown authored
      into  kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
      
      
      client/mysqltest.c:
        Auto merged
      mysql-test/mysql-test-run.pl:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/item.cc:
        Auto merged
      sql/item_sum.cc:
        Auto merged
      sql/opt_range.cc:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      sql/table.cc:
        Auto merged
      14e1e7bf
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.1 · 8ac50739
      unknown authored
      into  dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.1-opt
      
      
      sql/table.cc:
        Auto merged
      8ac50739
    • unknown's avatar
      Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.1-marvel · 263258d4
      unknown authored
      into  kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
      
      
      Makefile.am:
        Auto merged
      sql-common/my_time.c:
        Auto merged
      263258d4
    • unknown's avatar
      Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.1 · 29eadca0
      unknown authored
      into  kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
      
      
      mysql-test/lib/mtr_process.pl:
        Auto merged
      29eadca0
    • unknown's avatar
      Merge malff@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime · 47757d92
      unknown authored
      into  weblab.(none):/home/marcsql/TREE/mysql-5.1-11733_topdown
      
      
      sql/handler.cc:
        Auto merged
      sql/set_var.cc:
        Auto merged
      47757d92
    • unknown's avatar
      WL#3602 · f2c77108
      unknown authored
      Post review changes
      the --read-only option is not enforced for the slave thread in replication, or for the SUPER user.
      
      
      sql/handler.cc:
        Post review changes
        Allowing writes for the slave thread or for SUPER, in read-only mode
      sql/lock.cc:
        Post review changes
        Allowing writes for the slave thread or for SUPER, in read-only mode
      mysql-test/r/rpl_read_only.result:
        New test
      mysql-test/t/rpl_read_only-slave.opt:
        New test
      mysql-test/t/rpl_read_only.test:
        New test
      f2c77108
  3. 30 Nov, 2006 25 commits
    • unknown's avatar
      Merge kahlann.erinye.com:/home/df/mysql/build/mysql-5.0-build-work · b4ced61b
      unknown authored
      into  kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
      
      
      mysql-test/mysql-test-run.pl:
        Auto merged
      b4ced61b
    • unknown's avatar
      late after-merge fix · 57cecec7
      unknown authored
      
      mysql-test/mysql-test-run.pl:
        late after-merge fix: re-add MTR_BUILD_THREAD=auto
      57cecec7
    • unknown's avatar
      Merge monty@192.168.0.9:/home/my/mysql-5.1 · a5a6555f
      unknown authored
      into  mysql.com:/home/my/mysql-5.1
      
      a5a6555f
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · 2daac683
      unknown authored
      into  mysql.com:/home/my/mysql-5.1
      
      
      configure.in:
        Auto merged
      include/my_pthread.h:
        Auto merged
      libmysql/libmysql.c:
        Auto merged
      server-tools/instance-manager/guardian.cc:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/field.h:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/item_strfunc.cc:
        Auto merged
      sql/item_sum.cc:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/set_var.cc:
        Auto merged
      sql/sql_cache.cc:
        Auto merged
      sql/sql_lex.h:
        Auto merged
      sql/sql_plugin.cc:
        Auto merged
      sql/sql_trigger.cc:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      sql/table.cc:
        Auto merged
      storage/archive/ha_archive.cc:
        Auto merged
      storage/csv/ha_tina.cc:
        Auto merged
      storage/federated/ha_federated.cc:
        Auto merged
      sql/item_create.cc:
        manual merge
      2daac683
    • unknown's avatar
      After merge fixes · 4294bb89
      unknown authored
      Marked some functions as noreturn
      
      
      sql/mysql_priv.h:
        Marked some functions as noreturn
      storage/federated/ha_federated.cc:
        After merge fix
      storage/myisam/ft_boolean_search.c:
        Removed duplicate code
      storage/myisam/myisamchk.c:
        Added LINT_INIT()
      storage/myisam/myisampack.c:
        After merge fix
      storage/myisam/sort.c:
        Indentation fixup
      4294bb89
    • unknown's avatar
      Merge mysql.com:/home/my/mysql-5.0 · b2c471ce
      unknown authored
      into  mysql.com:/home/my/mysql-5.1
      
      
      client/mysql.cc:
        Auto merged
      cmd-line-utils/readline/bind.c:
        Auto merged
      cmd-line-utils/readline/histfile.c:
        Auto merged
      extra/yassl/taocrypt/include/algebra.hpp:
        Auto merged
      include/my_global.h:
        Auto merged
      include/my_tree.h:
        Auto merged
      mysys/my_thr_init.c:
        Auto merged
      server-tools/instance-manager/guardian.cc:
        Auto merged
      server-tools/instance-manager/portability.h:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/gen_lex_hash.cc:
        Auto merged
      sql/item.cc:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/mysqld.cc:
        Auto merged
      sql/set_var.cc:
        Auto merged
      sql/slave.cc:
        Auto merged
      sql/sp_cache.cc:
        Auto merged
      sql/sp_head.cc:
        Auto merged
      sql/sql_acl.cc:
        Auto merged
      sql-common/client.c:
        Auto merged
      sql-common/my_time.c:
        Auto merged
      sql/sql_delete.cc:
        Auto merged
      sql/sql_handler.cc:
        Auto merged
      sql/sql_lex.h:
        Auto merged
      sql/sql_prepare.cc:
        Auto merged
      sql/sql_view.cc:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      storage/heap/hp_clear.c:
        Auto merged
      storage/heap/hp_write.c:
        Auto merged
      storage/innobase/handler/ha_innodb.cc:
        Auto merged
      storage/innobase/os/os0file.c:
        Auto merged
      strings/ctype-simple.c:
        Auto merged
      client/mysqldump.c:
        Manual merge
      client/mysqltest.c:
        Manual merge
      extra/replace.c:
        Manual merge
      libmysql/libmysql.c:
        Manual merge
      mysys/base64.c:
        Manual merge
      sql/ha_ndbcluster.cc:
        Manual merge
      sql/handler.cc:
        Manual merge
      sql/item_strfunc.cc:
        Manual merge
      sql/item_timefunc.cc:
        Manual merge
      sql/log.cc:
        Manual merge
      sql/opt_range.cc:
        Manual merge
      sql/password.c:
        Manual merge
      sql/sp.cc:
        Manual merge
      sql/sql_base.cc:
        Manual merge
      sql/sql_cache.cc:
        Manual merge
      sql/sql_db.cc:
        Manual merge
      sql/sql_rename.cc:
        Manual merge
      sql/sql_select.cc:
        Manual merge
      sql/sql_show.cc:
        Manual merge
      sql/sql_trigger.cc:
        Manual merge
      sql/sql_update.cc:
        Manual merge
      sql/tztime.cc:
        Manual merge
      storage/archive/ha_archive.cc:
        Manual merge
      storage/federated/ha_federated.cc:
        Manual merge
      storage/myisam/mi_create.c:
        Manual merge
      storage/myisam/myisampack.c:
        Manual merge
      storage/myisammrg/myrg_rkey.c:
        Manual merge
      storage/ndb/src/mgmapi/mgmapi.cpp:
        Manual merge
      storage/ndb/src/ndbapi/Ndb.cpp:
        Manual merge
      storage/ndb/src/ndbapi/NdbScanOperation.cpp:
        Manual merge
      storage/ndb/src/ndbapi/NdbTransaction.cpp:
        Manual merge
      storage/ndb/src/ndbapi/Ndblist.cpp:
        Manual merge
      b2c471ce
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · 85b49578
      unknown authored
      into  bodhi.local:/opt/local/work/mysql-5.1-runtime
      
      85b49578
    • unknown's avatar
      Don't abort if we call my_thread_end() multiple times · 346557a9
      unknown authored
      Fixed new introduced bug in my_time.c
      
      
      BitKeeper/deleted/.del-valgrind.supp.orig:
        Delete: mysql-test/valgrind.supp.orig
      mysys/my_thr_init.c:
        More comments
        Don't abort if we call my_thread_end() multiple times
      sql-common/my_time.c:
        Fixed wrong patch in last commit
      sql/sql_cache.cc:
        Fixed old bad merge (not critical)
      sql/tztime.cc:
        Portability fix
      346557a9
    • unknown's avatar
      Fixed compiler warnings · ece6b7e1
      unknown authored
      Don't assert if my_thread_end() is called twice (common case)
      
      
      client/mysql.cc:
        Removed not used variables
      client/mysqldump.c:
        Fixed compiler warnings
      client/mysqltest.c:
        Fixed compiler warnings
      cmd-line-utils/readline/bind.c:
        Fixed compiler warnings
      cmd-line-utils/readline/histfile.c:
        Fixed compiler warnings
      extra/replace.c:
        Fixed compiler warning on windows
      extra/yassl/taocrypt/include/algebra.hpp:
        Fixed compiler warnings
      heap/hp_write.c:
        Fixed compiler warnings
      innobase/os/os0file.c:
        Fixed compiler warnings
      libmysql/libmysql.c:
        Call my_end()/my_thread_end last.
        my_end() calls free_charsets(), which allowed me to move the call
      myisam/myisampack.c:
        Fixed compiler warnings
      myisammrg/myrg_rkey.c:
        Fixed compiler warnings
      mysys/my_thr_init.c:
        More comments
        Don't assert if my_thread_end() is called twice (common case)
      ndb/src/mgmapi/mgmapi.cpp:
        Fixed compiler warnings
      ndb/src/ndbapi/Ndb.cpp:
        Fixed compiler warnings
      ndb/src/ndbapi/NdbScanOperation.cpp:
        Fixed compiler warnings
      ndb/src/ndbapi/NdbTransaction.cpp:
        Fixed compiler warnings
      ndb/src/ndbapi/Ndblist.cpp:
        Fixed compiler warnings
      server-tools/instance-manager/guardian.cc:
        Removed not used variable
      server-tools/instance-manager/portability.h:
        Removed duplicated symbol
      sql/gen_lex_hash.cc:
        Fixed compiler warning
      sql/ha_archive.cc:
        Fixed compiler warnings
      sql/ha_ndbcluster.cc:
        Fixed compiler warnings
      sql/mysqld.cc:
        Fixed compiler warnings
      sql/sql_cache.cc:
        Fixed compiler warnings
        Fixed DBUG_PRINT strings to be consistent with 5.1
      sql/tztime.cc:
        Fixed compiler warnings
      sql/uniques.cc:
        Fixed compiler warnings
      ece6b7e1
    • unknown's avatar
      Bug #24487 Valgrind: uninited byte in table->record[1] in binlog code for rbr + inno db · e11d8d5a
      unknown authored
      The reason of this valgrind's compaint is not a bug but rather a feature of bitwise ops:
      for any value of the byte x
      x | 1 -> 1,  and x & 0 -> 0.
      x, being a null_byte part of record[1] can be left unassigned even after
      ha_innobase::index_read_idx because the above and still be correct.
      Addding a check memory upon the invocation of the function can detect this fact
      long before record[1], old record, is eventually passed to my_write.
      
      Fixed with initialization of record[1]'s null_bytes part in open_table_from_share.
      
      
      sql/table.cc:
        initialization of null-bytes for valgrind.
      e11d8d5a
    • unknown's avatar
      Merge dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.0-opt · b8feda9f
      unknown authored
      into  dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.1-opt
      
      
      mysql-test/r/func_gconcat.result:
        Auto merged
      mysql-test/r/func_group.result:
        Auto merged
      mysql-test/t/func_gconcat.test:
        Auto merged
      mysql-test/t/func_group.test:
        Auto merged
      b8feda9f
    • unknown's avatar
      Merge bk-internal:/home/bk/mysql-5.0-opt · 47515a57
      unknown authored
      into  macbook.gmz:/Users/kgeorge/mysql/work/B11927-5.0-opt
      
      47515a57
    • unknown's avatar
      func_group.test, func_group.result, func_gconcat.result, func_gconcat.test: · 79bd7f27
      unknown authored
        merge fix : removed undeterministic warnings
      
      
      mysql-test/r/func_gconcat.result:
        merge fix : removed undeterministic warnings
      mysql-test/r/func_group.result:
        merge fix : removed undeterministic warnings
      mysql-test/t/func_gconcat.test:
        merge fix : removed undeterministic warnings
      mysql-test/t/func_group.test:
        merge fix : removed undeterministic warnings
      79bd7f27
    • unknown's avatar
      Fixed portability issue in my_thr_init.c (was added in my last push) · 47cca173
      unknown authored
      Fixed compiler warnings (detected by VC++):
      - Removed not used variables
      - Added casts
      - Fixed wrong assignments to bool
      - Fixed wrong calls with bool arguments
      - Added missing argument to store(longlong), which caused wrong store method to be called.
      
      
      
      client/mysqldump.c:
        Removed compiler warning
      heap/hp_clear.c:
        Removed compiler warning
      include/my_global.h:
        Removed compiler warning
      include/my_tree.h:
        Changed memory limits from int to ulong
        (Allowed me to get rid of some compiler warnings)
      myisam/mi_create.c:
        Removed compiler warning
      myisam/myisampack.c:
        Removed compiler warning
      mysys/base64.c:
        Removed compiler warning
      mysys/my_thr_init.c:
        Fixed portability issue (detected on windows)
        Added DBUG_ASSERT to detect if we call my_thread_end() too many times
        Don't wait if THR_thread_count == -1 (error condition)
      mysys/tree.c:
        Removed compiler warning
      sql/field.cc:
        Removed compiler warning
        Fixed wrong parameter to check_date()
        Added missing argument to store(longlong)
      sql/ha_archive.cc:
        Removed compiler warning
      sql/ha_federated.cc:
        Removed compiler warning
      sql/ha_innodb.cc:
        Removed not used variable
      sql/handler.cc:
        Removed not used variable
        Fixed wrong if (we didn't detect if rollback or commit failed). Not critical as value is not yet used
      sql/item.cc:
        Removed compiler warning
      sql/item_func.cc:
        Removed compiler warning
      sql/item_strfunc.cc:
        Removed compiler warning
      sql/item_timefunc.cc:
        Removed compiler warning
      sql/log.cc:
        Removed compiler warning
      sql/mysql_priv.h:
        Removed compiler warning
      sql/opt_range.cc:
        Removed compiler warning
      sql/password.c:
        Removed compiler warning
      sql/set_var.cc:
        Removed compiler warning
      sql/slave.cc:
        Removed compiler warning
      sql/sp.cc:
        Removed compiler warning
      sql/sp_cache.cc:
        Removed compiler warning
      sql/sp_head.cc:
        Removed compiler warning
        Adjusted argument to reserve() to not use up too much memory that we are probably not going to need
      sql/sql_acl.cc:
        Added missing argument to store(longlong)
      sql/sql_base.cc:
        Removed compiler warning
      sql/sql_db.cc:
        Removed compiler warning
      sql/sql_delete.cc:
        Removed compiler warning
      sql/sql_handler.cc:
        Removed not used variable
      sql/sql_lex.h:
        Removed not used variable
      sql/sql_prepare.cc:
        Removed not used variable
      sql/sql_rename.cc:
        Removed not used variable
      sql/sql_select.cc:
        Fixed that select_options are not 'cut'
        Removed some not used variables
        Removed compiler warnings by adding cast
      sql/sql_show.cc:
        Removed not used variables
        Added missing argument to store(longlong)
        Removed compiler warnings
      sql/sql_trigger.cc:
        Removed not used variables
        Added cast to remove compiler warnings
      sql/sql_update.cc:
        Fixed wrong set of bool variable
      sql/sql_view.cc:
        Removed not used variables
        Added cast to get rid of compiler warnings
      sql-common/client.c:
        Fixed compiler warning
      sql-common/my_time.c:
        Fixed wrong argument to check_date()
        Added casts to get rid of compiler warnings
      sql/sql_yacc.yy:
        Removed not used variable
      sql/uniques.cc:
        Changes memory size from uint to ulong
        Added casts to get rid of compiler warnings
      strings/ctype-simple.c:
        Fixed cast to get rid of compiler warnings
      47cca173
    • unknown's avatar
      Merge kahlann.erinye.com:/home/df/mysql/build/mysql-5.0-build-work · 20a5bc39
      unknown authored
      into  kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
      
      
      mysql-test/lib/mtr_process.pl:
        Auto merged
      20a5bc39
    • unknown's avatar
      Merge kahlann.erinye.com:/home/df/mysql/build/mysql-4.1-build-work · 2fb4ed36
      unknown authored
      into  kahlann.erinye.com:/home/df/mysql/build/mysql-5.0-build-work
      
      
      mysql-test/lib/mtr_process.pl:
        Auto merged
      2fb4ed36
    • unknown's avatar
      minor fix to mtr_process.pl · 3572e3be
      unknown authored
      
      mysql-test/lib/mtr_process.pl:
        print extra message _once_ every 60 seconds
      3572e3be
    • unknown's avatar
      Merge dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.0-opt · d5888633
      unknown authored
      into  dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.1-opt
      
      
      mysql-test/r/func_gconcat.result:
        Auto merged
      mysql-test/r/ps.result:
        Auto merged
      mysql-test/t/func_gconcat.test:
        Auto merged
      mysql-test/t/ps.test:
        Auto merged
      sql/item_sum.cc:
        Auto merged
      d5888633
    • unknown's avatar
      Merge dl145s.mysql.com:/data0/bk/team_tree_merge/mysql-5.1 · dbc35281
      unknown authored
      into  dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.1-opt
      
      
      mysql-test/r/func_in.result:
        Auto merged
      mysql-test/r/ps.result:
        Auto merged
      mysql-test/t/ps.test:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/item_func.h:
        Auto merged
      sql/item_sum.cc:
        Auto merged
      dbc35281
    • unknown's avatar
      Merge dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-4.1-opt · c71d729f
      unknown authored
      into  dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.0-opt
      
      c71d729f
    • unknown's avatar
      Merge dl145s.mysql.com:/data0/bk/team_tree_merge/mysql-5.0 · ee401b22
      unknown authored
      into  dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.0-opt
      
      
      mysql-test/r/ps.result:
        Auto merged
      mysql-test/t/ps.test:
        Auto merged
      sql/item_sum.cc:
        Auto merged
      ee401b22
    • unknown's avatar
      Merge dl145s.mysql.com:/data0/bk/team_tree_merge/mysql-4.1 · 0040158a
      unknown authored
      into  dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-4.1-opt
      
      0040158a
    • unknown's avatar
      func_gconcat.result, func_gconcat.test: · c3eee281
      unknown authored
        disabled warnings because their order is undeterministic
      
      
      mysql-test/t/func_gconcat.test:
        disabled warnings because their order is undeterministic
      mysql-test/r/func_gconcat.result:
        disabled warnings because their order is undeterministic
      c3eee281
    • unknown's avatar
      Merge trift2.:/MySQL/M51/push-5.1 · bb95f59a
      unknown authored
      into  trift2.:/MySQL/M51/bug24182-5.1
      
      bb95f59a
    • unknown's avatar
      support-files/mysql.spec.sh : Call "make install" using "benchdir_root=%{_datadir}" (bug#24182). · 0421ec35
      unknown authored
      
      support-files/mysql.spec.sh:
        Call "make install" using "benchdir_root=%{_datadir}", because that is affecting 
        the regression test suite as well.    Fixes bug#24182.
      0421ec35