1. 26 Dec, 2016 3 commits
  2. 15 Dec, 2016 4 commits
  3. 04 Dec, 2016 4 commits
  4. 03 Dec, 2016 11 commits
  5. 02 Dec, 2016 7 commits
  6. 21 Nov, 2016 1 commit
  7. 20 Nov, 2016 1 commit
  8. 18 Nov, 2016 2 commits
    • Sergei Petrunia's avatar
      MariaRocks port: make rocksdb.alter_table work · a4c1b5bb
      Sergei Petrunia authored
      The warning
      "ORDER BY ignored as there is a user-defined clustered index in the table 't1'
      was missing.
      
      The reason is different condition in copy_data_between_tables():
      MariaDB has a change, it uses
      
        to->file->ha_table_flags() & HA_TABLE_SCAN_ON_INDEX
      
      while MySQL uses:
      
        to->file->primary_key_is_clustered()).
      
      For some reason, MyRocks didn't have HA_TABLE_SCAN_ON_INDEX flag.
      It should have one, will raise that with upstream, too.
      a4c1b5bb
    • Sergei Petrunia's avatar
      MariaRocks port: more testcase fixes · c12a1bb9
      Sergei Petrunia authored
      rocksdb.lock: LOCK TABLE t1 LOW_PRIORITY WRITE does not produce a
        warining in MariaDB
      
      rocksdb.unique_check:
      - MariaDB's mtr prints connection actions
      - New (but temporary) ER_LOCK_WAIT_TIMEOUT text
      
      rocksdb.allow_pk_no_concurrent_insert:
      - Fix path
      
      rocksdb.locking_issues
      - Fix path
      - The test still fails but for a different reason now
      c12a1bb9
  9. 15 Nov, 2016 1 commit
  10. 13 Nov, 2016 2 commits
  11. 12 Nov, 2016 4 commits