mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
16 lines
476 B
Perl
16 lines
476 B
Perl
package My::Suite::Connect;
|
|
|
|
@ISA = qw(My::Suite);
|
|
|
|
return "No CONNECT engine" unless $ENV{HA_CONNECT_SO} or
|
|
$::mysqld_variables{'connect'} eq "ON";
|
|
|
|
# RECOMPILE_FOR_EMBEDDED also means that a plugin
|
|
# cannot be dynamically loaded into embedded
|
|
return "Not run for embedded server" if $::opt_embedded_server and
|
|
$ENV{HA_CONNECT_SO};
|
|
|
|
sub is_default { 1 }
|
|
|
|
bless { };
|
|
|