
The canonicalization process now strips non-executable comments from the SQL and replaces all constants in executable comments. Enabled the comment test and updated expected output of the select and alter tests.
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;
|
|
ALTER DATABASE `#mysql51#not-yet` UPGRADE DATA DIRECTORY NAME;
|
|
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;
|