1. 02 Jun, 2005 1 commit
    • unknown's avatar
      Additional tweak to fix for bug #10543, to prevent a change in · dd8e174f
      unknown authored
      behavior when extending fields that were fully part of a
      multi-part key.
      
      
      mysql-test/r/key.result:
        Update results
      mysql-test/t/key.test:
        Add test for behavior of extending fields in a multi-part key
        that were defined with a partial length the same as their
        field length.
      sql/sql_table.cc:
        Reset key_part_length when old field length was the same as the
        old key_part_length.
      dd8e174f
  2. 26 May, 2005 1 commit
    • unknown's avatar
      Fix partial keys when converting VARCHAR to TEXT. (Bug #10543) · f0329bfb
      unknown authored
      
      mysql-test/r/type_varchar.result:
        Update results
      mysql-test/t/type_varchar.test:
        Add new regression test
      sql/field.cc:
        Add Field::type_can_have_key_part() static method
      sql/field.h:
        Add Field::type_can_have_key_part() signature.
      sql/sql_table.cc:
        Only reset the length of a key part when changing from a
        field type that can't be used partially to a field that can,
        or vice versa, or when the part is smaller than the length
        of the field.
      f0329bfb
  3. 25 May, 2005 2 commits
    • unknown's avatar
      WL#2286 - Compile MySQL w/YASSL support · f0f9b595
      unknown authored
      Merge with latest yaSSL, fix compilation error for SSE2 processors.
      
      
      extra/yassl/include/yassl_int.hpp:
        Merge with latest yaSSL.
      extra/yassl/src/log.cpp:
        Merge with latest yaSSL.
      extra/yassl/src/yassl_int.cpp:
        Merge with latest yaSSL.
      extra/yassl/taocrypt/include/integer.hpp:
        Merge with latest yaSSL.
      extra/yassl/taocrypt/src/integer.cpp:
        Fix compilation error for SSE2 processors.
      f0f9b595
    • unknown's avatar
      srv0start.c: · d9d47c6a
      unknown authored
        innobase_shutdown_for_mysql(): Do very fast shutdown
        only if srv_fast_shutdown==2, not if srv_fast_shutdown!=0
        (Bug #9673)
      
      
      innobase/srv/srv0start.c:
        innobase_shutdown_for_mysql(): Do very fast shutdown
        only if srv_fast_shutdown==2, not if srv_fast_shutdown!=0
        (Bug #9673)
      d9d47c6a
  4. 24 May, 2005 15 commits
    • unknown's avatar
      Merge acurtis@bk-internal.mysql.com:/home/bk/mysql-5.0 · 9ae42419
      unknown authored
      into xiphis.org:/usr/home/antony/work2/p3-bug7241.6
      
      
      9ae42419
    • unknown's avatar
      Fix after merge · e35bd059
      unknown authored
      e35bd059
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · 424e4ee1
      unknown authored
      into mysql.com:/home/dlenev/src/mysql-5.0-bg5860
      
      
      424e4ee1
    • unknown's avatar
      Merge svojtovich@bk-internal.mysql.com:/home/bk/mysql-5.0 · 3c50d954
      unknown authored
      into mysql.com:/home/svoj/devel/mysql/yassl-mysql-5.0
      
      
      3c50d954
    • unknown's avatar
      Upgrade yaSSL to 0.9.9. · 1ae7e564
      unknown authored
      1ae7e564
    • unknown's avatar
      Manual merge of patch fixing several trigger related bugs with main tree. · 896786ea
      unknown authored
      
      sql/item.cc:
        Auto merged
      sql/item.h:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/sql_base.cc:
        Auto merged
      sql/sql_delete.cc:
        Auto merged
      sql/sql_insert.cc:
        Manual merge
      sql/sql_update.cc:
        Manual merge
      896786ea
    • unknown's avatar
      Fix for bugs: · 1fa7c69d
      unknown authored
       #5860 "Multi-table UPDATE does not activate update triggers"
       #6812 "Triggers are not activated for INSERT ... SELECT"
       #8755 "Trigger is not activated by LOAD DATA".
      This patch also implements proper handling of triggers for special forms
      of insert like REPLACE or INSERT ... ON DUPLICATE KEY UPDATE. 
      Also now we don't call after trigger in case when we have failed to
      inserted/update or delete row. Trigger failure should stop statement
      execution.
      
      I have not properly tested handling of errors which happen inside of
      triggers in this patch, since it is simplier to do this once we will be
      able to access tables from triggers.
      
      
      mysql-test/r/trigger.result:
        Added tests for triggers behavior for various non-standard forms of
        INSERT such as REPLACE and INSERT ... ON DUPLICATE KEY UPDATE.
        Also added tests for bugs #5860 "Multi-table UPDATE does not activate
        update triggers", #6812 "Triggers are not activated for INSERT ... SELECT"
        and #8755 "Trigger is not activated by LOAD DATA".
      mysql-test/t/trigger.test:
        Added tests for triggers behavior for various non-standard forms of
        INSERT such as REPLACE and INSERT ... ON DUPLICATE KEY UPDATE.
        Also added tests for bugs #5860 "Multi-table UPDATE does not activate
        update triggers", #6812 "Triggers are not activated for INSERT ... SELECT"
        and #8755 "Trigger is not activated by LOAD DATA".
      sql/item.cc:
        Since it turned out that at trigger loading time we can't say in which
        buffer TABLE::record[0] or record[1] old version of row will be stored
        we have to change our approach to binding of Item_trigger_field to
        Field instances.
        Now after trigger parsing (in Item_trigger_field::setup_table()) we only
        find index of proper Field in the TABLE::field array. Then before trigger
        is invoked we set Table_triggers_list::old_field/new_field so they point
        to arrays holding Field instances bound to buffers with proper row
        versions. And as last step in Item_trigger_field::fix_fields() we get
        pointer to Field from those arrays using saved field index.
        
        Item_trigger_field::setup_field()/fix_fields() were changed to implement
        this approach.
      sql/item.h:
        Since it turned out that at trigger loading time we can't say in which
        buffer TABLE::record[0] or record[1] old version of row will be stored
        we have to change our approach to binding of Item_trigger_field to
        Field instances.
        Now after trigger parsing (in Item_trigger_field::setup_table()) we only
        find index of proper Field in the TABLE::field array. Then before trigger
        is invoked we set Table_triggers_list::old_field/new_field so they point
        to arrays holding Field instances bound to buffers with proper row
        versions. And as last step in Item_trigger_field::fix_fields() we get
        pointer to Field from those arrays using saved field index.
        
        Item_trigger_field:
        - Added field_idx member to store index of Field object corresponding to
          this Item in TABLE::field array.
        - Added triggers member to be able to access to parent Table_trigger_list
          object from fix_fields() method.
        - setup_field() no longer needs to know for which type of event this
          trigger is, since it does not make decision Field for which buffer
          (record[0] or record[1] is appropriate for this Item_trigger_field)
      sql/mysql_priv.h:
        Added fill_record_n_invoke_before_triggers() methods. They are simple
        wrappers around fill_record() which invoke proper before trigger right
        after filling record with values.
      sql/sql_base.cc:
        Added fill_record_n_invoke_before_triggers() methods. They are simple
        wrappers around fill_record() which invoke proper before trigger right
        after filling record with values.
      sql/sql_delete.cc:
        mysql_delete():
          Now we stop statement execution if one of triggers failed, we also
          don't execute after delete trigger if we failed to delete row from
          the table (We also pass information about which buffer contains old
          version of row to process_triggers()).
        multi_delete::send_data()/do_deletes():
          Now we also invoke triggers in case of multi-delete.
      sql/sql_insert.cc:
        mysql_insert():
          Moved invocation of before triggers to fill_record_n_invoke_before_triggers()
          method. After triggers are now executed as part of write_record().
          (as nice side effect now we also stop statement execution if one of
          triggers fail).
        write_record():
          Invoke after insert trigger after performing insert. Also invoke proper
          triggers if insert is converted to update or conflicting row is deleted.
          Cleaned up error handling a bit - no sense to report error via
          handler::print_error if it was not generated by handler method and
          was reported before.
          Also now we will execute after trigger only if we really have written
          row to the table. 
        select_insert::send_data()/store_values():
          We should also execute INSERT triggers for INSERT ... SELECT statement.
      sql/sql_load.cc:
        read_fixed_length()/read_sep_field():
          We should execute INSERT triggers when processing LOAD DATA statement.
          Small cleanup in auto-increment related code. Also moved check for
          thd->killed which is used to abort LOAD DATA in case of problems
          in 'traditional' mode to better place..
      sql/sql_trigger.cc:
        Since it turned out that at trigger loading time we can't say in which
        buffer TABLE::record[0] or record[1] old version of row will be stored
        we have to change our approach to binding of Item_trigger_field to
        Field instances.
        Now after trigger parsing (in Item_trigger_field::setup_table()) we only
        find index of proper Field in the TABLE::field array. Then before trigger
        is invoked we set Table_triggers_list::old_field/new_field so they point
        to arrays holding Field instances bound to buffers with proper row
        versions. And as last step in Item_trigger_field::fix_fields() we get
        pointer to Field from those arrays using saved field index.
        
        Table_triggers_list methods were changed to implement this approach
        (see also comments for sql_trigger.h).
      sql/sql_trigger.h:
        Since it turned out that at trigger loading time we can't say in which
        buffer TABLE::record[0] or record[1] old version of row will be stored
        we have to change our approach to binding of Item_trigger_field to
        Field instances.
        Now after trigger parsing (in Item_trigger_field::setup_table()) we only
        find index of proper Field in the TABLE::field array. Then before trigger
        is invoked we set Table_triggers_list::old_field/new_field so they point
        to arrays holding Field instances bound to buffers with proper row
        versions. And as last step in Item_trigger_field::fix_fields() we get
        pointer to Field from those arrays using saved field index.
        
        Changed Table_triggers_list to implement this new approach:
        - Added record1_field member to store array of Field objects bound
          to TABLE::record[1] buffer (instead of existing old_field member)
        - Added new_field member and changed meaning of old_field member.
          During trigger execution they should point to arrays of Field objects
          bound to buffers holding new and old versions of row respectively.
        - Added 'table' member to be able to get access to TABLE instance
          (for which this trigger list object was created) from process_triggers()
          method.
        - Now process_triggers() method sets old_field and new_field members
          properly before executing triggers body (basing on new 
          old_row_is_record1 parameter value).
        - Renamed prepare_old_row_accessors_method() to prepare_record1_accessors()
        
        Also added has_before_update_triggers() method which allows to check
        whenever any before update triggers exist for table.
      sql/sql_update.cc:
        mysql_update():
          Now we invoke before triggers in fill_record_n_invoke_before_triggers()
          method. Also now we abort statement execution when one of triggers fail.
        safe_update_on_fly():
          When we are trying to understand if we can update first table in multi
          update on the fly we should take into account that BEFORE UPDATE
          trigger can change field values.
        multi_update::send_data()/do_updates()
          We should execute proper triggers when doing multi-update
          (in both cases when we do it on the fly and using temporary tables).
      1fa7c69d
    • unknown's avatar
      Merge · 879d932b
      unknown authored
      
      mysql-test/r/lock.result:
        Auto merged
      mysql-test/r/rpl_log.result:
        Auto merged
      mysql-test/t/lock.test:
        Auto merged
      mysql-test/r/rpl_rotate_logs.result:
        SCCS merged
      sql/sql_parse.cc:
        SCCS merged
      sql/sql_repl.cc:
        SCCS merged
      879d932b
    • unknown's avatar
      Merge acurtis@bk-internal.mysql.com:/home/bk/mysql-4.1 · 3a23b675
      unknown authored
      into xiphis.org:/usr/home/antony/work2/p3-bug7241.5
      
      
      3a23b675
    • unknown's avatar
      Add comments · 1a8f64d7
      unknown authored
      1a8f64d7
    • unknown's avatar
      8ddb0ddc
    • unknown's avatar
      Bug#7241 - Invalid response when DELETE .. USING and LOCK TABLES used. · efc7b884
      unknown authored
        Only acquire necessary write lock for multi-delete
      
      
      mysql-test/r/lock.result:
        Test for Bug#7241
      mysql-test/t/lock.test:
        Test for Bug#7241
      sql/sql_parse.cc:
        Bug#7241
          Don't acquire write lock on all tables.
          Make sure to set lock_type on real table_list
      efc7b884
    • unknown's avatar
      Merge gluh@gluh:/home/gluh/release/mysql-5.0-build · d0afc349
      unknown authored
      into mysql.com:/home/gluh/MySQL/Merge/mysql-5.0
      
      
      d0afc349
    • unknown's avatar
      f9433acc
    • unknown's avatar
      Merge pmartin@bk-internal.mysql.com:/home/bk/mysql-5.0 · ab1ba134
      unknown authored
      into mysql.com:/home/pem/work/mysql-5.0
      
      
      ab1ba134
  5. 23 May, 2005 21 commits
    • unknown's avatar
    • unknown's avatar
      Merge bk-internal.mysql.com:/data0/bk/mysql-4.1 · 0e4afc24
      unknown authored
      into bk-internal.mysql.com:/data0/bk/mysql-5.0
      
      
      BitKeeper/etc/gone:
        auto-union
      BitKeeper/etc/logging_ok:
        auto-union
      mysql-test/r/lowercase_table.result:
        Auto merged
      mysql-test/t/lowercase_table.test:
        Auto merged
      mysys/my_open.c:
        Auto merged
      0e4afc24
    • unknown's avatar
      marking the file gone again to hopefully get the tree on its feet · b6c1f230
      unknown authored
      
      BitKeeper/etc/logging_ok:
        Logging to logging@openlogging.org accepted
      b6c1f230
    • unknown's avatar
      Fixed on BUG#6048: Stored procedure causes operating system reboot · 9c79a9d6
      unknown authored
        Memory leak in locally evalutated expressions during SP execution fixed by
        reusing allocated item slots when possible.
        Note: No test case added, since the test is a stress test that tries to make
        the machine to run out of memory.
        Second attempt, now tested with debug build, valgrind build, max (optimized)
        build, with and without --debug, --vagrind and --ps-protocol.
        Errors in trigger and view test with --debug in debug build where present
        before this patch, and likewise for valgrind warnings for view test in
        valgrind build with --ps-protocol.
      
      
      sql/item.cc:
        Init rsize in Item (for SP item reusal).
      sql/item.h:
        Addes special new operator for reuse of Items, for SP internal use only.
      sql/sp_head.cc:
        Reuse items assigned internally in SPs when possible.
      sql/sp_rcontext.cc:
        Reuse items assigned internally in SPs when possible.
        Moved the local variable assignment here (from sp_head) to avoid
        duplicated code.
      sql/sp_rcontext.h:
        New arg to sp_rcontext::set_item_eval() (and some coding style).
      sql/sql_class.cc:
        Adjusted call to new set_item_eval().
      9c79a9d6
    • unknown's avatar
      BUG# 9148 Denial of service · 97bde75e
      unknown authored
      fixups of test case and comment formatting
      
      
      BitKeeper/deleted/.del-reserved_win_names-master.opt~e56da049a7ce9a5b:
        ***MISSING TEXT***
      mysql-test/r/lowercase_table.result:
        added my test for bug #9148 to this test case
      mysql-test/t/lowercase_table.test:
        added my test for bug #9148 to this test case
      mysys/my_fopen.c:
        reformatted comments
      mysys/my_open.c:
        reformatted comments
      97bde75e
    • unknown's avatar
      mysqld.dsp: · 87f3b9f4
      unknown authored
        Added BLACKHOLE and FEDERATED storage engines for max builds
        Some preparations for including yaSSL
      ha_federated.cc:
        Use local seach path for "mysql_priv.h"
      
      
      sql/ha_federated.cc:
        Use local seach path for "mysql_priv.h"
      VC++Files/sql/mysqld.dsp:
        Added BLACKHOLE and FEDERATED storage engines for max builds
        Some preparations for including yaSSL
      87f3b9f4
    • unknown's avatar
    • unknown's avatar
      A comment for view_prepare_mode. · ad9eba22
      unknown authored
      
      sql/sql_lex.h:
        A comment.
      ad9eba22
    • unknown's avatar
      Merge bk-internal.mysql.com:/home/bk/mysql-5.0 · cb46f9c5
      unknown authored
      into neptunus.(none):/home/msvensson/mysql/mysql-5.0-tmp
      
      
      include/my_global.h:
        Auto merged
      ndb/src/cw/cpcd/Process.cpp:
        Auto merged
      strings/my_vsnprintf.c:
        Auto merged
      cb46f9c5
    • unknown's avatar
      Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-5.0 · 7d185f5d
      unknown authored
      into mdk10.(none):/home/reggie/bk/mysql-5.0
      
      
      7d185f5d
    • unknown's avatar
      merged changes from 4.1 · b096c34d
      unknown authored
      
      include/my_global.h:
        Auto merged
      ndb/src/cw/cpcd/Process.cpp:
        Auto merged
      ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp:
        Auto merged
      strings/my_vsnprintf.c:
        Auto merged
      b096c34d
    • unknown's avatar
      BUG#10687 - Merge engine fails under Windows · 67c5514b
      unknown authored
      This final cset is to fix a syntax problem in ha_myisammrg.cc where a / was left out of a format string.
      It also adds a check in has_path to avoid a possible redundant comparison.
      
      ha_myisammrg.cc:
        Replaced missing / in format string
      my_getwd.c:
        Added test to see if FN_LIBCHAR != '/' before doing comparison to avoid redundant comparison
      
      
      mysys/my_getwd.c:
        Added test to see if FN_LIBCHAR != '/' before doing comparison to avoid redundant comparison
      sql/ha_myisammrg.cc:
        Replaced missing / in format string
      67c5514b
    • unknown's avatar
      Merge rburnett@bk-internal.mysql.com:/home/bk/mysql-4.1 · 1b2a2c86
      unknown authored
      into mdk10.(none):/home/reggie/bk/mysql-4.1
      
      
      1b2a2c86
    • unknown's avatar
      BUG# 10687: Merge engine fails under Windows · 36b3f0a0
      unknown authored
      This cset is to roll out the cset applied earlier from Ingo.
      This bug has been fixed with a different cset.
      
      
      
      sql/ha_myisammrg.cc:
        removed the patch applied earlier
      strings/my_vsnprintf.c:
        removed the patch applied earlier.  The patch was to add %c ability.  
        Monty has already done this.
      36b3f0a0
    • unknown's avatar
      Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0.6-build · 3e2417ed
      unknown authored
      into neptunus.(none):/home/msvensson/mysql/mysql-5.0-tmp
      
      
      VC++Files/mysys/mysys.dsp:
        Auto merged
      include/my_global.h:
        Auto merged
      myisam/rt_split.c:
        Auto merged
      sql/field_conv.cc:
        Auto merged
      sql/sql_delete.cc:
        Auto merged
      sql/sql_select.cc:
        Auto merged
      strings/my_vsnprintf.c:
        Auto merged
      3e2417ed
    • unknown's avatar
      Build fixes for icc, compile _without_ "-no-gnu" · 3ca4caef
      unknown authored
      
      include/my_global.h:
        icc does not define __ICC when emulating gcc. Use __INTEL_COMPILER to check for icc.
      ndb/src/cw/cpcd/Process.cpp:
        Remove rlimit64
      ndb/src/kernel/blocks/ndbfs/AsyncFile.cpp:
        Remove dirent64
      3ca4caef
    • unknown's avatar
      BUG# 10687: MERGE Engine fails on Windows · 6b964f0f
      unknown authored
      This is a replacement for the original patch given by Ingo.  This one comes
      from Monty.
      The problem is that merge files now use unix style pathnames on all 
      platforms.  The merge file open code was not properly converting those
      pathnames back to non-unix when necessary.
      
      
      myisammrg/myrg_open.c:
        use fn_format to convert pathnames if the files in the merge file have a pathname
      mysys/my_getwd.c:
        add a test for '/' in the code that determines if a string inlucdes a pathname
      6b964f0f
    • unknown's avatar
      Removing mysqlshutdown and mysqlwatch from the Windows packages, removing their sources. · 7ff2a5a5
      unknown authored
      They were both undocumented and not much useful. Removal has been agreed with Mark, Miguel and MikeZ.
      Removing winmysqladmin from the source (it was not included anymore in no Windows package). I'll do a test Windows noinstall.zip build before push.
      MikeZ just removed mysqlshutdown and mysqlwatch from the installer scripts.
      
      
      BitKeeper/deleted/.del-myshutdown.dsp~a8eee34a3d3ab679:
        Delete: VC++Files/mysqlshutdown/myshutdown.dsp
      BitKeeper/deleted/.del-myshutdown_ia64.dsp~dd2ad23d744ba1ba:
        Delete: VC++Files/mysqlshutdown/myshutdown_ia64.dsp
      BitKeeper/deleted/.del-mysql.ico~d4c55da4e911ced7:
        Delete: VC++Files/mysqlshutdown/mysql.ico
      BitKeeper/deleted/.del-mysqlshutdown.c~35d5feec4507d810:
        Delete: VC++Files/mysqlshutdown/mysqlshutdown.c
      BitKeeper/deleted/.del-mysqlshutdown.dsp~27db1e088d39987c:
        Delete: VC++Files/mysqlshutdown/mysqlshutdown.dsp
      BitKeeper/deleted/.del-mysqlshutdown.rc~454359c66381843c:
        Delete: VC++Files/mysqlshutdown/mysqlshutdown.rc
      BitKeeper/deleted/.del-mysqlshutdown_ia64.dsp~53fe7127af678bc:
        Delete: VC++Files/mysqlshutdown/mysqlshutdown_ia64.dsp
      BitKeeper/deleted/.del-mysqlwatch.c~de504821ede1cb8:
        Delete: VC++Files/mysqlwatch/mysqlwatch.c
      BitKeeper/deleted/.del-mysqlwatch.dsp~4699ddfb6ed23a6d:
        Delete: VC++Files/mysqlwatch/mysqlwatch.dsp
      BitKeeper/deleted/.del-mysqlwatch_ia64.dsp~1a11ce58f66a493:
        Delete: VC++Files/mysqlwatch/mysqlwatch_ia64.dsp
      BitKeeper/deleted/.del-db.cpp~6bbc3687ff8a2913:
        Delete: VC++Files/winmysqladmin/db.cpp
      BitKeeper/deleted/.del-db.h~e38deaf45dffa24d:
        Delete: VC++Files/winmysqladmin/db.h
      BitKeeper/deleted/.del-initsetup.cpp~b988f9ab7dbe4e92:
        Delete: VC++Files/winmysqladmin/initsetup.cpp
      BitKeeper/deleted/.del-initsetup.h~bc2a39769765e1a5:
        Delete: VC++Files/winmysqladmin/initsetup.h
      BitKeeper/deleted/.del-main.cpp~f822deb513ce0250:
        Delete: VC++Files/winmysqladmin/main.cpp
      BitKeeper/deleted/.del-Goahead.ico~805e753b7f13c6b7:
        Delete: VC++Files/winmysqladmin/images/Goahead.ico
      BitKeeper/deleted/.del-main.h~d17e73cf0b0cbf8:
        Delete: VC++Files/winmysqladmin/main.h
      BitKeeper/deleted/.del-mysql.h~a538c356e526804b:
        Delete: VC++Files/winmysqladmin/mysql.h
      BitKeeper/deleted/.del-mysql_com.h~8828acc269ca5036:
        Delete: VC++Files/winmysqladmin/mysql_com.h
      BitKeeper/deleted/.del-mysql_version.h~674dd1127ee25880:
        Delete: VC++Files/winmysqladmin/mysql_version.h
      BitKeeper/deleted/.del-winmysqladmin.cpp~bfac61f49813a983:
        Delete: VC++Files/winmysqladmin/winmysqladmin.cpp
      BitKeeper/deleted/.del-HELP.ICO~6b91d6eff4a7b11e:
        Delete: VC++Files/winmysqladmin/images/HELP.ICO
      BitKeeper/deleted/.del-INFO.ICO~b1eb08e87e0c1c3e:
        Delete: VC++Files/winmysqladmin/images/INFO.ICO
      BitKeeper/deleted/.del-Info.bmp~9c3c5afea29fa9b7:
        Delete: VC++Files/winmysqladmin/images/Info.bmp
      BitKeeper/deleted/.del-MYINI.ICO~91c77cc71d665f4:
        Delete: VC++Files/winmysqladmin/images/MYINI.ICO
      BitKeeper/deleted/.del-Myini.bmp~6cea36edbb94df3a:
        Delete: VC++Files/winmysqladmin/images/Myini.bmp
      BitKeeper/deleted/.del-Noentry.ico~6791fac163575069:
        Delete: VC++Files/winmysqladmin/images/Noentry.ico
      BitKeeper/deleted/.del-SETUP.BMP~43bd1e614fc7e5d5:
        Delete: VC++Files/winmysqladmin/images/SETUP.BMP
      BitKeeper/deleted/.del-Setup 16.bmp~9a9bf24a5dd952f3:
        Delete: VC++Files/winmysqladmin/images/Setup 16.bmp
      BitKeeper/deleted/.del-Table.ico~d64bf78e407b5e50:
        Delete: VC++Files/winmysqladmin/images/Table.ico
      BitKeeper/deleted/.del-Working.ico~f5cf304a7b6e592c:
        Delete: VC++Files/winmysqladmin/images/Working.ico
      BitKeeper/deleted/.del-database.ico~df8562312d9d9ed8:
        Delete: VC++Files/winmysqladmin/images/database.ico
      BitKeeper/deleted/.del-find.ico~44644ca5bab7901e:
        Delete: VC++Files/winmysqladmin/images/find.ico
      BitKeeper/deleted/.del-green.ico~88749a9a4ff83d25:
        Delete: VC++Files/winmysqladmin/images/green.ico
      BitKeeper/deleted/.del-help.bmp~bb6ac08cf7ab60d7:
        Delete: VC++Files/winmysqladmin/images/help.bmp
      BitKeeper/deleted/.del-initsetup.cpp~6704e992d966647f:
        Delete: VC++Files/winmysqladmin/images/initsetup.cpp
      BitKeeper/deleted/.del-killdb.ico~1043773bac9da67c:
        Delete: VC++Files/winmysqladmin/images/killdb.ico
      BitKeeper/deleted/.del-logo.ico~f00b08cd64695232:
        Delete: VC++Files/winmysqladmin/images/logo.ico
      BitKeeper/deleted/.del-multitrg.ico~52f787d7d9509533:
        Delete: VC++Files/winmysqladmin/images/multitrg.ico
      BitKeeper/deleted/.del-mysql-07.bmp~c157a2c3573b5c27:
        Delete: VC++Files/winmysqladmin/images/mysql-07.bmp
      BitKeeper/deleted/.del-mysql-17.bmp~99b3c90f96a9964b:
        Delete: VC++Files/winmysqladmin/images/mysql-17.bmp
      BitKeeper/deleted/.del-mysql.BMP~b58fe4f0c416291:
        Delete: VC++Files/winmysqladmin/images/mysql.BMP
      BitKeeper/deleted/.del-red.ico~179f5587e5a706c9:
        Delete: VC++Files/winmysqladmin/images/red.ico
      BitKeeper/deleted/.del-red22.BMP~bc47efefee4a5a86:
        Delete: VC++Files/winmysqladmin/images/red22.BMP
      BitKeeper/deleted/.del-see.bmp~c6863c3564387841:
        Delete: VC++Files/winmysqladmin/images/see.bmp
      VC++Files/mysql.dsw:
        removing mysqlshutdown and mysqlwatch
      VC++Files/mysql_ia64.dsw:
        removing mysqlshutdown and mysqlwatch
      7ff2a5a5
    • unknown's avatar
    • unknown's avatar
      Build fix · d35e537a
      unknown authored
      
      include/my_global.h:
        Look for __INTEL_COMPILER to detect icc
      d35e537a
    • unknown's avatar
      Build fix · c1248c42
      unknown authored
      
      ndb/src/cw/cpcd/Process.cpp:
        Remove ifdef for icc
        Shouldn't need to define rlimit64
      c1248c42