1. 20 Mar, 2009 12 commits
  2. 19 Mar, 2009 1 commit
    • marko's avatar
      branches/zip: Merge revisions 4400:4481 from branches/5.1: · b0b24206
      marko authored
        ------------------------------------------------------------------------
        r4481 | marko | 2009-03-19 15:01:48 +0200 (Thu, 19 Mar 2009) | 6 lines
      
        branches/5.1: row_unlock_for_mysql(): Do not unlock records that were
        modified by the current transaction.  This bug was introduced or unmasked
        in r4400.
      
        rb://97 approved by Heikki Tuuri
        ------------------------------------------------------------------------
      b0b24206
  3. 18 Mar, 2009 3 commits
  4. 17 Mar, 2009 3 commits
  5. 16 Mar, 2009 3 commits
  6. 12 Mar, 2009 3 commits
    • marko's avatar
      branches/zip: Merge revisions 4359:4400 from branches/5.1: · 74013e36
      marko authored
        ------------------------------------------------------------------------
        r4399 | marko | 2009-03-12 09:38:05 +0200 (Thu, 12 Mar 2009) | 2 lines
      
        branches/5.1: row_sel_get_clust_rec_for_mysql(): Store the cursor position
        also for unlock_row().  (Bug #39320)
        ------------------------------------------------------------------------
        r4400 | marko | 2009-03-12 10:06:44 +0200 (Thu, 12 Mar 2009) | 5 lines
      
        branches/5.1: Fix a bug in multi-table semi-consistent reads.
        Remember the acquired record locks per table handle (row_prebuilt_t)
        rather than per transaction (trx_t), so that unlock_row should successfully
        unlock all non-matching rows in multi-table operations.
        This deficiency was found while investigating Bug #39320.
        ------------------------------------------------------------------------
      
      These were submitted as rb://94 and rb://96 and approved by Heikki Tuuri.
      74013e36
    • marko's avatar
      branches/zip: trx_sys_create_doublewrite_buf(): As the dummy change, · 64083dd3
      marko authored
      initialize FIL_PAGE_TYPE.  This will make it easier to write the debug
      assertions for ibbackup --apply-log.
      64083dd3
    • marko's avatar
      branches/zip: btr_store_big_rec_extern_fields(): Initialize FIL_PAGE_TYPE · 27f859ce
      marko authored
      in a separate redo log entry.  This will make ibbackup --apply-log
      debugging easier.
      27f859ce
  7. 09 Mar, 2009 1 commit
    • calvin's avatar
      branches/zip: remove compile flag MYSQL_SERVER for dynamic plugin · 63600738
      calvin authored
      The dynamic plugin on Windows used to be built with MYSQL_SERVER
      compile flag, while it is not the case for other platforms.
      r3797 assumed MYSQL_SERVER was not defined for dynamic plugin,
      which introduced the engine crash during dropping a database.
      63600738
  8. 05 Mar, 2009 7 commits
    • vasil's avatar
      branches/zip: · a295841e
      vasil authored
      Add ChangeLog entry for the bugfix in c4360.
      a295841e
    • vasil's avatar
      branches/zip: Merge revision 4359 from branches/5.1: · 45f0e3ee
      vasil authored
        ------------------------------------------------------------------------
        r4359 | vasil | 2009-03-05 21:42:01 +0200 (Thu, 05 Mar 2009) | 14 lines
        Changed paths:
           M /branches/5.1/handler/ha_innodb.cc
        
        branches/5.1:
        
        Merge a change from MySQL:
        
          ------------------------------------------------------------
          revno: 2747
          committer: Timothy Smith <timothy.smith@sun.com>
          branch nick: 51
          timestamp: Fri 2009-01-16 17:49:07 +0100
          message:
            Add another cast to ignore int/ulong difference in error types, silence warning on Win64
          modified:
            storage/innobase/handler/ha_innodb.cc
        
        ------------------------------------------------------------------------
      45f0e3ee
    • vasil's avatar
      branches/zip: Merge revision 4358 from branches/5.1 (resolving a conflict): · 86fab45a
      vasil authored
        ------------------------------------------------------------------------
        r4358 | vasil | 2009-03-05 21:21:10 +0200 (Thu, 05 Mar 2009) | 21 lines
        Changed paths:
           M /branches/5.1/handler/ha_innodb.cc
        
        branches/5.1:
        
        Merge a change from MySQL:
        
          ------------------------------------------------------------
          revno: 2728.19.1
          committer: Alfranio Correia <alfranio.correia@sun.com>
          branch nick: mysql-5.1-bugteam
          timestamp: Tue 2009-02-03 11:36:46 +0000
          message:
            BUG#42445 Warning messages in innobase/handler/ha_innodb.cc
                  
            There was a type casting problem in the storage/innobase/handler/ha_innodb.cc,
            (int ha_innobase::write_row(...)). Innobase uses has an internal error variable
            of type 'ulint' while mysql uses an 'int'. 
                  
            To fix the problem the function manipulates an error variable of
            type 'ulint' and only casts it into 'int' when needs to return the value.
          modified:
            storage/innobase/handler/ha_innodb.cc
        
        ------------------------------------------------------------------------
      86fab45a
    • vasil's avatar
      branches/zip: Merge revisions 4287:4357 from branches/5.1: · db2dc146
      vasil authored
        ------------------------------------------------------------------------
        r4325 | sunny | 2009-03-02 02:28:52 +0200 (Mon, 02 Mar 2009) | 10 lines
        Changed paths:
           M /branches/5.1/handler/ha_innodb.cc
           M /branches/5.1/mysql-test/innodb-autoinc.result
           M /branches/5.1/mysql-test/innodb-autoinc.test
        
        branches/5.1: Bug#43203: Overflow from auto incrementing causes server segv
        It was not a SIGSEGV but an assertion failure. The assertion was checking
        the invariant that *first_value passed in by MySQL doesn't contain a value
        that is greater than the max value for that type. The assertion has been
        changed to a check and if the value is greater than the max we report a
        generic AUTOINC failure.
        
        rb://93
        Approved by Heikki
        
        ------------------------------------------------------------------------
      db2dc146
    • vasil's avatar
      branches/zip: · 4ec11743
      vasil authored
      Implement a check whether pthread_t objects can be used by GCC atomic
      builtin functions. This check is implemented in plug.in and defines the
      macro HAVE_ATOMIC_PTHREAD_T. This macro is checked in univ.i and the
      relevant part of the code enabled (the one that uses GCC atomics against
      pthread_t objects).
      
      In addition to this, the same program that is compiled as part of the
      plug.in check is added in ut/ut0auxconf.c. In the InnoDB Plugin source
      archives that are shipped to the users, a generated Makefile.in is added.
      That Makefile.in will be modified to compile ut/ut0auxconf.c and define
      the macro HAVE_ATOMIC_PTHREAD_T if the compilation succeeds. I.e.
      Makefile.in will emulate the work that is done by plug.in. This is done in
      order to make the check happen and HAVE_ATOMIC_PTHREAD_T eventually
      defined without regenerating MySQL's ./configure from
      ./storage/innobase/plug.in. The point is not to ask users to install the
      autotools and regenerate ./configure.
      
      rb://95
      
      Approved by:	Marko
      4ec11743
    • vasil's avatar
      branches/zip: · 3f05aa36
      vasil authored
      Fix typo made in r4353.
      3f05aa36
    • vasil's avatar
      branches/zip: · a141b6fe
      vasil authored
      As suggested by Ken, print a message that says that the Google SMP patch
      (GCC atomics) is disabled if it is. Also extend the message when the patch
      is partially enabled to make it clear that it is partially enabled.
      a141b6fe
  9. 27 Feb, 2009 3 commits
    • vasil's avatar
      branches/zip: · 4283c77b
      vasil authored
      Add FreeBSD to the list of the operating systems that have
      sizeof(pthread_t) == sizeof(void*) (i.e. word size).
      
      On FreeBSD pthread_t is defined like:
      
        /usr/include/sys/_pthreadtypes.h:
      
        typedef struct  pthread                 *pthread_t;
      
      I did the following tests (per Inaam's recommendation):
      
      a) appropriate version of GCC is available on that platform (4.1.2 or
      higher for atomics to be available)
      
        On FreeBSD 6.x the default compiler is 3.4.6, on FreeBSD 7.x the default
        one is 4.2.1. One can always install the version of choice from the ports
        collection. If gcc 3.x is used then HAVE_GCC_ATOMIC_BUILTINS will not be
        defined and thus the change I am committing will make no difference.
      
      b) find out if sizeof(pthread_t) == sizeof(long)
      
        On 32 bit both are 4 bytes, on 64 bit both are 8 bytes.
      
      c) find out the compiler generated platform define (e.g.: __aix, __sunos__
      etc.)
      
        The macro is __FreeBSD__.
      
      d) patch univ.i with the appropriate platform define
      e) build the mysql
      f) ensure it is using atomic builtins (look at the err.log message at
      system startup. It should say we are using atomics for both mutexes and
      rw-locks)
      g) do sanity testing (keeping in view the smp changes)
      
        I ran the mysql-test suite. All tests pass.
      4283c77b
    • inaam's avatar
      branches/zip · 7c180f1d
      inaam authored
      This is a fix for issue#178. Instead of using UNIV_LINUX which is
      defined through CFLAGS we use compiler generated define __linux__
      that is effective for both .c and .cc files.
      7c180f1d
    • inaam's avatar
      branches/zip · 39997b56
      inaam authored
      This is to revert the changes made to the plug.in (r4251) as a fix for
      issue# 178. Changes to plug.in will not propogate to a plugin
      installation unless autotools are rerun which is unacceptable.
      
      A fix for issue# 178 will be committed in a separate commit.
      39997b56
  10. 26 Feb, 2009 2 commits
    • marko's avatar
      branches/zip: btr_check_blob_fil_page_type(): Do not report · 6f68a36f
      marko authored
      FIL_PAGE_TYPE mismatch even when purging a BLOB.
      Heavy users may have large data files created with MySQL 5.0 or earlier,
      and they don not want to have the error log flooded with such messages.
      
      This fixes Issue #182.
      6f68a36f
    • vasil's avatar
      branches/zip: · 119d0f4c
      vasil authored
      Apply any necessary patches to the mysql tree at the end of setup.sh
      This step was previously done manually (and sometimes forgotten).
      119d0f4c
  11. 25 Feb, 2009 2 commits
    • vasil's avatar
      branches/zip: · bc707482
      vasil authored
      Do not output the commands that restore the environment because they depend
      on the state of the environment before the test starts executing.
      bc707482
    • vasil's avatar
      branches/zip: · e8ef902d
      vasil authored
      White-space cleanup in the ChangeLog
      e8ef902d