mirror of
https://github.com/MariaDB/server.git
synced 2025-05-11 13:21:44 +03:00
mysql-test/r/mysqld--help.result: that's default to number of CPUs mysql-test/suite/archive/discover.test: move_file uses rename(2), which may end up with "Invalid cross-device link" mysql-test/suite/archive/partition_archive.test: on Solaris the error message is different
27 lines
971 B
Plaintext
27 lines
971 B
Plaintext
if (!$DIALOG_EXAMPLES_SO) { skip requires dialog_examples.so; }
|
|
if (!$HA_EXAMPLE_SO) { skip requires ha_examples.so; }
|
|
if (!$LIBDAEMON_EXAMPLE_SO) { skip requires libdaemon_examples.so; }
|
|
if (!$UDF_EXAMPLE_SO) { skip requires udf_example.so; }
|
|
|
|
flush status;
|
|
show status like '%libraries%';
|
|
#--sorted_result
|
|
#select * from information_schema.all_plugins;
|
|
#show status like '%libraries%';
|
|
--replace_result .dll .so
|
|
eval select * from information_schema.all_plugins where plugin_library='$HA_EXAMPLE_SO';
|
|
show status like '%libraries%';
|
|
--sorted_result
|
|
--replace_result .dll .so
|
|
eval show plugins soname '$HA_EXAMPLE_SO';
|
|
show status like '%libraries%';
|
|
--sorted_result
|
|
--replace_result .dll .so
|
|
show plugins soname like '%example%';
|
|
show status like '%libraries%';
|
|
--sorted_result
|
|
--replace_result .dll .so
|
|
eval show plugins soname where library = '$HA_EXAMPLE_SO';
|
|
select variable_value > 10 from information_schema.global_status where variable_name like '%libraries%';
|
|
|