innobase.lib.php 374 B

12345678910111213141516171819202122232425
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * The Innobase storage engine
  5. *
  6. * @package PhpMyAdmin-Engines
  7. */
  8. if (! defined('PHPMYADMIN')) {
  9. exit;
  10. }
  11. /**
  12. *
  13. */
  14. require_once './libraries/engines/innodb.lib.php';
  15. /**
  16. * The Innobase storage engine
  17. *
  18. * @package PhpMyAdmin-Engines
  19. */
  20. class PMA_StorageEngine_Innobase extends PMA_StorageEngine_Innodb
  21. {
  22. }
  23. ?>