We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If Views exist in the database an error occurs in helpers\MysqlBackup.php because "SHOW TABLES" also lists Views.
Line 62 is now: $sql = 'SHOW TABLES'; it should be $sql = "SHOW FULL TABLES where Table_Type != 'VIEW'"; so that only Tables get scripted and saved...
Later on the scripting of Views but not their content could be added... ;-)
Regards Karl
The text was updated successfully, but these errors were encountered:
Thanks @klikar3 . We shall update it in next release
Sorry, something went wrong.
No branches or pull requests
If Views exist in the database an error occurs in helpers\MysqlBackup.php because "SHOW TABLES" also lists Views.
Line 62 is now:
$sql = 'SHOW TABLES';
it should be
$sql = "SHOW FULL TABLES where Table_Type != 'VIEW'";
so that only Tables get scripted and saved...
Later on the scripting of Views but not their content could be added... ;-)
Regards
Karl
The text was updated successfully, but these errors were encountered: