Remove doc example that doesn't exist.

This commit is contained in:
Daniel Nichter
2012-10-30 16:19:23 -06:00
parent d616a7e5e6
commit 3d38ad0672

View File

@@ -4109,10 +4109,9 @@ print their names:
pt-find --ctime +1 --engine MyISAM
Find InnoDB tables that haven't been updated in a month, and convert them to
MyISAM storage engine (data warehousing, anyone?):
Find InnoDB tables and convert them to MyISAM:
pt-find --mtime +30 --engine InnoDB --exec "ALTER TABLE %D.%N ENGINE=MyISAM"
pt-find --engine InnoDB --exec "ALTER TABLE %D.%N ENGINE=MyISAM"
Find tables created by a process that no longer exists, following the
name_sid_pid naming convention, and remove them.