1. 20 Oct, 2006 1 commit
    • unknown's avatar
      Apply InnoDB snapshot ss923 · f6f91b9d
      unknown authored
      Fixes:
      - Bug #18077: InnoDB uses full explicit table locks in stored FUNCTION
      
      
      storage/innobase/btr/btr0btr.c:
        Apply InnoDB snapshot ss923
        
        Revision r919:
        btr_page_get_father_for_rec(): Remove bogus comment about removed dict_tree_t.
      storage/innobase/dict/dict0dict.c:
        Apply InnoDB snapshot ss923
        
        Revision r892:
        Merge changes from MySQL AB.
        
        dict_col_copy_type_noninline(): Remove the return statement.
        Some compilers do not allow return expressions of void type.
        
        innobase_start_or_create_for_mysql(): Do not cap srv_max_threads to 1000
        on Windows.
        
        Makefile.am (EXTRA_DIST): Add plug.in
        
        
        Revision r897:
        dict_index_get_if_in_cache(): Enclose in #ifdef UNIV_DEBUG.
        Replace the search loop with a call to dict_index_find_on_id_low().
      storage/innobase/handler/ha_innodb.cc:
        Apply InnoDB snapshot ss923
        
        Revision r887:
        storage/innobase/handler: Merge changes from MySQL AB:
        
        ChangeSet
          2006/09/30 18:44:42-07:00 brian@zim.(none) 
          Merge zim.(none):/home/brian/mysql/merge-5.1
          into  zim.(none):/home/brian/mysql/arch-5.1
        
        ChangeSet
          2006/09/30 12:49:46-07:00 brian@zim.(none) 
          This patch adds handlerton passing to functions. NDB and Innodb still require a global hanlderton in the main code due to the nature of the sql_cache call back function (should be solveable... another patch).
          Partitioning now has a flag to allow disabling of engines from being compatible with partitioning. Cleaned up heap naming convention on panic call. 
        
        ChangeSet
          2006/09/29 17:19:02-07:00 brian@zim.(none) 
          This removes the passing of global hton to engine instance. 
        
        ChangeSet
          2006/09/28 13:22:56+02:00 gbichot@dl145h.mysql.com 
          Merge gbichot@bk-internal:/home/bk/mysql-5.1-arch
          into  dl145h.mysql.com:/users/gbichot/mysql-5.1-arch
        
        ChangeSet
          2006/09/28 13:19:43+02:00 gbichot@dl145h.mysql.com 
          In the handlerton, cursor creation function don't have an argument
          and so the engine calls current_thd to derive transaction information;
          instead we now pass THD to those functions, it looks more logical
          (it makes the implicit current_thd parameter more visible).
          Approved by Brian and Monty.
        
        ChangeSet
          2006/09/26 22:51:53-07:00 brian@zim.(none) 
          Merge zim.(none):/home/brian/mysql/merge-5.1
          into  zim.(none):/home/brian/mysql/arch-5.1
        
        
        Revision r895:
        Merge changes from MySQL AB, and remove two compilation warnings.
        
        ha_innodb.cc: innodb_mutex_show_status(): Add (ulong) casts to
        ulonglong expressions being passed to fprintf %lu.  The warnings
        were apparently introduced by MySQL AB developers.
        
        mysql_declare_plugin(innobase): Add PLUGIN_LICENSE_GPL.
        
        have_innodb.inc: Merge changes from MySQL AB.
        
        
        Revision r923:
        ha_innobase::store_lock(): When downgrading table locks, do not
        check thd->in_lock_tables but test if
        thd->lex->sql_command == SQLCOM_LOCK_TABLES
        instead.  Otherwise, stored functions will use table locks.  (Bug #18077)
        
        This patch is from Heikki.
      storage/innobase/include/dict0dict.h:
        Apply InnoDB snapshot ss923
        
        Revision r897:
        dict_index_get_if_in_cache(): Enclose in #ifdef UNIV_DEBUG.
        Replace the search loop with a call to dict_index_find_on_id_low().
      storage/innobase/include/mem0dbg.h:
        Apply InnoDB snapshot ss923
        
        Revision r901:
        Enclose some mem debug functions in #ifdef UNIV_DEBUG or #ifdef UNIV_MEM_DEBUG.
      storage/innobase/include/mtr0mtr.h:
        Apply InnoDB snapshot ss923
        
        Revision r866:
        mtr_print(), mtr_memo_contains(): Disable unless #ifdef UNIV_DEBUG.
      storage/innobase/include/mtr0mtr.ic:
        Apply InnoDB snapshot ss923
        
        Revision r866:
        mtr_print(), mtr_memo_contains(): Disable unless #ifdef UNIV_DEBUG.
      storage/innobase/include/sync0rw.h:
        Apply InnoDB snapshot ss923
        
        Revision r907:
        Send all SHOW ENGINE INNODB STATUS information to the client also when
        UNIV_SYNC_DEBUG is defined.
        
        rw_lock_list_print_info(): Add parameter "file".
        
        mutex_list_print_info(): Add parameter "file".  Make the function static.
      storage/innobase/include/sync0sync.h:
        Apply InnoDB snapshot ss923
        
        Revision r907:
        Send all SHOW ENGINE INNODB STATUS information to the client also when
        UNIV_SYNC_DEBUG is defined.
        
        rw_lock_list_print_info(): Add parameter "file".
        
        mutex_list_print_info(): Add parameter "file".  Make the function static.
      storage/innobase/include/univ.i:
        Apply InnoDB snapshot ss923
        
        Revision r894:
        univ.i: Indent some of the directives, and remove conditions about Windows
        in the "#else" branch of "#if building on Windows".
      storage/innobase/mem/mem0dbg.c:
        Apply InnoDB snapshot ss923
        
        Revision r901:
        Enclose some mem debug functions in #ifdef UNIV_DEBUG or #ifdef UNIV_MEM_DEBUG.
        
        
        Revision r902:
        mem0dbg.c: Enclose some more function definitions in #ifdef UNIV_MEM_DEBUG.
        The declarations were already enclosed in #ifdef UNIV_MEM_DEBUG.
      storage/innobase/mem/mem0pool.c:
        Apply InnoDB snapshot ss923
        
        Revision r896:
        mem0pool.c: Remove obsolete comments about the dictionary cache being
        managed with an LRU algorithm.
      storage/innobase/mtr/mtr0mtr.c:
        Apply InnoDB snapshot ss923
        
        Revision r866:
        mtr_print(), mtr_memo_contains(): Disable unless #ifdef UNIV_DEBUG.
      storage/innobase/row/row0purge.c:
        Apply InnoDB snapshot ss923
        
        Revision r869:
        row_purge_parse_undo_rec(): Correct a faulty condition.  Luckily, this
        bug would only surface if the InnoDB SQL interpreter were used for
        updating fixed-length columns.  Currently (as the UPD_NODE_NO_SIZE_CHANGE
        flag is never set), cmpl_info can only be 0 or UPD_NODE_NO_ORD_CHANGE.
        Luckily, UPD_NODE_NO_ORD_CHANGE is 1, and the condition was simplified
        to !cmpl_info.
      storage/innobase/sync/sync0rw.c:
        Apply InnoDB snapshot ss923
        
        Revision r907:
        Send all SHOW ENGINE INNODB STATUS information to the client also when
        UNIV_SYNC_DEBUG is defined.
        
        rw_lock_list_print_info(): Add parameter "file".
        
        mutex_list_print_info(): Add parameter "file".  Make the function static.
      storage/innobase/sync/sync0sync.c:
        Apply InnoDB snapshot ss923
        
        Revision r907:
        Send all SHOW ENGINE INNODB STATUS information to the client also when
        UNIV_SYNC_DEBUG is defined.
        
        rw_lock_list_print_info(): Add parameter "file".
        
        mutex_list_print_info(): Add parameter "file".  Make the function static.
      f6f91b9d
  2. 19 Oct, 2006 3 commits
    • unknown's avatar
      Merge example.com:/work/bug23379/my50-bug23379 · 6c4f74ed
      unknown authored
      into  example.com:/work/bug23379/my51-bug23379
      
      
      sql/sql_class.cc:
        Auto merged
      6c4f74ed
    • unknown's avatar
      Merge example.com:/work/bug23379/my41-bug23379 · 04c8b8d1
      unknown authored
      into  example.com:/work/bug23379/my50-bug23379
      
      
      sql/sql_class.cc:
        Auto merged
      04c8b8d1
    • unknown's avatar
      Fix for bug#23379 "wrong time value in SHOW PROCESSLIST" · ca817b49
      unknown authored
        
      The value taken to be shown in SHOW PROCESSLIST is not
      initialized when THD is created and will be random for
      unauthenticated connections.
        
      To the documentor: Random value, instead of NULL, was shown,
      in SHOW PROCESSLIST for still non-authenticated connections.
      
      
      sql/sql_class.cc:
        Initialize time_after_lock.
        It is used from SHOW PROCESSLIST's code. If not initialized
        random value is shown for connected but still unauthenticated
        clients in the column Time.
      ca817b49
  3. 18 Oct, 2006 28 commits
  4. 17 Oct, 2006 8 commits
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1-maint · c055efba
      unknown authored
      into  zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint
      
      
      mysql-test/r/ps.result:
        Auto merged
      c055efba
    • unknown's avatar
      Merge fixes. · dfa183b7
      unknown authored
      
      mysql-test/r/func_time.result:
        One update from errmsg.txt and removal of /two/ duplicate results.
      mysql-test/t/func_time.test:
        Removed duplicate test.
      dfa183b7
    • unknown's avatar
      Update ps and show_check results to account for new -master.opt settings. · 099d8741
      unknown authored
      
      mysql-test/r/ps.result:
        Update test results to account for new ps-master.opt settings
      mysql-test/r/show_check.result:
        Update test results to account for new show_check-master.opt settings
      099d8741
    • unknown's avatar
      Merge zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint · 665d1692
      unknown authored
      into  zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint_20061016
      
      
      sql/sql_parse.cc:
        Auto merged
      665d1692
    • unknown's avatar
      Merge zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint_20061016 · 98fd2991
      unknown authored
      into  zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint
      
      
      BitKeeper/deleted/.del-collapsed:
        auto-union
      BitKeeper/etc/collapsed:
        auto-union
      Makefile.am:
        Auto merged
      client/mysql.cc:
        Auto merged
      client/mysqldump.c:
        Auto merged
      client/mysqltest.c:
        Auto merged
      include/my_dbug.h:
        Auto merged
      mysql-test/lib/mtr_cases.pl:
        Auto merged
      mysql-test/lib/mtr_report.pl:
        Auto merged
      mysql-test/mysql-test-run.pl:
        Auto merged
      mysql-test/r/csv.result:
        Auto merged
      mysql-test/r/mysql.result:
        Auto merged
      mysql-test/r/view.result:
        Auto merged
      mysql-test/t/csv.test:
        Auto merged
      mysql-test/t/mysql.test:
        Auto merged
      netware/BUILD/compile-netware-END:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/handler.cc:
        Auto merged
      sql/item_timefunc.cc:
        Auto merged
      sql/sp.cc:
        Auto merged
      sql/sql_acl.cc:
        Auto merged
      sql/sql_db.cc:
        Auto merged
      sql/sql_parse.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      sql/sql_table.cc:
        Auto merged
      sql/sql_trigger.cc:
        Auto merged
      sql/sql_view.h:
        Auto merged
      sql-common/my_time.c:
        Auto merged
      sql/time.cc:
        Auto merged
      vio/viosocket.c:
        Auto merged
      vio/viossl.c:
        Auto merged
      mysql-test/include/mix1.inc:
        Manual merge.
      mysql-test/r/func_time.result:
        Manual merge.
      mysql-test/r/innodb_mysql.result:
        Manual merge.
      mysql-test/t/func_time.test:
        Manual merge.
      mysql-test/t/view.test:
        Manual merge.
      sql/sql_view.cc:
        Manual merge.
      98fd2991
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.1 · dd8a33c0
      unknown authored
      into  zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.1-maint
      
      
      BitKeeper/etc/collapsed:
        auto-union
      BitKeeper/etc/ignore:
        auto-union
      Makefile.am:
        Auto merged
      client/mysql.cc:
        Auto merged
      client/mysqldump.c:
        Auto merged
      client/mysqltest.c:
        Auto merged
      configure.in:
        Auto merged
      include/m_ctype.h:
        Auto merged
      include/my_global.h:
        Auto merged
      mysql-test/lib/mtr_process.pl:
        Auto merged
      mysql-test/mysql-test-run.pl:
        Auto merged
      mysql-test/r/binlog_row_mix_innodb_myisam.result:
        Auto merged
      mysql-test/r/csv.result:
        Auto merged
      mysql-test/r/ctype_utf8.result:
        Auto merged
      mysql-test/r/func_time.result:
        Auto merged
      mysql-test/r/mysql.result:
        Auto merged
      mysql-test/r/partition.result:
        Auto merged
      mysql-test/r/ps.result:
        Auto merged
      mysql-test/r/strict.result:
        Auto merged
      mysql-test/r/trigger.result:
        Auto merged
      mysql-test/r/warnings.result:
        Auto merged
      mysql-test/t/csv.test:
        Auto merged
      mysql-test/t/ctype_utf8.test:
        Auto merged
      mysql-test/t/func_time.test:
        Auto merged
      mysql-test/t/mysql.test:
        Auto merged
      mysql-test/t/partition.test:
        Auto merged
      mysql-test/t/ps.test:
        Auto merged
      mysql-test/t/trigger.test:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/filesort.cc:
        Auto merged
      sql/item.cc:
        Auto merged
      sql/item_func.cc:
        Auto merged
      sql/item_func.h:
        Auto merged
      sql/item_timefunc.cc:
        Auto merged
      sql/item_timefunc.h:
        Auto merged
      sql/log.cc:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/opt_range.cc:
        Auto merged
      sql/opt_range.h:
        Auto merged
      sql/set_var.cc:
        Auto merged
      sql/sql_acl.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      sql/sql_insert.cc:
        Auto merged
      sql/sql_lex.h:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      sql/sql_show.cc:
        Auto merged
      sql/sql_table.cc:
        Auto merged
      sql/sql_update.cc:
        Auto merged
      sql/sql_view.cc:
        Auto merged
      sql/sql_yacc.yy:
        Auto merged
      vio/viosocket.c:
        Auto merged
      dd8a33c0
    • unknown's avatar
      Fix previous bad patch for Bug#14262. · 48dfeb4d
      unknown authored
      Remove table engine qualification where it's unnecessary.
      
      
      mysql-test/r/view.result:
        Remove requirement for innodb where not needed.  (Running this test alone
        raised warnings that it was using myisam.)
      mysql-test/t/view.test:
        Remove requirement for innodb where not needed.  (Running this test alone
        raised warnings that it was using myisam.)
      sql/sql_parse.cc:
        Fix previous bad re-patch.
      sql/sql_view.cc:
        Fix previous bad re-patch.
      48dfeb4d
    • unknown's avatar
      Merge naruto.:C:/cpp/bug23010/my51-bug23010 · 30996224
      unknown authored
      into  naruto.:C:/cpp/mysql-5.1-new-maint
      
      
      30996224