1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

MDEV-9804 Implement a caching_sha2_password plugin

but without caching
This commit is contained in:
Sergei Golubchik
2025-05-04 19:13:43 +02:00
parent b57bf6f7b1
commit 63583b0824
30 changed files with 1080 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
package My::Suite::AuthSHA2;
@ISA = qw(My::Suite);
return "Not run for embedded server" if $::opt_embedded_server;
sub is_default { 1 }
bless { };