This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#10: Add inputs and expected outputs for MyUser user retrieval
- Loading branch information
1 parent
e1e650d
commit dbe90a5
Showing
3 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
DROP USER If Exists MyUser@localhost; | ||
DROP User If Exists MyDisabledUser@localhost; | ||
CREATE USER MyUser@localhost IDENTIFIED BY '123_aBC'; | ||
CREATE USER MyDisabledUser@localhost IDENTIFIED BY '123_aBC' ACCOUNT LOCK; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"users": { | ||
"MyUser@localhost": { | ||
"Type": "DatabaseAuthority" | ||
}, | ||
"MyDisabledUser@localhost": { | ||
"Type": "DatabaseAuthority", | ||
"Enabled": false | ||
} | ||
} | ||
} |
File renamed without changes.