Patrik Lundin b09c7c6fbf
Remove unnecessary USE mysql; statements (#394)
https://mariadb.com/kb/en/create-user/:
```
For each account, CREATE USER creates a new row in mysql.user (until MariaDB
10.3 this is a table, from MariaDB 10.4 it's a view) or mysql.global_priv_table
(from MariaDB 10.4) that has no privileges.
```

https://dev.mysql.com/doc/refman/8.0/en/create-user.html#create-user-overview:
```
For each account, CREATE USER creates a new row in the mysql.user system table.
```
2021-08-16 10:52:37 +03:00
..