1. 04 Jul, 2011 2 commits
    • Alexey Botchkov's avatar
      fix for bug #801212 Assertion with ST_INTERSECTION on NULL values · 7f55ea12
      Alexey Botchkov authored
              The ::val_str() method has to return NULL if it calculated
              the null_value, not just set the related flag.
      
      per-file comments:
        mysql-test/r/gis-precise.result
      fix for bug #801212 Assertion with ST_INTERSECTION on NULL values
              test result updated.
        mysql-test/t/gis-precise.test
      fix for bug #801212 Assertion with ST_INTERSECTION on NULL values
              test case added.
        sql/item_geofunc.cc
      fix for bug #801212 Assertion with ST_INTERSECTION on NULL values
              return NULL from the val_str if we get the null_value.
      7f55ea12
    • Alexey Botchkov's avatar
      bug #801199 Infinite recursion in Gcalc_function::count_internal with ST_BUFFER over MULTIPOINT · 0e6c889c
      Alexey Botchkov authored
              Collections were treated mistakenly, so the counter for the final UNION operation
              received the wrong value.
              As a fix we implement Item_func_buffer::Transporter::start_collection() method,
              where we set the proper operation and the operand counter.
              start_poly() and start_line() were also modified to function correctly for the 
              polygon as a part of a collection.
      
      per-file comments:
        mysql-test/r/gis-precise.result
      bug #801199 Infinite recursion in Gcalc_function::count_internal with ST_BUFFER over MULTIPOINT
              test result updated.
      
        mysql-test/t/gis-precise.test
      bug #801199 Infinite recursion in Gcalc_function::count_internal with ST_BUFFER over MULTIPOINT
              test case added.
      
        sql/item_geofunc.cc
      bug #801199 Infinite recursion in Gcalc_function::count_internal with ST_BUFFER over MULTIPOINT
              start_collection() implemented.
      
        sql/item_geofunc.h
      bug #801199 Infinite recursion in Gcalc_function::count_internal with ST_BUFFER over MULTIPOINT
              Item_func_buffer::Transporter::start_collection() defined.
      0e6c889c
  2. 30 Jun, 2011 2 commits
    • Alexey Botchkov's avatar
      fix for bug #201189 ST_BUFFER asserts if radius = 0. · a9a6597d
      Alexey Botchkov authored
              Internal caclucations can't handle zero distance properly.
              As the ST_BUFFER(geom, 0) is in fact NOOP, we'll just return the
              'geom' as the result here.
      
      per-file comments:
        mysql-test/r/gis-precise.result
      fix for bug #201189 ST_BUFFER asserts if radius = 0.
              test result updated.
      
        mysql-test/t/gis-precise.test
      fix for bug #201189 ST_BUFFER asserts if radius = 0.
              test case added.
      
        sql/item_geofunc.cc
      fix for bug #201189 ST_BUFFER asserts if radius = 0.
              return the first argument as the result of the ST_BUFFER, if
              the distance is 0 there.
      a9a6597d
    • Alexey Botchkov's avatar
      fix for bug #801243 Assertion `(0)' failed in... · 4f49cdf8
      Alexey Botchkov authored
      fix for bug #801243 Assertion `(0)' failed in Gis_geometry_collection::init_from_opresult on ST_UNION 
              If the result contains a polygon with a hole, consequitive shapes weren't calculated
              properly, as the hole appeared as shape in the result, but actually it's a single shape
              with the surrounding polygon. It's more natural to use the size of the result as
              a border instead of the number of resulting shapes.
      
      per-file comments:
        mysql-test/r/gis-precise.result
      fix for bug #801243 Assertion `(0)' failed in Gis_geometry_collection::init_from_opresult on ST_UNION 
              test result updated.
        mysql-test/t/gis-precise.test
      fix for bug #801243 Assertion `(0)' failed in Gis_geometry_collection::init_from_opresult on ST_UNION 
              test case added.
        sql/spatial.cc
      fix for bug #801243 Assertion `(0)' failed in Gis_geometry_collection::init_from_opresult on ST_UNION 
              check the data lenght instead of number of shapes.
        sql/spatial.h
      fix for bug #801243 Assertion `(0)' failed in Gis_geometry_collection::init_from_opresult on ST_UNION 
              check the data lenght instead of number of shapes.
      
      4f49cdf8
  3. 19 Jun, 2011 1 commit
  4. 17 Jun, 2011 2 commits
  5. 16 Jun, 2011 1 commit
  6. 15 Jun, 2011 5 commits
  7. 14 Jun, 2011 2 commits
  8. 12 Jun, 2011 1 commit
  9. 14 Jun, 2011 1 commit
    • unknown's avatar
      Another attempt at fixing the rare random failures of rpl_corruption · 54fcd3b8
      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.
      54fcd3b8
  10. 13 Jun, 2011 1 commit
  11. 11 Jun, 2011 4 commits
  12. 10 Jun, 2011 6 commits
  13. 09 Jun, 2011 11 commits
    • Michael Widenius's avatar
      A bit better fix for tmp-table problem · 13f55aac
      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.
      13f55aac
    • Igor Babaev's avatar
      Fixed LP bug #794909. · ab411f8f
      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.
      ab411f8f
    • Michael Widenius's avatar
      9e3570ea
    • Michael Widenius's avatar
      Merge with bug fixes · 5831ddcf
      Michael Widenius authored
      5831ddcf
    • Michael Widenius's avatar
      Use dynamic row format when creating temporary tables without sumary fields. · 97e834e1
      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).
      97e834e1
    • Sergei Golubchik's avatar
      small optimization in Field_time_hires. · fdfeb4be
      Sergei Golubchik authored
      Fix Field_time_hires::reset()
      fdfeb4be
    • Sergei Golubchik's avatar
      bugfixes: · c3f665dc
      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
      c3f665dc
    • Michael Widenius's avatar
      Fixed problem that global status variables 'bytes_recieved' and... · 3600e6b8
      Michael Widenius authored
      Fixed problem that global status variables 'bytes_recieved' and 'binlog_bytes_written' where not correctly updated 
      3600e6b8
    • Michael Widenius's avatar
      Fixed compile failure when we don't use system zlib · 60bd2133
      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()
      60bd2133
    • Michael Widenius's avatar
      Fixed build failure on OpenSolaris · 163d7acc
      Michael Widenius authored
      strings/ctype-simple.c:
        Fixed some compiler warnings
      163d7acc
    • Igor Babaev's avatar
      Fixed LP bug #794038. · 7f345153
      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.
      7f345153
  14. 08 Jun, 2011 1 commit