Documenting this error for the next person that runs into it...
- Laravel Version: 8.20.1
- PHP Version: 7.4.12
- Database Driver & Version:
mysql Ver 15.1 Distrib 10.5.8-MariaDB, for osx10.15 (x86_64)
Description:
When I ran php artisan schema:dump --prune, I saw this error:
mysqldump: Couldn't execute 'SHOW FUNCTION STATUS WHERE Db = 'database'': Cannot load from mysql.proc. The table is probably corrupted (1728)
The solution was to run mysql_upgrade and restart MariaDB.
Documenting this error for the next person that runs into it...
mysql Ver 15.1 Distrib 10.5.8-MariaDB, for osx10.15 (x86_64)Description:
When I ran
php artisan schema:dump --prune, I saw this error:The solution was to run
mysql_upgradeand restart MariaDB.