1. 12 Dec, 2016 1 commit
    • Olivier Bertrand's avatar
      - MDEV-11295: developing handling files contained in ZIP file. · d44723e6
      Olivier Bertrand authored
        A first experimental and limited implementation.
        modified:   storage/connect/CMakeLists.txt
        modified:   storage/connect/filamap.cpp
        new file:   storage/connect/filamzip.cpp
        new file:   storage/connect/filamzip.h
        modified:   storage/connect/ha_connect.cc
        new file:   storage/connect/ioapi.c
        new file:   storage/connect/ioapi.h
        modified:   storage/connect/mycat.cc
        modified:   storage/connect/plgdbsem.h
        modified:   storage/connect/plgdbutl.cpp
        modified:   storage/connect/tabdos.cpp
        modified:   storage/connect/tabdos.h
        modified:   storage/connect/tabfmt.cpp
        modified:   storage/connect/tabfmt.h
        modified:   storage/connect/tabjson.cpp
        modified:   storage/connect/tabjson.h
        new file:   storage/connect/tabzip.cpp
        new file:   storage/connect/tabzip.h
        new file:   storage/connect/unzip.c
        new file:   storage/connect/unzip.h
        new file:   storage/connect/zip.c
      d44723e6
  2. 02 Dec, 2016 1 commit
    • Olivier Bertrand's avatar
      - MDEV-11366 SIGBUS errors in Connect Storage Engine for ArmHF and MIPS. · 599d8cc2
      Olivier Bertrand authored
        Fix includes launchpad fix plus more to cover writing BIN tables.
        modified:   storage/connect/tabfix.cpp
        modified:   storage/connect/value.cpp
        modified:   storage/connect/value.h
      
      - Typo: Change the name of filamzip to filamgz to prepare future ZIP tables.
        modified:   storage/connect/CMakeLists.txt
        added:      storage/connect/filamgz.cpp
        added:      storage/connect/filamgz.h
        deleted:    storage/connect/filamzip.cpp
        deleted:    storage/connect/filamzip.h
        modified:   storage/connect/plgdbsem.h
        modified:   storage/connect/reldef.cpp
        modified:   storage/connect/tabdos.cpp
        modified:   storage/connect/tabdos.h
        modified:   storage/connect/tabfix.cpp
        modified:   storage/connect/tabfmt.cpp
        modified:   storage/connect/tabjson.cpp
      599d8cc2
  3. 27 Nov, 2016 1 commit
  4. 14 Nov, 2016 1 commit
  5. 06 Nov, 2016 1 commit
    • Olivier Bertrand's avatar
      - Fix MDEV-11234. Escape quoting character. Should be doubled. · 5884aa15
      Olivier Bertrand authored
        Now it is also possible to escape it by a backslash.
        modified:   storage/connect/tabfmt.cpp
      
      - Prepare making VEC table type support conditional.
        VEC tables might be unsupported in future versions
        modified:   storage/connect/CMakeLists.txt
        modified:   storage/connect/mycat.cc
        modified:   storage/connect/reldef.cpp
        modified:   storage/connect/xindex.cpp
      
      - MDEV-11067 suggested to add configuration support to the Apache wrapper.
        Was added but commented out until prooved it is really useful.
        modified:   storage/connect/ApacheInterface.java
        modified:   storage/connect/ha_connect.cc
        modified:   storage/connect/jdbccat.h
        modified:   storage/connect/jdbconn.cpp
        modified:   storage/connect/jdbconn.h
        modified:   storage/connect/tabjdbc.cpp
        modified:   storage/connect/tabjdbc.h
      
      - Remove useless members.
        modified:   storage/connect/jdbconn.cpp
        modified:   storage/connect/jdbconn.h
      
      - New UDF countin.
        modified:   storage/connect/jsonudf.cpp
        modified:   storage/connect/jsonudf.h
      5884aa15
  6. 14 Oct, 2016 1 commit
  7. 05 Oct, 2016 1 commit
  8. 16 Sep, 2016 1 commit
  9. 05 Sep, 2016 3 commits
  10. 29 Aug, 2016 1 commit
  11. 25 Aug, 2016 1 commit
  12. 24 Aug, 2016 1 commit
  13. 23 Aug, 2016 3 commits
  14. 22 Aug, 2016 2 commits
    • Monty's avatar
      Minor cleanups · a5051cd3
      Monty authored
      - Remove impossible test in test_quick_select
      - Ensure that is_fatal_error is set if we run out of stack space
      a5051cd3
    • Monty's avatar
      MDEV-10630 rpl.rpl_mdev6020 fails in buildbot with timeout · b5110969
      Monty authored
      The issue was that when running with valgrind the wait for master_pos_Wait()
      was not long enough.
      
      This patch also fixes two other failures that could affect rpl_mdev6020:
      - check_if_conflicting_replication_locks() didn't properly check domains
      - 'did_mark_start_commit' was after signals to other threads was sent which could
        get the variable read too early.
      b5110969
  15. 21 Aug, 2016 3 commits
    • Monty's avatar
      Fixed "Packets out of order" warning message on stdout in clients, · 5932fa78
      Monty authored
      compiled for debugging, when the server goes down
      
      This happens in the following scenario:
      - Server gets a shutdown message
      - Servers sends error ER_CONNECTION_KILLED to the clients connection
      - The client sends a query to the server, before the server has time to
        close the connection to the client
      - Client reads the ER_CONNECTION_KILLED error message
      
      In the above case, the packet number for the reply is one less than
      what the client expected and the client prints "Packets out of order".
      
      Fixed the following way:
      - The client accepts now error packages with a packet number
        one less than expected.
      - To ensure that this issue can be detected early in my_real_read(), error
        messages sent to the client are not compressed, even when compressed protocol is used.
      5932fa78
    • Monty's avatar
      Added new status variables to make it easier to debug certain problems: · 6f31dd09
      Monty authored
      - Handler_read_retry
      - Update_scan
      - Delete_scan
      6f31dd09
    • Monty's avatar
      Cleanups and minor fixes · 8d5a0d65
      Monty authored
      - Fixed typos
      - Added --core-on-failure to mysql-test-run
      - More DBUG_PRINT in viosocket.c
      - Don't forget CLIENT_REMEMBER_OPTIONS for compressed slave protocol
      - Removed not used stage variables
      8d5a0d65
  16. 16 Aug, 2016 1 commit
  17. 15 Aug, 2016 1 commit
  18. 14 Aug, 2016 1 commit
  19. 13 Aug, 2016 3 commits
  20. 12 Aug, 2016 1 commit
    • Monty's avatar
      With parallel replication we have had a couple of bugs where DDL's · 98e36b29
      Monty authored
      (like DROP TABLE) has been scheduled before conflicting DDL's (like INSERT)
      are commited.
      
      What makes these bugs hard to detect is that in most cases any wrong
      schduling are caught by MDL locks. It's only when there are timing issues
      that the bugs (usually deadlocks) are noticed.
      
      This patch adds a DBUG_ASSERT() that detects, in parallel replication,
      if a DDL is scheduled before any depending DML'S are commited.
      It does this be checking if there are any conflicting replication locks
      when the DDL is about to wait for getting it's MDL lock.
      
      I also did some minor code cleanups in sql_base.cc to make this code
      similar to other related code.
      98e36b29
  21. 11 Aug, 2016 1 commit
  22. 10 Aug, 2016 10 commits