Issue 8550: Check for a good table_definition cache value

This commit is contained in:
Michael 2020-04-29 06:28:06 +00:00
parent 4991fa4e27
commit 6487daa4a9
3 changed files with 36 additions and 0 deletions

View file

@ -741,6 +741,17 @@ class DBA
return DI::dba()->processlist();
}
/**
* Fetch a database variable
*
* @param string $name
* @return string content
*/
public static function getVariable(string $name)
{
return DI::dba()->getVariable($name);
}
/**
* Checks if $array is a filled array with at least one entry.
*