Skip to content

Commit

Permalink
Test compat fix for MySQL 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaba committed Jan 24, 2024
1 parent 673ba3b commit 14fef2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t_deps/lib/Tests.pm
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ sub create_user ($$$;%) {
} else {
my $sql = 'create user "'.$user.'"@"%" identified';
$sql .= ' by "'.$password.'"';
$sql .= ' require subject "'.$args{tls_subject}.'"' if defined $args{tls_subject};
#$sql .= ' require subject "'.$args{tls_subject}.'"' if defined $args{tls_subject};
return $client->query ($sql)->then (sub {
die $_[0] unless $_[0]->is_success;
my $sql = 'grant all privileges on *.* to "'.$user.'"@"%" identified';
Expand Down

0 comments on commit 14fef2a

Please sign in to comment.