1. 13 Sep, 2013 1 commit
  2. 12 Sep, 2013 1 commit
  3. 11 Sep, 2013 2 commits
  4. 04 Sep, 2013 1 commit
    • Sergey Vojtovich's avatar
      Merge Spider updates. Fixes · edc1e919
      Sergey Vojtovich authored
      MDEV4732 - Server crashes on attempt to create a SPIDER table with a
                 wrong version of mysql.spider_tables
      MDEV4733 - Server crashes on attempt to change engine on a SPIDER table
      edc1e919
  5. 03 Sep, 2013 1 commit
  6. 30 Aug, 2013 1 commit
  7. 24 Aug, 2013 11 commits
  8. 23 Aug, 2013 1 commit
  9. 22 Aug, 2013 2 commits
  10. 21 Aug, 2013 1 commit
  11. 16 Aug, 2013 1 commit
  12. 15 Aug, 2013 6 commits
  13. 14 Aug, 2013 4 commits
    • Sergei Golubchik's avatar
      raise a version · 51e28066
      Sergei Golubchik authored
      51e28066
    • Olivier Bertrand's avatar
      - Change the Blanks parameter from true to false in catalog getting · 0993d4b4
      Olivier Bertrand authored
        information function. This solve the problem of uninitialised zone
        that was detected by valgrind.
      
      modified:
        storage/connect/myconn.cpp
        storage/connect/odbconn.cpp
        storage/connect/tabfmt.cpp
        storage/connect/tabutil.cpp
        storage/connect/tabwmi.cpp
      0993d4b4
    • Sergey Vojtovich's avatar
      f3d26cb1
    • Sergey Vojtovich's avatar
      MDEV-4702 - Reduce usage of LOCK_open · b7f9c894
      Sergey Vojtovich authored
      Following variables do not require LOCK_open protection anymore:
      - table_def_cache (renamed to tdc_hash) is protected by rw-lock
        LOCK_tdc_hash;
      - table_def_shutdown_in_progress doesn't need LOCK_open protection;
      - last_table_id use atomics;
      - TABLE_SHARE::ref_count (renamed to TABLE_SHARE::tdc.ref_count)
        is protected by TABLE_SHARE::tdc.LOCK_table_share;
      - TABLE_SHARE::next, ::prev (renamed to tdc.next and tdc.prev),
        oldest_unused_share, end_of_unused_share are protected by
        LOCK_unused_shares;
      - TABLE_SHARE::m_flush_tickets (renamed to tdc.m_flush_tickets)
        is protected by TABLE_SHARE::tdc.LOCK_table_share;
      - refresh_version (renamed to tdc_version) use atomics.
      b7f9c894
  14. 13 Aug, 2013 3 commits
  15. 12 Aug, 2013 4 commits
    • Sergei Golubchik's avatar
      MDEV-4786 merge 10.0-monty -> 10.0 · a6617eb3
      Sergei Golubchik authored
      remove unused HA_READ_OUT_OF_SYNC
      a6617eb3
    • Sergei Golubchik's avatar
      cleanup · a91a2385
      Sergei Golubchik authored
      * use sql_mode_for_dates() where appropriate.
      * always specify an argument for sql_mode_for_dates()
        (future-proof. easier to notice and fix if the caller
         will start using thd from a local variable or an argument)
      a91a2385
    • Olivier Bertrand's avatar
      -Fix MDEV-4878. Table locking is now supported. · bce59293
      Olivier Bertrand authored
      modified:
        storage/connect/ha_connect.cc
        storage/connect/ha_connect.h
        storage/connect/plgdbsem.h
      
      - Fiw a bug making records_in_range sometimes return a negative
        value.
      
      modified:
        storage/connect/xindex.cpp
      bce59293
    • Sergei Golubchik's avatar
      MDEV-4786 merge 10.0-monty -> 10.0 · 847e0f15
      Sergei Golubchik authored
      remove unused HA_CAN_EXPORT
      (with the merge of "FLUSH TABLE <table_list> FOR EXPORT",
      this functionality should be added back, but differently -
      no table flag, handler::extra() returns an error instead)
      847e0f15