summaryrefslogtreecommitdiff
path: root/hugo/libraries/engines/mrg_myisam.lib.php
diff options
context:
space:
mode:
Diffstat (limited to 'hugo/libraries/engines/mrg_myisam.lib.php')
-rw-r--r--hugo/libraries/engines/mrg_myisam.lib.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/hugo/libraries/engines/mrg_myisam.lib.php b/hugo/libraries/engines/mrg_myisam.lib.php
new file mode 100644
index 0000000..eadccd0
--- /dev/null
+++ b/hugo/libraries/engines/mrg_myisam.lib.php
@@ -0,0 +1,37 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * @package PhpMyAdmin-Engines
+ */
+if (! defined('PHPMYADMIN')) {
+ exit;
+}
+
+if (! defined('PHPMYADMIN')) {
+ exit;
+}
+
+/**
+ *
+ */
+require_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 engine
+ *
+ * @return string mysql helppage filename
+ */
+ function getMysqlHelpPage()
+ {
+ return 'merge-storage-engine';
+ }
+}
+
+?>