Sha256: ccda41752e3050499f08dfb891fdcc5c7e11a36be39945f5ed65c6dabbcb11c6

Contents?: true

Size: 584 Bytes

Versions: 2

Compression:

Stored size: 584 Bytes

Contents

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * The performance schema storage engine
 *
 * @package PhpMyAdmin-Engines
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 * The performance schema storage engine
 *
 * @package PhpMyAdmin-Engines
 */
class PMA_StorageEngine_PerformanceSchema extends PMA_StorageEngine
{
    /**
     * Returns string with filename for the MySQL helppage
     * about this storage engine
     *
     * @return string  mysql helppage filename
     */
    public function getMysqlHelpPage()
    {
        return 'performance-schema';
    }
}

?>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
simpletool-0.0.3 lib/support/phpmyadmin/phpmyadmin/libraries/engines/performance_schema.lib.php
simpletool-0.0.2 lib/support/phpmyadmin/phpmyadmin/libraries/engines/performance_schema.lib.php