Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[MDEV-7978] Added show create user implementation.
- Loading branch information
1 parent
a470b35
commit f3f45e4
Showing
4 changed files
with
233 additions
and
93 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,39 @@ | ||
| create user foo; | ||
| show create user foo; | ||
| CREATE USER for foo@% | ||
| CREATE USER 'foo'@'%' | ||
| create user foo@test; | ||
| show create user foo@test; | ||
| CREATE USER for foo@test | ||
| CREATE USER 'foo'@'test' | ||
| create user foo2@test identified by 'password'; | ||
| show create user foo2@test; | ||
| CREATE USER for foo2@test | ||
| CREATE USER 'foo2'@'test' IDENTIFIED BY PASSWORD '*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19' | ||
| alter user foo2@test identified with 'someplugin' as 'somepassword'; | ||
| show create user foo2@test; | ||
| CREATE USER for foo2@test | ||
| CREATE USER 'foo2'@'test' IDENTIFIED VIA someplugin USING 'somepassword' | ||
| create user foo3@test require SSL; | ||
| show create user foo3@test; | ||
| CREATE USER for foo3@test | ||
| CREATE USER 'foo3'@'test' REQUIRE SSL | ||
| create user foo4@test require cipher 'text' issuer 'foo_issuer' subject 'foo_subject'; | ||
| show create user foo4@test; | ||
| CREATE USER for foo4@test | ||
| CREATE USER 'foo4'@'test' REQUIRE ISSUER 'foo_issuer' SUBJECT 'foo_subject' CIPHER 'text' | ||
| create user foo5@test require SSL | ||
| with MAX_QUERIES_PER_HOUR 10 | ||
| MAX_UPDATES_PER_HOUR 20 | ||
| MAX_CONNECTIONS_PER_HOUR 30 | ||
| MAX_USER_CONNECTIONS 40 | ||
| MAX_STATEMENT_TIME 0.5; | ||
| show create user foo5@test; | ||
| CREATE USER for foo5@test | ||
| CREATE USER 'foo5'@'test' REQUIRE SSL WITH MAX_QUERIES_PER_HOUR 10 MAX_UPDATES_PER_HOUR 20 MAX_CONNECTIONS_PER_HOUR 30 MAX_USER_CONNECTIONS 40 MAX_STATEMENT_TIME 0.500000 | ||
| drop user foo5@test; | ||
| drop user foo4@test; | ||
| drop user foo3@test; | ||
| drop user foo2@test; | ||
| drop user foo@test; | ||
| drop user foo; |
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,32 @@ | ||
| create user foo; | ||
| show create user foo; | ||
|
|
||
| create user foo@test; | ||
| show create user foo@test; | ||
|
|
||
| create user foo2@test identified by 'password'; | ||
| show create user foo2@test; | ||
|
|
||
| alter user foo2@test identified with 'someplugin' as 'somepassword'; | ||
| show create user foo2@test; | ||
|
|
||
| create user foo3@test require SSL; | ||
| show create user foo3@test; | ||
|
|
||
| create user foo4@test require cipher 'text' issuer 'foo_issuer' subject 'foo_subject'; | ||
| show create user foo4@test; | ||
|
|
||
| create user foo5@test require SSL | ||
| with MAX_QUERIES_PER_HOUR 10 | ||
| MAX_UPDATES_PER_HOUR 20 | ||
| MAX_CONNECTIONS_PER_HOUR 30 | ||
| MAX_USER_CONNECTIONS 40 | ||
| MAX_STATEMENT_TIME 0.5; | ||
| show create user foo5@test; | ||
|
|
||
| drop user foo5@test; | ||
| drop user foo4@test; | ||
| drop user foo3@test; | ||
| drop user foo2@test; | ||
| drop user foo@test; | ||
| drop user foo; |
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
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