1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

portability fixes for mysql-test

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
This commit is contained in:
Sergei Golubchik
2013-04-10 15:43:57 +02:00
parent 3ed6b24d82
commit ff3407a111
6 changed files with 62 additions and 18 deletions

View File

@@ -8,15 +8,19 @@ show status like '%libraries%';
#--sorted_result
#select * from information_schema.all_plugins;
#show status like '%libraries%';
select * from information_schema.all_plugins where plugin_library='ha_example.so';
--replace_result .dll .so
eval select * from information_schema.all_plugins where plugin_library='$HA_EXAMPLE_SO';
show status like '%libraries%';
--sorted_result
show plugins soname 'ha_example.so';
--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
show plugins soname where library = 'ha_example.so';
--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%';