I've installed MariaDB version 11.2.2 on MacOS via Homebrew and set security settings using mariadb-secure-installation. After logging in as root and running 'select host, user from mysql.user;', I noticed a user named 'PUBLIC' with a blank host. I couldn't find any information about this 'PUBLIC' user and I couldn't delete it because the host was blank. Does anyone know what this 'PUBLIC' user is?

I tried searching for information about this PUBLIC user in MariaDB on Google, but I couldn't find any relevant information. To delete this PUBLIC user, I attempted to use the command DROP USER 'PUBLIC', expecting this would remove the account. However, I received the following error: 'ERROR 1396 (HY000): Operation DROP USER failed for 'PUBLIC'@'%''."
https://mariadb.com/kb/en/create-role/