1. 21 Jun, 2011 4 commits
    • Sergey Petrunya's avatar
      Make semi-joins work with outer joins part #1: · 1fbbabd0
      Sergey Petrunya authored
      - Make make_outerjoin_info() correctly process semi-join nests
      - Make make_join_select() attach conditions to the right places.
      1fbbabd0
    • unknown's avatar
      MWL#89 · 3e36fc69
      unknown authored
      Removed forgotten EXPLAIN EXTENDED from the test file.
      3e36fc69
    • unknown's avatar
      MWL#89 · 9eb6d502
      unknown authored
      Automerged with 5.3.
      9eb6d502
    • unknown's avatar
      MWL#89 · 9895a719
      unknown authored
      - Added regression test with queries over the WORLD database.
      - Discovered and fixed several bugs in the related cost calculation
        functionality both in the semijoin and non-semijon subquery code.
      - Added DBUG printing of the cost variables used to decide between
        IN-EXISTS and MATERIALIZATION.
      9895a719
  2. 17 Jun, 2011 2 commits
  3. 16 Jun, 2011 1 commit
  4. 15 Jun, 2011 5 commits
  5. 14 Jun, 2011 1 commit
  6. 12 Jun, 2011 1 commit
  7. 14 Jun, 2011 1 commit
    • unknown's avatar
      Another attempt at fixing the rare random failures of rpl_corruption · 69852bcb
      unknown authored
      The previous patch partially fixed things by waiting for the old dump thread
      on the master to exit before injecting the DBUG error. This prevents the error
      injection going to the wrong thread.
      
      However, there is still the problem that the old dump thread may never exit,
      causing the wait to time out. This happens if the dump thread manages to write
      all events down the socket before the socket is closed by the slave. The
      master dump thread only checks for slave gone when writing a new event, so if
      no new events are generated, old dump threads can hang around forever on the
      master after the slave disconnects.
      
      Fix by explicitly killing the old dump thread if it is still around.
      69852bcb
  8. 13 Jun, 2011 1 commit
  9. 11 Jun, 2011 4 commits
  10. 10 Jun, 2011 6 commits
  11. 09 Jun, 2011 11 commits
    • Michael Widenius's avatar
      A bit better fix for tmp-table problem · a49e4635
      Michael Widenius authored
      Fixed reference to not initialized memory detected by valgrind
      
      sql/sql_select.cc:
        A bit better fix for tmp-table problem:
        Use only dynamic_record format for group by and distinct.
      storage/maria/ma_create.c:
        DYNAMIC_RECORD format doesn't pack VARCHAR fields.
        This change fixes a non-fatal uninitialized memory copy.
      a49e4635
    • Igor Babaev's avatar
      Fixed LP bug #794909. · 77a29830
      Igor Babaev authored
      The function generate_derived_keys did not take into account the fact
      that the last element in the array of keyuses could be just a barrier
      element. In some cases it could lead to a crash of the server.
      
      Also fixed a couple of other bugs in generate_derived_keys: the inner 
      loop in the body of if this function did not change the cycle variables
      properly.
      77a29830
    • Michael Widenius's avatar
      8c9c5949
    • Michael Widenius's avatar
      Merge with bug fixes · 0e47021e
      Michael Widenius authored
      0e47021e
    • Michael Widenius's avatar
      Use dynamic row format when creating temporary tables without sumary fields. · cd8437ad
      Michael Widenius authored
      The reason for this is that BLOCK_RECORD format is not good when there is a lot of duplicated keys as it first writes the data (to get the row position) and
      then writes the key (and thus checks for duplicates).
      cd8437ad
    • Sergei Golubchik's avatar
      small optimization in Field_time_hires. · 263b0021
      Sergei Golubchik authored
      Fix Field_time_hires::reset()
      263b0021
    • Sergei Golubchik's avatar
      bugfixes: · aeb256fb
      Sergei Golubchik authored
        microsecond(TIME)
        alter table datetime<->datetime(6)
        max(TIME), mix(TIME) 
      
      mysql-test/t/func_if.test:
        fix the test case of avoid overflow
      sql/field.cc:
        don't use make_date() and make_time()
      sql/field.h:
        correct eq_def() for temporal fields
      sql/item.cc:
        move datetime caching from Item_cache_int
        to Item_cache_temporal
      sql/item.h:
        move datetime caching from Item_cache_int
        to Item_cache_temporal
      sql/item_func.cc:
        use existing helper methods, don't duplicate
      sql/item_sum.cc:
        argument cache must use argument's cmp_type, not result_type.
      sql/item_timefunc.cc:
        use existing methods, don't tuplicate.
        remove unused function.
        fix micorseconds() to support TIME argument
      sql/mysql_priv.h:
        dead code
      sql/time.cc:
        dead code
      aeb256fb
    • Michael Widenius's avatar
      Fixed problem that global status variables 'bytes_recieved' and... · 656bacd6
      Michael Widenius authored
      Fixed problem that global status variables 'bytes_recieved' and 'binlog_bytes_written' where not correctly updated 
      656bacd6
    • Michael Widenius's avatar
      Fixed compile failure when we don't use system zlib · 37bd3e31
      Michael Widenius authored
      Fixed crash when setting query_cache_type to 0.
      
      client/Makefile.am:
        Added zlib include (needed by checksum.c)
      sql/set_var.cc:
        Updated call to disable_query_cache()
      sql/sql_cache.cc:
        Don't give warning if we start mysqld with --query_cache_type=0 --query_cache-size=0
        Fixed crash when setting query_cache_type to 0 (we shouldn't call query_cache.disable_query_cache() when there is no current_thd)
      sql/sql_cache.h:
        Added THD to disable_query_cache()
      37bd3e31
    • Michael Widenius's avatar
      Fixed build failure on OpenSolaris · d59b3351
      Michael Widenius authored
      strings/ctype-simple.c:
        Fixed some compiler warnings
      d59b3351
    • Igor Babaev's avatar
      Fixed LP bug #794038. · 4cf4f785
      Igor Babaev authored
      INSERT/UPDATE/DELETE statement that used a temptable view v1 could lead to
      a crash if v1 was defined as a select from a mergeable view v2 that selected
      rows from a temptable view v3. 
       
      When INSERT/UPDATE/DELETE uses a view that is not updatable then field
      translation for the view should be created before the prepare phase.
      4cf4f785
  12. 08 Jun, 2011 2 commits
  13. 07 Jun, 2011 1 commit