mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-13 14:39:28 +00:00
PT-1570 pt-archiver fails to detect columns with the word GENERATED as part of the comment
This commit is contained in:
6
t/lib/samples/generated_cols_comments.sql
Normal file
6
t/lib/samples/generated_cols_comments.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE `t1` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'The unique id of the audit record.',
|
||||
`source` enum('val1','val2') NOT NULL COMMENT 'Transaction originator',
|
||||
`tso_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT 'An internally generated transaction.',
|
||||
PRIMARY KEY (`id`),
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='some comment here generated'
|
Reference in New Issue
Block a user