Skip to content

Commit

Permalink
Split GRANT and user creation
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed Aug 24, 2023
1 parent faa41b4 commit a251c72
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,8 @@ and has the proper privileges that these tests require such
as 'drop table', 'create table', 'drop procedure', 'create procedure'
as well as others.
mysql> grant all privileges on test.* to '$user'\@'localhost' identified by 's3kr1t';
mysql> CREATE USER '$user'\@'localhost' IDENTIFIED BY 's3kr1t';
mysql> GRANT ALL PRIVILEGES ON test.* TO '$user'\@'localhost';
You can also optionally set the user to run 'make test' with:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![.github/workflows/ci.yml](https://github.com/perl5-dbi/DBD-mysql/actions/workflows/ci.yml/badge.svg)](https://github.com/perl5-dbi/DBD-mysql/actions/workflows/ci.yml)

# DBD::mysql - database driver for Perl

This is the Perl [DBI](https://metacpan.org/pod/DBI) driver for access to MySQL 8.x databases.
Expand Down

0 comments on commit a251c72

Please sign in to comment.