1. 15 Aug, 2013 1 commit
  2. 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
  3. 13 Aug, 2013 3 commits
  4. 12 Aug, 2013 11 commits
  5. 11 Aug, 2013 2 commits
  6. 09 Aug, 2013 2 commits
    • Olivier Bertrand's avatar
      - Better message for CONNECT unspported commands · 8bd158c1
      Olivier Bertrand authored
      modified:
        storage/connect/ha_connect.cc
      8bd158c1
    • Olivier Bertrand's avatar
      - Implement the SERVID special columns. This imply modifying the way · 5d75457f
      Olivier Bertrand authored
        special columns are processed. This will be documented.
        Also some code cleanup and some changes to prepare the indexing of
        nullable columns (not achieve yet)
      
      modified:
        storage/connect/colblk.cpp
        storage/connect/colblk.h
        storage/connect/connect.cc
        storage/connect/connect.h
        storage/connect/ha_connect.cc
        storage/connect/ha_connect.h
        storage/connect/macutil.cpp
        storage/connect/mycat.cc
        storage/connect/plgdbsem.h
        storage/connect/reldef.cpp
        storage/connect/reldef.h
        storage/connect/table.cpp
        storage/connect/tabmysql.cpp
        storage/connect/tabmysql.h
        storage/connect/tabodbc.h
        storage/connect/tabtbl.cpp
        storage/connect/tabutil.h
        storage/connect/value.h
        storage/connect/xindex.cpp
        storage/connect/xindex.h
        storage/connect/xtable.h
      5d75457f
  7. 08 Aug, 2013 3 commits
  8. 07 Aug, 2013 6 commits
  9. 06 Aug, 2013 2 commits
    • Olivier Bertrand's avatar
      - Issue a warning instead of an error when inserting in release built a value · 98f3fd64
      Olivier Bertrand authored
        concerning a nullable column wrongly created as indexed (MDEV-4494)
      
      modified:
        storage/connect/ha_connect.cc
      98f3fd64
    • Sergey Vojtovich's avatar
      MDEV-4801 - Server crashes in my_strdup on setting · 5997156b
      Sergey Vojtovich authored
                  innodb_ft_user_stopword_table to DEFAULT
      
      Setting plugin string variable with PLUGIN_VAR_MEMALLOC flag
      to NULL causes server crash.
      
      mysql-test/suite/sys_vars/r/innodb_ft_user_stopword_table_basic.result:
        Reset innodb_ft_user_stopword_table. Also tests MDEV-4801.
      mysql-test/suite/sys_vars/t/innodb_ft_user_stopword_table_basic.test:
        Reset innodb_ft_user_stopword_table. Also tests MDEV-4801.
      sql/sql_plugin.cc:
        When we got NULL value, do not strdup(NULL).
      5997156b
  10. 05 Aug, 2013 2 commits
  11. 04 Aug, 2013 1 commit
  12. 02 Aug, 2013 3 commits
    • Sergey Petrunya's avatar
      Automatic merge · cb5de276
      Sergey Petrunya authored
      cb5de276
    • Sergey Vojtovich's avatar
      MDEV-4786 - merge 10.0-monty - 10.0 · d845bcc3
      Sergey Vojtovich authored
      Fixed perfschema.relaylog failure.
      
      mysql-test/suite/perfschema/r/relaylog.result:
        Failed file opens are not shown in P_S. Relevant revision:
        marc.alff@oracle.com-20120807154151-cwuazxu341rvrnmg
      d845bcc3
    • Sergey Petrunya's avatar
      MDEV-4816: rpl.rpl_trunc_temp fails in 10.0-serg · 5c49041b
      Sergey Petrunya authored
      Temorary fix for a number of replication tests (rpl.rpl_temp_table_mix_row 
      rpl.rpl_trunc_temp rpl.rpl_current_user rpl.rpl_gtid_master_promote):
      
      - THD::decide_logging_format() should not assume that mysql.gtid_slave_pos is 
        a non-replicated table. This used to cause unintended behavior for COMMIT 
        statement: replication would switch to row-based, etc.
      
      The question of what should be done when a user issues a statement that
      explicitly modifies mysql.gtid_slave_pos table remains open.
      5c49041b