diff --git a/htdocs/sql/libraries/engines/ndbcluster.lib.php b/htdocs/sql/libraries/engines/ndbcluster.lib.php new file mode 100755 --- /dev/null +++ b/htdocs/sql/libraries/engines/ndbcluster.lib.php @@ -0,0 +1,43 @@ + array( + ), + ); + } + + /** + * @return string SQL query LIKE pattern + */ + function getVariablesLikePattern() + { + return 'ndb\\_%'; + } + + /** + * returns string with filename for the MySQL helppage + * about this storage engne + * + * @return string mysql helppage filename + */ + function getMysqlHelpPage() + { + return 'ndbcluster'; + } +} + +?>