1. 01 Jan, 2017 2 commits
  2. 31 Dec, 2016 4 commits
  3. 29 Dec, 2016 1 commit
  4. 27 Dec, 2016 1 commit
  5. 26 Dec, 2016 3 commits
  6. 15 Dec, 2016 4 commits
  7. 04 Dec, 2016 4 commits
  8. 03 Dec, 2016 11 commits
  9. 02 Dec, 2016 7 commits
  10. 21 Nov, 2016 1 commit
  11. 20 Nov, 2016 1 commit
  12. 18 Nov, 2016 1 commit
    • 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