1. 23 Jul, 2015 1 commit
  2. 22 Jul, 2015 1 commit
  3. 20 Jul, 2015 2 commits
  4. 19 Jul, 2015 2 commits
  5. 16 Jul, 2015 2 commits
  6. 14 Jul, 2015 3 commits
  7. 13 Jul, 2015 3 commits
  8. 10 Jul, 2015 1 commit
    • Monty's avatar
      Updated fill_help_tables for MariaDB · d9835658
      Monty authored
      - References changed from mysql.com to mariadb.com/kb
      - NDB specfic things removed
      - Changed other MySQL related things to MariaDB
      d9835658
  9. 30 Jun, 2015 1 commit
    • Jan Lindström's avatar
      MDEV-8392: Couldn't alter field with default value for make it not nullable. · 1a8cf15d
      Jan Lindström authored
      Analysis; Problem is that InnoDB does not have support for generating
      CURRENT_TIMESTAMP or constant default.
      
      Fix: Add additional check if column has changed from NULL -> NOT NULL
      and column default has changed. If this is is first column definition
      whose SQL type is TIMESTAMP and it is defined as NOT NULL and
      it has either constant default or function default we must use
      "Copy" method for alter table.
      1a8cf15d
  10. 24 Jun, 2015 2 commits
  11. 17 Jun, 2015 2 commits
  12. 16 Jun, 2015 18 commits
  13. 15 Jun, 2015 2 commits
    • Sergei Golubchik's avatar
      MDEV-7771 missing client plugins when mariadb-shared is not installed · b988553c
      Sergei Golubchik authored
      Put client plugins into -common rpm, not -shared.
      Because they're needed for
      * all clients that link with shared libmysqlclient (-shared)
      * our clients from -client rpm, they're statically linked (-client)
      * the server that acts as a replication slave (-server)
      b988553c
    • Alexey Botchkov's avatar
      MDEV-7871 Tests fail massively on "Assertion `status_var.memory_used == 0'"... · 02421aa2
      Alexey Botchkov authored
      MDEV-7871 Tests fail massively on "Assertion `status_var.memory_used == 0'" when run with --ps --embedded.
         As the MF_THREAD_SPECIFIC was introduced to the alloc_root's and
         the prealloc added to the statement::mem_root and statement::result.alloc, we have to adjust
         the embedded server to it. The preallocation was removed for the embedded server as it
         makes no sence for it. The msyqltest should free the statement inside the proper thead to
         make the memory statistics happy.
      02421aa2