summaryrefslogtreecommitdiff
path: root/hugo/libraries/engines/performance_schema.lib.php
diff options
context:
space:
mode:
Diffstat (limited to 'hugo/libraries/engines/performance_schema.lib.php')
-rw-r--r--hugo/libraries/engines/performance_schema.lib.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/hugo/libraries/engines/performance_schema.lib.php b/hugo/libraries/engines/performance_schema.lib.php
new file mode 100644
index 0000000..f7664b6
--- /dev/null
+++ b/hugo/libraries/engines/performance_schema.lib.php
@@ -0,0 +1,28 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ * @package PhpMyAdmin-Engines
+ */
+if (! defined('PHPMYADMIN')) {
+ exit;
+}
+
+/**
+ *
+ * @package PhpMyAdmin-Engines
+ */
+class PMA_StorageEngine_performance_schema extends PMA_StorageEngine
+{
+ /**
+ * returns string with filename for the MySQL helppage
+ * about this storage engine
+ *
+ * @return string mysql helppage filename
+ */
+ function getMysqlHelpPage()
+ {
+ return 'performance-schema';
+ }
+}
+
+?>