1. 05 Nov, 2013 2 commits
  2. 15 Oct, 2013 1 commit
  3. 14 Oct, 2013 1 commit
  4. 11 Oct, 2013 2 commits
  5. 07 Oct, 2013 4 commits
  6. 06 Oct, 2013 3 commits
  7. 26 Sep, 2013 1 commit
  8. 25 Sep, 2013 1 commit
  9. 09 Sep, 2013 1 commit
  10. 04 Sep, 2013 2 commits
  11. 03 Sep, 2013 1 commit
  12. 23 Aug, 2013 1 commit
  13. 22 Aug, 2013 2 commits
  14. 21 Aug, 2013 1 commit
  15. 16 Aug, 2013 1 commit
  16. 15 Aug, 2013 6 commits
  17. 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
  18. 13 Aug, 2013 3 commits
  19. 12 Aug, 2013 3 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