1. 16 Jul, 2013 5 commits
  2. 15 Jul, 2013 1 commit
    • Sergey Petrunya's avatar
      MDEV-4536, MDEV-4042 · 716a49a1
      Sergey Petrunya authored
      - Make JOIN::cleanup(true) also work correctly when the query is KILLed
        after join optimization was started but before a query plan was produced
      716a49a1
  3. 11 Jul, 2013 2 commits
  4. 09 Jul, 2013 3 commits
    • Alexander Barkov's avatar
      Merge from 5.3 · c51ed128
      Alexander Barkov authored
      c51ed128
    • Alexander Barkov's avatar
      Merge from 5.2 · 8a732d5a
      Alexander Barkov authored
      modified:
        mysql-test/suite/plugins/r/fulltext_plugin.result
        mysql-test/suite/plugins/t/fulltext_plugin.test
        plugin/fulltext/plugin_example.c
        sql/sql_show.cc
      pending merges:
        Alexander Barkov 2013-07-09 [merge] Merge from 5.1
          Sergei Golubchik 2013-07-06 Bug #69682 - mysqld crashes after uninst...
          Sergei Golubchik 2013-05-24 MDEV-4575 MySQL client doesn't strip off...
      8a732d5a
    • Alexander Barkov's avatar
      Merge from 5.1 · 762d3cb8
      Alexander Barkov authored
      modified:
        mysql-test/suite/plugins/r/fulltext_plugin.result
        mysql-test/suite/plugins/t/fulltext_plugin.test
        plugin/fulltext/plugin_example.c
        sql/sql_show.cc
      pending merges:
        Sergei Golubchik 2013-07-06 Bug #69682 - mysqld crashes after uninstall ...
          Sergei Golubchik 2013-05-24 MDEV-4575 MySQL client doesn't strip off...
      762d3cb8
  5. 08 Jul, 2013 1 commit
    • Alexander Barkov's avatar
      Merging from 5.3 · 1f3ec980
      Alexander Barkov authored
      modified:
        include/my_time.h
        libmysql/libmysql.c
        mysql-test/r/adddate_454.result
        mysql-test/r/cast.result
        mysql-test/r/date_formats.result
        mysql-test/r/func_sapdb.result
        mysql-test/r/func_time.result
        mysql-test/r/mdev316.result
        mysql-test/r/parser.result
        mysql-test/r/partition_datatype.result
        mysql-test/r/partition_pruning.result
        mysql-test/r/type_date.result
        mysql-test/r/type_datetime.result
        mysql-test/suite/vcol/r/vcol_misc.result
        mysql-test/t/cast.test
        sql-common/my_time.c
        sql/field.cc
        sql/field_conv.cc
        sql/filesort.cc
        sql/item.cc
        sql/item.h
        sql/item_cmpfunc.cc
        sql/item_func.cc
        sql/item_strfunc.cc
        sql/item_timefunc.cc
        sql/sql_time.cc
      pending merges:
        Sergei Golubchik 2013-07-03 MDEV-4667 DATE('string') incompability betwe...
      1f3ec980
  6. 06 Jul, 2013 1 commit
  7. 05 Jul, 2013 3 commits
  8. 04 Jul, 2013 1 commit
  9. 03 Jul, 2013 1 commit
  10. 01 Jul, 2013 3 commits
  11. 28 Jun, 2013 4 commits
    • Alexander Barkov's avatar
      Merge · a924e900
      Alexander Barkov authored
      pending merges:
        Alexander Barkov 2013-06-28 A clean-up for MDEV-4634
      a924e900
    • Alexander Barkov's avatar
      A clean-up for MDEV-4634 · cfae3065
      Alexander Barkov authored
      modified:
        sql/time.cc
      cfae3065
    • Alexander Barkov's avatar
      Merge from 5.3 · f13236be
      Alexander Barkov authored
      modified:
        mysql-test/r/type_date.result
        mysql-test/r/type_datetime.result
        mysql-test/r/type_time.result
        mysql-test/t/type_date.test
        mysql-test/t/type_datetime.test
        mysql-test/t/type_time.test
        sql/item_func.cc
        sql/item_timefunc.cc
        sql/sql_time.cc
        sql/sql_time.h
      pending merges:
        Alexander Barkov 2013-06-28 MDEV-4634 Crash in CONVERT_TZ
      f13236be
    • Alexander Barkov's avatar
      MDEV-4634 Crash in CONVERT_TZ · 0e44faf2
      Alexander Barkov authored
      Item_func_min_max::get_date() did not check the
      returned value against the fuzzy_date flags, so
      it could return a bad value to the caller that
      expects a good date (e.h. CONVERT_TZ).
      
      
      modified:
        mysql-test/r/type_date.result
        mysql-test/r/type_datetime.result
        mysql-test/r/type_time.result
        mysql-test/t/type_date.test
        mysql-test/t/type_datetime.test
        mysql-test/t/type_time.test
        sql/item_func.cc
        sql/item_timefunc.cc
        sql/mysql_priv.h
        sql/time.cc
      0e44faf2
  12. 27 Jun, 2013 1 commit
  13. 22 Jun, 2013 1 commit
  14. 18 Jun, 2013 1 commit
    • Alexander Barkov's avatar
      Merging MDEV-4635 from 5.3. · 7cc77106
      Alexander Barkov authored
      Also, fixing a bug in STR_TO_DATE(). It erroneously returned
      error in strict mode for dates like '0000-01-01'
      (zero year, but non-zero month and day).
      
      According to the manual:
      - NO_ZERO_DATE disallows 0000-00-00 (all date parts are zeros)
      - NO_ZERO_IN_DATE disallows zero month (YYYY-00-DD) or day (YYYY-MM-00).
      
      0000-01-01 is a valid date, even in strict mode.
      
      
      modified:
        mysql-test/r/func_time.result
        mysql-test/r/strict.result
        mysql-test/t/func_time.test
        mysql-test/t/strict.test
        sql/item_timefunc.cc
        sql/sql_time.h
      pending merges:
        Alexander Barkov 2013-06-17 MDEV-4635 Crash in UNIX_TIMESTAMP(STR_TO_DAT...
      7cc77106
  15. 17 Jun, 2013 4 commits
  16. 16 Jun, 2013 1 commit
    • Vladislav Vaintroub's avatar
      MDEV-4576 : Aria storage engine's temporary files might not be deleted (Errcode : 13) · c61c1d7c
      Vladislav Vaintroub authored
      See also MySQL Bug #39750  and similar ones.
      
      Fix my_delete() on Windows, to safely remvoe files on Windows, including files  that are opened by another threads in the same process, antiviruses and  backup applications. If file to be deleted is  also  opened by another thread, the file is renamed to unique name prior to deletion - this makes it possible to create file with the same name right after deletion.
      With this patch my_delete_allow_opened() becomes obsolete and is replaced with my_delete().
      
      This patch is rework of the patch  http://lists.mysql.com/commits/59327  for MySQL bug#39750.
      c61c1d7c
  17. 15 Jun, 2013 1 commit
    • Vladislav Vaintroub's avatar
      MDEV-4601 : Allow MariaDB to be build without non-blocking client. · 4b058643
      Vladislav Vaintroub authored
      Non-blocking client currently can be build on Windows, GCC on i386 and x64, or any OS wth ucontext.h header. Prior to this patch, build failed if neither of these conditions is true.
      Fix to avoid compiler errors in these case - non-blocking API would not be useful on , but otherwise everything will work as before.
      4b058643
  18. 17 Jun, 2013 1 commit
  19. 15 Jun, 2013 1 commit
  20. 14 Jun, 2013 1 commit
  21. 13 Jun, 2013 3 commits