• Michael Widenius's avatar
    Added ALTER ONLINE TABLE, which will give an error if the change can't be done... · 2721e912
    Michael Widenius authored
    Added ALTER ONLINE TABLE, which will give an error if the change can't be done 'instantly' (without a table copy)
    
    
    mysql-test/r/alter_table_online.result:
      Test new feature
    mysql-test/t/alter_table_online.test:
      Test new feature
    sql/handler.cc:
      Added comment
    sql/lex.h:
      Added ONLINE keyword
    sql/mysql_priv.h:
      Added option to alter table to require online operation
    sql/share/errmsg.txt:
      Added error message if ONLINE can't be done
    sql/sql_lex.h:
      Added online option
    sql/sql_parse.cc:
      Added online option to mysql_alter_table()
    sql/sql_table.cc:
      Added test that gives error if table can't be done instantly when requsted to be online.
      Fixed wrong test if table includes a VARCHAR
      Fixed wrong (but unlikely) handling of error conditions in ALTER table
    sql/sql_yacc.yy:
      Added ALTER ONLINE TABLE syntax
    storage/maria/ha_maria.cc:
      Fixed bug where 'start_bulk_insert' used too small buffer if used with unknown number of rows
    2721e912
sql_parse.cc 239 KB