mrg_myisam.lib.php 620 B

123456789101112131415161718192021222324252627282930313233343536
  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. if (! defined('PHPMYADMIN')) {
  9. exit;
  10. }
  11. /**
  12. *
  13. */
  14. require_once './libraries/engines/merge.lib.php';
  15. /**
  16. * The MERGE storage engine
  17. *
  18. * @package PhpMyAdmin-Engines
  19. */
  20. class PMA_StorageEngine_MrgMyisam extends PMA_StorageEngine_Merge
  21. {
  22. /**
  23. * returns string with filename for the MySQL helppage
  24. * about this storage engine
  25. *
  26. * @return string mysql helppage filename
  27. */
  28. public function getMysqlHelpPage()
  29. {
  30. return 'merge-storage-engine';
  31. }
  32. }
  33. ?>