1. 07 Dec, 2011 1 commit
  2. 06 Dec, 2011 4 commits
    • Igor Babaev's avatar
      Fixed LP bug #900469. · c64fda36
      Igor Babaev authored
      The execution plan cannot use sorting on the first table from the
      sequence of the joined tables if it plans to employ the block-based
      hash join algorithm.
      c64fda36
    • Igor Babaev's avatar
      Fixed LP bug #899509. · 42db50ca
      Igor Babaev authored
      The optimizer must ignore any possible hash join key when looking for the 
      query execution plan with join_cache_level set to 0.  
      42db50ca
    • Igor Babaev's avatar
      Merge · ae8e2c93
      Igor Babaev authored
      ae8e2c93
    • Igor Babaev's avatar
      Merge · ad57413c
      Igor Babaev authored
      ad57413c
  3. 05 Dec, 2011 3 commits
    • Sergey Petrunya's avatar
      Bug #899962: materialized subquery with join_cache_level=3 · f949009b
      Sergey Petrunya authored
      - Make create_tmp_table() set KEY_PART_INFO attributes for the keys it creates.
        This wasn't needed before but is needed now, when temp. tables that are 
        results of SJ-Materialization are being used for joins.
        This particular bug depended on HA_VAR_LENGTH_PART being set,
        but also added code to set HA_BLOB_PART and HA_NULL_PART when appropriate.
      f949009b
    • Igor Babaev's avatar
      Fixed LP bug #899777. · 1af3ac98
      Igor Babaev authored
      KEYUSE elements for a possible hash join key are not sorted by field
      numbers of the second table T of the hash join operation. Besides
      some of these KEYUSE elements cannot be used to build any key as their
      key expressions depend on the tables that are planned to be accessed
      after the table T. 
      The code before the patch did not take this into account and, as a result,
      execition of a query the employing block-based hash join algorithm could
      cause a crash or return a wrong result set. 
      1af3ac98
    • Sergey Petrunya's avatar
      05403f17
  4. 04 Dec, 2011 2 commits
    • Sergey Petrunya's avatar
      Make subquery Materialization, as well as semi-join Materialization be shown · c30a35c4
      Sergey Petrunya authored
      in EXPLAIN as select_type==MATERIALIZED. 
      
      Before, we had select_type==SUBQUERY and it was difficult to tell materialized
      subqueries from uncorrelated scalar-context subqueries.
      c30a35c4
    • Igor Babaev's avatar
      Fixed LP bug #899696. · fbb764a7
      Igor Babaev authored
      If has been decided that the first match strategy is to be used to join table T
      from a semi-join nest while no buffer can be employed to join this table
      then no join buffer can be used to join any table in the join sequence between
      the first one belonging to the semi-join nest and table T.
      
       
      fbb764a7
  5. 01 Dec, 2011 3 commits
  6. 30 Nov, 2011 2 commits
    • Igor Babaev's avatar
      Fixed LP bug #898073. · 388a8f33
      Igor Babaev authored
      The tables from the same semi-join or outer join nest cannot use
      join buffers if in the join sequence of the query execution plan
      they are separated by a table that is planned to be joined without
      usage of a join buffer.
      388a8f33
    • unknown's avatar
      Merge the fix of bug lp:825051 · d9eb5b83
      unknown authored
      d9eb5b83
  7. 29 Nov, 2011 3 commits
  8. 28 Nov, 2011 3 commits
    • Alexey Botchkov's avatar
      bug 857066 Wrong result with ST_DISJOINT when using an index · 1255082b
      Alexey Botchkov authored
              the ST_DISJOINT can't be properly optimized with the RTree key
              at the moment.
      
      per-file comments:
        storage/maria/ma_rt_index.c
      bug 857066 Wrong result with ST_DISJOINT when using an index
              disabled optimization for the DISJOINT case.
      1255082b
    • unknown's avatar
      Fix bugs lp:833777, lp:894397 · d37faa72
      unknown authored
      Analysis:
      lp:894397 was a consequence of a prior incorrect fix of lp:833777
      which didn't take into account that even when all tables are
      constant there may be correlated conditions, and the where clause
      is not equivalent to the constant conditions.
      
      Solution:
      When there are constant tables only, evaluate only the conditions
      that reference outer fields, because the constant conditions are
      already checked, and the where clause doesn't have other conditions
      than constant ones, and outer referencing ones. The fix for
      lp:894397 also fixes lp:833777.
      d37faa72
    • unknown's avatar
      Fixed LP BUG#747278 · 8dbf7ec7
      unknown authored
      The problem was that when we have single row subquery with no rows
      Item_cache(es) which represent result row was not null and being
      requested via element_index() returned random value.
      
      The fix is setting all Item_cache(es) in NULL before executing the
      query (reset() method) which guaranty NULL value of whole query
      or its elements requested in any way if no rows was found.
      
      set_null() method was added to Item_cache to guaranty correct NULL
      value in case of reseting the cache.
      8dbf7ec7
  9. 26 Nov, 2011 2 commits
  10. 25 Nov, 2011 8 commits
  11. 24 Nov, 2011 5 commits
    • unknown's avatar
    • unknown's avatar
      Fix bug lp:894326 · 70af9cae
      unknown authored
      The patch also fixes an unrelated compiler warning.
      
      Analysis:
      The temporary table created during SJ-materialization
      might be used for sorting for a group by operation. The
      sort buffers for this internal temporary table were not
      cleared by the execution code after each subquery
      re-execution. This resulted in a memory leak detected
      by valgrind.
      
      Solution:
      Cleanup the sort buffers for the semijon tables as well.
      
      
      sql/item_subselect.cc:
        - Fix a compiler warning and add logic to revert to table
          scan partial match when there are more rows in the materialized
          subquery than there can be bits in the NULL bitmap index used
          for partial matching.
      sql/opt_subselect.cc:
        - Fixed a memory leak detected by valgrind
      70af9cae
    • Igor Babaev's avatar
      9fd4abbc
    • unknown's avatar
      Fix for LP BUG#859375 and LP BUG#887458. · 1a14bdfc
      unknown authored
      Stop attempts to apply IN/ALL/ANY optimizations to so called "fake_select"
      (used for ordering and filtering results of union) in union subquery execution.
      1a14bdfc
    • Alexey Botchkov's avatar
      fixes to make compilers happy. · 955c4598
      Alexey Botchkov authored
      per-file comments:
        mysql-test/t/gis-precise.test
              number-to-string conversion differs on Windows.
              Have to tolerate this while GIS data is stored in doubles.
        sql/spatial.cc
              prev_x initialization added.
      955c4598
  12. 23 Nov, 2011 2 commits
    • unknown's avatar
      Fix bug lp:893486 · 5170e938
      unknown authored
      Analysis:
      The bug is a result of an incomplete fix for bug lp:869036.
      That fix didn't take into account that there may be a case
      when ther are no NULLs in the materialized subquery, however
      all columns without NULLs may not be grouped in the only
      non-null index. This is the case when the left subquery expression
      has nullable columns.
      
      Solution:
      The patch handles two missing sub-cases of the case when there are
      no value (non-null matches) for any outer expression, and there are
      both NULLs and non-NUll values in the outer reference.
      a) If the materialized subquery contains no NULLs there cannot be a
         partial match, because there are no NULLs in those columns where
         the outer reference has no NULLs.
      b) If the materialized subquery contains NULLs, but there exists a
         column, such that its corresponding outer expression has no NULL,
         and this column also has no NULL. Then there cannot be a partial
         match either.
      5170e938
    • Sergey Petrunya's avatar
      Semi-join optimizations code cleanup: · e8cd001b
      Sergey Petrunya authored
      - Break down POSITION/advance_sj_state() into four classes 
        representing potential semi-join strategies.
      
      - Treat all strategies uniformly (before, DuplicateWeedout 
        was special as it was the catch-all strategy. Now, we're 
        still relying on it to be the catch-all, but are able to 
        function,e.g. with firstmatch=on,duplicate_weedout=off.
      
      - Update test results (checked)
      e8cd001b
  13. 22 Nov, 2011 2 commits