Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/engines/mrg_myisam.lib.php')
-rw-r--r--libraries/engines/mrg_myisam.lib.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/libraries/engines/mrg_myisam.lib.php b/libraries/engines/mrg_myisam.lib.php
deleted file mode 100644
index 4ec36d15b6..0000000000
--- a/libraries/engines/mrg_myisam.lib.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-/* vim: set expandtab sw=4 ts=4 sts=4: */
-/**
- * @version $Id$
- * @package phpMyAdmin-Engines
- */
-
-/**
- *
- */
-include_once './libraries/engines/merge.lib.php';
-
-/**
- *
- * @package phpMyAdmin-Engines
- */
-class PMA_StorageEngine_mrg_myisam extends PMA_StorageEngine_merge
-{
- /**
- * returns string with filename for the MySQL helppage
- * about this storage engne
- *
- * @return string mysql helppage filename
- */
- function getMysqlHelpPage()
- {
- return 'merge';
- }
-}
-
-?>