Updated tests with new expected output. Also took new function into use and removed the old one. Since the comment removal isn't added yet, one of the tests is expected to fail and it is temporarily disabled.
20 lines
1.1 KiB
Plaintext
20 lines
1.1 KiB
Plaintext
ALTER DATABASE `` DEFAULT CHARACTER SET latin2;
|
|
ALTER DATABASE `#mysql50#../` UPGRADE DATA DIRECTORY NAME;
|
|
ALTER DATABASE `#mysql50#../..` UPGRADE DATA DIRECTORY NAME; # a comment
|
|
ALTER DATABASE `#mysql51#not-yet` UPGRADE DATA DIRECTORY NAME; # a comment with backticks `this should work`
|
|
ALTER DATABASE `test-database` CHARACTER SET utf8 COLLATE utf8_unicode_ci ;
|
|
ALTER DEFINER=root@localhost EVENT e1 ON SCHEDULE EVERY ? HOUR;
|
|
ALTER EVENT e1 COMMENT ?;
|
|
ALTER EVENT e1 DO SELECT ?;
|
|
ALTER EVENT e1 ON SCHEDULE AT ? ON COMPLETION PRESERVE DISABLE;
|
|
ALTER TABLE `@0023sql1` RENAME `#sql-1`;
|
|
ALTER TABLE t1 ADD INDEX (c13) COMMENT ?;
|
|
ALTER TABLE t1 ADD PARTITION IF NOT EXISTS(PARTITION `p5` VALUES LESS THAN (?)COMMENT \'?);
|
|
ALTER TABLE `t1` ADD PRIMARY KEY (`a`);
|
|
alter table t1 change a a enum(?,?,?,?,?,?,?,?) character set utf16;
|
|
alter table t1 change a a int `FKEY1`=?;
|
|
alter table t1i engine=innodb;
|
|
alter table t1 max_rows=?;
|
|
ALTER TABLE t2 PARTITION BY RANGE COLUMNS(c)(PARTITION p0 VALUES LESS THAN (?), PARTITION p1 VALUES LESS THAN (MAXVALUE));
|
|
alter table table_24562 order by table_24562.subsection ASC, table_24562.section DESC;
|