summaryrefslogtreecommitdiff
path: root/mysql-test/r/alter_table_online.result
Commit message (Collapse)AuthorAgeFilesLines
* Remove end . from error messages to get them consistentMonty2016-10-051-27/+27
| | | | Fixed a few failing tests
* Merge branch '10.0' into 10.1Sergei Golubchik2016-05-041-1/+12
|\
| * MDEV-9168 altering a column comment does a full copySergei Golubchik2016-04-241-0/+9
| | | | | | | | add a test case
| * MDEV-9868 Altering a partitioned table comment does a full copySergei Golubchik2016-04-241-1/+3
| | | | | | | | | | | | let handler::check_if_supported_inplace_alter() (that detects frm-only changes) to work for partitioned tables too.
* | Merge branch '10.0' into 10.1Sergei Golubchik2016-02-231-6/+3
|\ \ | |/
| * MDEV-9103 Altering table comment does a full copySergei Golubchik2016-02-151-6/+3
| | | | | | | | | | following InnoDB's logic, altering a comment or a default field's value needs "NO_LOCK", not EXCLUSIVE
* | MDEV-8948 ALTER ... INPLACE does work for BINARY, BLOBmariadb-10.1.8Alexander Barkov2015-10-151-0/+114
|/
* more tests, moving code aroundSergei Golubchik2015-05-031-0/+3
|
* Alter online table x (no options) possibleDaniel Black2015-05-011-0/+1
| | | | | This no-op of an operations should be able to occur without locks and occur online.
* update ALTER ONLINE to mean ALTER LOCK=NONE, not ALTER ALGORITHM=INPLACE.Sergei Golubchik2013-09-251-23/+14
| | | | Fix test results accordingly.
* fix for alter_table_online test.Sergei Golubchik2013-07-101-23/+21
| | | | | Map ALTER ONLINE TABLE to ALTER TABLE ... ALGORITHM=INPLACE. Make MERGE engine to announce its support of inplace operations.
* Added ALTER ONLINE TABLE, which will give an error if the change can't be ↵Michael Widenius2011-04-281-0/+74
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