MrgMyisam.php 505 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * The MERGE storage engine
  5. *
  6. * @package PhpMyAdmin-Engines
  7. */
  8. namespace PhpMyAdmin\Engines;
  9. /**
  10. * The MERGE storage engine
  11. *
  12. * @package PhpMyAdmin-Engines
  13. */
  14. class MrgMyisam extends Merge
  15. {
  16. /**
  17. * returns string with filename for the MySQL helppage
  18. * about this storage engine
  19. *
  20. * @return string mysql helppage filename
  21. */
  22. public function getMysqlHelpPage()
  23. {
  24. return 'merge-storage-engine';
  25. }
  26. }