1. 26 Nov, 2015 3 commits
  2. 25 Nov, 2015 2 commits
    • Alexander Barkov's avatar
      MDEV-8095 Split Create_field · 55e67c3e
      Alexander Barkov authored
      Part2: moving a few other fields from Column_definition to Create_field.
      sizeof(sp_variable) is now 200 bytes (vs 248 bytes in 10.1)
      55e67c3e
    • Alexander Barkov's avatar
      A joint patch for: · 00ed55c7
      Alexander Barkov authored
      - MDEV-8093 sql_yacc.yy: add %type create_field for field_spec and column_def
      
      and partially:
      
      - MDEV-8095 Split Create_field
      00ed55c7
  3. 24 Nov, 2015 4 commits
  4. 23 Nov, 2015 10 commits
  5. 20 Nov, 2015 8 commits
  6. 19 Nov, 2015 11 commits
  7. 18 Nov, 2015 2 commits
    • Sergei Golubchik's avatar
      Merge branch '5.5' into 10.0 · ab476a8d
      Sergei Golubchik authored
      ab476a8d
    • Sergei Petrunia's avatar
      MDEV-7370: Server deadlocks on renaming a table for which persistent statistics exists · f91798dd
      Sergei Petrunia authored
      RENAME TABLE code tries to update EITS statistics. It hung, because
      it used an index on (db_name,table_name) to find the table, and attempted
      to update these values at the same time. The fix is do what SQL UPDATE
      statement does when updating index that it's used for scanning:
      - First, buffer the rowids of rows to be updated,
      - then make the second pass to actually update the rows
      
      Also fixed the call to rename_table_in_stat_tables() in sql_rename.cc
      to pass the correct new database (before, it passed old db_name so cross-
      database renames were not handled correctly).
      
      Variant #2, with review feedback addressed.
      f91798dd