mariadb/mysql-test/suite/sys_vars/t
Monty cc8aed3eb7 MDEV 4427: query timeouts
Added MAX_STATEMENT_TIME user variable to automaticly kill queries after a given time limit has expired.

- Added timer functions based on pthread_cond_timedwait
- Added kill_handlerton() to signal storage engines about kill/timeout
- Added support for GRANT ... MAX_STATEMENT_TIME=#
- Copy max_statement_time to current user, if stored in mysql.user
- Added status variable max_statement_time_exceeded
- Added KILL_TIMEOUT
- Removed digest hash from performance schema tests as they change all the time.
- Updated test results that changed because of the new user variables or new fields in mysql.user

This functionallity is inspired by work done by Davi Arnaut at twitter.
Test case is copied from Davi's work.

Documentation can be found at
https://kb.askmonty.org/en/how-to-limittimeout-queries/

mysql-test/r/mysqld--help.result:
  Updated for new help message
mysql-test/suite/perfschema/r/all_instances.result:
  Added new mutex
mysql-test/suite/sys_vars/r/max_statement_time_basic.result:
  Added testing of max_statement_time
mysql-test/suite/sys_vars/t/max_statement_time_basic.test:
  Added testing of max_statement_time
mysql-test/t/max_statement_time.test:
  Added testing of max_statement_time
mysys/CMakeLists.txt:
  Added thr_timer
mysys/my_init.c:
mysys/mysys_priv.h:
  Added new mutex and condition variables
  Added new mutex and condition variables
mysys/thr_timer.c:
  Added timer functions based on pthread_cond_timedwait()
  This can be compiled with HAVE_TIMER_CREATE to benchmark agains timer_create()/timer_settime()
sql/lex.h:
  Added MAX_STATEMENT_TIME
sql/log_event.cc:
  Safety fix (timeout should be threated as an interrupted query)
sql/mysqld.cc:
  Added support for timers
  Added status variable max_statement_time_exceeded
sql/share/errmsg-utf8.txt:
  Added ER_QUERY_TIMEOUT
sql/signal_handler.cc:
  Added support for KILL_TIMEOUT
sql/sql_acl.cc:
  Added support for GRANT ... MAX_STATEMENT_TIME=#
  Copy max_statement_time to current user
sql/sql_class.cc:
  Added timer functionality to THD.
  Added thd_kill_timeout()
sql/sql_class.h:
  Added timer functionality to THD.
  Added KILL_TIMEOUT
  Added max_statement_time variable in similar manner as long_query_time was done.
sql/sql_connect.cc:
  Added handling of max_statement_time_exceeded
sql/sql_parse.cc:
  Added starting and stopping timers for queries.
sql/sql_show.cc:
  Added max_statement_time_exceeded for user/connects status in MariaDB 10.0
sql/sql_yacc.yy:
  Added support for GRANT ... MAX_STATEMENT_TIME=# syntax, to be enabled in 10.0
sql/structs.h:
  Added max_statement_time user resource
sql/sys_vars.cc:
  Added max_statement_time variables
mysql-test/suite/roles/create_and_drop_role_invalid_user_table.test
  Removed test as we require all fields in mysql.user table.
scripts/mysql_system_tables.sql
scripts/mysql_system_tables_data.sql
scripts/mysql_system_tables_fix.sql
  Updated mysql.user with new max_statement_time field
2014-10-07 11:37:36 +03:00
..
all_vars-master.opt merge with 5.3 2011-10-19 21:45:18 +02:00
all_vars.test merge with mysql-5.5.21 2012-03-09 08:06:59 +01:00
aria_block_size_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_checkpoint_interval_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_checkpoint_log_activity_basic.test 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
aria_force_start_after_recovery_failures_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_group_commit_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_group_commit_interval_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_log_file_size_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_log_purge_type_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_max_sort_file_size_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_page_checksum_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_pagecache_age_threshold_basic.test Fix sys_vars test suite for 32bit systems. (MDEV-53 & MDEV-53) 2012-01-09 15:02:02 +02:00
aria_pagecache_buffer_size_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_pagecache_division_limit_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_recover_basic.test 5.3 merge 2012-01-13 15:50:02 +01:00
aria_repair_threads_basic.test Fix sys_vars test suite for 32bit systems. (MDEV-53 & MDEV-53) 2012-01-09 15:02:02 +02:00
aria_sort_buffer_size_basic.test Fix sys_vars test suite for 32bit systems. (MDEV-53 & MDEV-53) 2012-01-09 15:02:02 +02:00
aria_stats_method_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_sync_log_dir_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
aria_used_for_temp_tables_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
auto_increment_increment_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
auto_increment_increment_func.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
auto_increment_offset_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
auto_increment_offset_func.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
autocommit_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
autocommit_func.test Merge next-mr -> next-4284. 2010-02-03 03:06:42 +03:00
autocommit_func2-master.opt Fix for BUG#57316 "It is not clear how to disable autocommit" 2010-11-05 14:16:27 +01:00
autocommit_func2.test Fix for BUG#57316 "It is not clear how to disable autocommit" 2010-11-05 14:16:27 +01:00
autocommit_func3-master.opt Fix for BUG#57316 "It is not clear how to disable autocommit" 2010-11-05 14:16:27 +01:00
autocommit_func3.test Fix for BUG#57316 "It is not clear how to disable autocommit" 2010-11-05 14:16:27 +01:00
autocommit_func4-master.opt Fix for BUG#59432 "--autocommit=on does not work (@@global.autocommit is 0)" 2011-01-14 14:21:46 +01:00
autocommit_func4.test Fix for BUG#59432 "--autocommit=on does not work (@@global.autocommit is 0)" 2011-01-14 14:21:46 +01:00
autocommit_func5-master.opt Fix for BUG#59432 "--autocommit=on does not work (@@global.autocommit is 0)" 2011-01-14 14:21:46 +01:00
autocommit_func5.test Fix for BUG#59432 "--autocommit=on does not work (@@global.autocommit is 0)" 2011-01-14 14:21:46 +01:00
automatic_sp_privileges_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
automatic_sp_privileges_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
back_log_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
basedir_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
big_tables_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
binlog_annotate_row_events_basic.test 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
binlog_cache_size_basic.test Fixed tests that failed on 32 bit because of my earlier fixes of 32 bit limits. 2013-06-11 13:49:43 +03:00
binlog_checksum_basic.test Backport MySQL WL#2540 into MariaDB. 2011-05-03 14:01:11 +02:00
binlog_commit_wait_count_basic.test MDEV-4506: Parallel replication: Intermediate commit. 2013-07-09 13:15:53 +02:00
binlog_commit_wait_usec_basic.test MDEV-4506: Parallel replication: Intermediate commit. 2013-07-09 13:15:53 +02:00
binlog_direct_non_transactional_updates_basic.test Manual merge of patch for Bug#46364 from mysql-next-mr-bugfixing. 2010-02-02 10:56:42 +03:00
binlog_format_basic.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
binlog_optimize_thread_scheduling_basic.test fixes for sys_vars and pbxt suites 2011-10-28 14:24:02 +02:00
binlog_stmt_cache_size_basic.test Fixed tests that failed on 32 bit because of my earlier fixes of 32 bit limits. 2013-06-11 13:49:43 +03:00
bulk_insert_buffer_size_basic.test MDEV-4629 MTR tests main.variables and some of sys_vars.* fail on 32-bit builds 2013-06-12 05:09:28 +04:00
character_set_client_basic.test Backporting WL#1213 2010-02-24 13:15:34 +04:00
character_set_client_func.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_connection_basic.test Backporting WL#1213 2010-02-24 13:15:34 +04:00
character_set_connection_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
character_set_database_basic.test Backporting WL#1213 2010-02-24 13:15:34 +04:00
character_set_database_func.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_filesystem_basic.test Backporting WL#1213 2010-02-24 13:15:34 +04:00
character_set_filesystem_func-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
character_set_results_basic.test Backporting WL#1213 2010-02-24 13:15:34 +04:00
character_set_results_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
character_set_server_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_server_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
character_set_system_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
character_sets_dir_basic.test MDEV-5054 Failing test(s): main.mysqld--help sys_vars.character_sets_dir_basic 2013-11-11 09:31:02 +01:00
collation_connection_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
collation_connection_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
collation_database_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
collation_database_func.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
collation_server_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
collation_server_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
completion_type_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
completion_type_func.test Fix a few failing tests on win2008r2-vs2010-amd64-debug 2012-01-26 16:55:40 +01:00
concurrent_insert_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
concurrent_insert_func.test Implementation of MWL#172: Add support for prepared statements to HANDLER READ 2011-01-04 00:55:41 +02:00
connect_timeout_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
datadir_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
date_format_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
datetime_format_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
deadlock_search_depth_long_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
deadlock_search_depth_short_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
deadlock_timeout_long_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
deadlock_timeout_short_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
debug_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
debug_binlog_fsync_sleep_basic.test compiler warnings/errors 2011-11-23 18:25:07 +01:00
debug_crc_break_basic.test Fix sys_vars test suite for 32bit systems. (MDEV-53 & MDEV-53) 2012-01-09 15:02:02 +02:00
debug_dbug_basic.test rename debug variable to debug_dbug, to make test pass in release builds 2011-12-15 22:07:58 +01:00
debug_dbug_func.test mdev-200 set session dbug resets the output to stderr. 2012-03-23 20:49:47 +01:00
debug_dbug_func_notembedded.test remove few .require files and one duplicate have_*inc file. 2012-02-23 07:52:27 +01:00
debug_no_thread_alarm_basic.test after merge changes: 2011-12-12 23:58:40 +01:00
debug_sync_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
default_master_connection_basic.test Merge mariadb-5.5 -> 10.0-base. 2012-12-16 16:49:19 -08:00
default_regex_flags_basic.test MDEV-6027 RLIKE: "." no longer matching new line 2014-04-23 10:57:25 +04:00
default_storage_engine_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
default_tmp_storage_engine_basic.test MDEV-6107 merge default_tmp_storage_engine 2014-06-15 18:42:31 +02:00
default_week_format_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
default_week_format_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
delay_key_write_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
delay_key_write_func-master.opt WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
delay_key_write_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
delayed_insert_limit_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
delayed_insert_limit_func.test Implementation of MWL#172: Add support for prepared statements to HANDLER READ 2011-01-04 00:55:41 +02:00
delayed_insert_timeout_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
delayed_queue_size_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
div_precision_increment_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
div_precision_increment_func.test 2. review update for bug#52501 fixing a syntax error, a not actual result file and replaced directory info by place holder. 2010-11-11 11:25:03 +01:00
error_count_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
event_scheduler_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
expensive_subquery_limit_basic.test sys_vars.expensive_subquery_limit_basic 2012-09-05 13:15:05 +02:00
expire_logs_days_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
external_user_basic.test WL#1054: Pluggable authentication support 2010-08-09 11:32:50 +03:00
extra_max_connections_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
extra_port_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
flush_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
flush_time_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
foreign_key_checks_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
foreign_key_checks_func.test Bug#49938: Failing assertion: inode or deadlock in fsp/fsp0fsp.c 2010-10-06 11:34:28 -03:00
ft_boolean_syntax_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_boolean_syntax_func.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_max_word_len_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_min_word_len_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_query_expansion_limit_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_stopword_file_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
general_log_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
general_log_file_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
general_log_file_basic.test mysql-5.5.37 selective merge 2014-03-27 22:26:58 +01:00
general_log_file_func-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
general_log_file_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
general_log_func.test Fix for bug#52501 consisting of changes of some sys_vars tests including review results. 2010-11-08 16:30:26 +01:00
group_concat_max_len_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
group_concat_max_len_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
gtid_binlog_pos_basic.test MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
gtid_binlog_state_basic.test MDEV-26: Global transaction ID. 2013-08-23 14:02:13 +02:00
gtid_current_pos_basic.test MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
gtid_domain_id_basic.test MDEV-26: Global transaction ID 2013-03-26 10:35:34 +01:00
gtid_ignore_duplicates_basic.test MDEV-5804: If same GTID is received on multiple master connections in multi-source replication, the event is double-executed causing corruption or replication failure 2014-03-12 00:14:49 +01:00
gtid_seq_no_basic.test MDEV-26: Global transaction ID 2013-03-26 10:35:34 +01:00
gtid_slave_pos_basic.test MDEV-26: Global transaction ID. 2013-05-22 17:36:48 +02:00
gtid_strict_mode_basic.test MDEV-4478: Implement GTID "strict mode" 2013-05-28 13:28:31 +02:00
have_compress_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
have_crypt_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
have_dynamic_loading_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
have_geometry_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
have_openssl_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
have_profiling_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
have_query_cache_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
have_rtree_keys_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
have_ssl_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
have_symlink_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
histogram_size_basic.test Added histogams for table columns. 2013-03-25 23:48:29 -07:00
histogram_type_basic.test Added the type of histogram for mwl #253. 2013-03-30 18:57:07 -07:00
host_cache_size_basic-master.opt sys_var suite passes 2013-07-13 09:22:00 +02:00
host_cache_size_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
hostname_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
identity_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
identity_func-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
identity_func.test post-push fix for bug#53947 2013-09-12 21:26:15 +02:00
ignore_builtin_innodb_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ignore_db_dirs_basic-master.opt 5.3 merge 2012-10-18 23:33:06 +02:00
ignore_db_dirs_basic.test MDEV-5080 Assertion `strcmp(share->unique_file_name,filename) || share->last_version' fails at /storage/myisam/mi_open.c:67 2013-11-04 21:37:29 +01:00
in_transaction_basic.test fixes for sys_vars and pbxt suites 2011-10-28 14:24:02 +02:00
init_connect_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
init_file_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
init_slave_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_adaptive_flushing_basic.test Merge of compatibility fixes 2012-04-02 13:33:16 +03:00
innodb_adaptive_flushing_lwm_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_adaptive_flushing_method_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_adaptive_hash_index_basic.test Merge of compatibility fixes 2012-04-02 13:33:16 +03:00
innodb_adaptive_hash_index_partitions_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_adaptive_max_sleep_delay_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_additional_mem_pool_size_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_api_bk_commit_interval_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_api_disable_rowlock_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_api_enable_binlog_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_api_enable_mdl_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_api_trx_level_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_autoextend_increment_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_autoinc_lock_mode_basic.test Fixing a few broken tests. 2011-08-16 16:06:34 +05:30
innodb_autoinc_lock_mode_func-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
innodb_autoinc_lock_mode_func.test post-push fix for bug#53947 2013-09-12 21:26:15 +02:00
innodb_blocking_buffer_pool_restore_basic.test Merge XtraDB from Percona-server-5.5.17-rel22.1 into MariaDB 5.5 2011-12-15 10:34:14 +01:00
innodb_buf_flush_list_now_basic.test after InnoDB/XtraDB 5.6.16 merge 2014-05-06 13:57:56 +02:00
innodb_buffer_pool_dump_at_shutdown_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_buffer_pool_dump_now_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_buffer_pool_evict_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_buffer_pool_filename_basic.test compilation and test failures 2012-10-04 22:04:19 +02:00
innodb_buffer_pool_instances_basic.test Add basic tests for new innodb features 2010-04-29 13:43:10 -04:00
innodb_buffer_pool_load_abort_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_buffer_pool_load_at_startup_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_buffer_pool_load_now_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_buffer_pool_populate_basic.test mysql-test: sys_vars stub for a new xtradb config variable; tc_log_mmap test; 2012-11-26 18:50:29 +01:00
innodb_buffer_pool_restore_at_startup_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_buffer_pool_shm_checksum_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_buffer_pool_shm_key_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_buffer_pool_size_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_change_buffer_max_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_change_buffering_basic.test Update the sys_vars.innodb_change_buffering_basic mysql-test since the 2010-04-14 15:05:56 +03:00
innodb_change_buffering_debug_basic.test 5.3 merge 2013-01-15 19:07:46 +01:00
innodb_checkpoint_age_target_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_checksum_algorithm_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_checksums_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
innodb_cleaner_eviction_factor_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_cleaner_flush_chunk_size_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_cleaner_free_list_lwm_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_cleaner_lru_chunk_size_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_cleaner_lsn_age_factor_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_cleaner_max_flush_time_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_cleaner_max_lru_time_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_cmp_per_index_enabled_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_commit_concurrency_basic.test Fix for bug#52501 consisting of changes of some sys_vars tests including review results. 2010-11-08 16:30:26 +01:00
innodb_compression_algorithm_basic-master.opt MDEV-6361: innodb_compression_algorithm configuration variable can 2014-06-25 08:46:54 +03:00
innodb_compression_algorithm_basic.test Fix test failure when trying to set compression algorithm to 3 2014-06-25 19:04:44 +03:00
innodb_compression_failure_threshold_pct_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_compression_level_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_compression_pad_pct_max_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_concurrency_tickets_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_corrupt_table_action_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_data_file_path_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_data_home_dir_basic.test Bug #42778: delete order by null global variable causes 2009-05-22 01:22:46 +05:00
innodb_defragment_basic.test MDEV-5834: Merge Kakao Defragmentation implementation to MariaDB 10.1 2014-08-06 15:28:58 +03:00
innodb_defragment_fill_factor_basic.test MDEV-5834: Merge Kakao Defragmentation implementation to MariaDB 10.1 2014-08-06 15:28:58 +03:00
innodb_defragment_fill_factor_n_recs_basic.test MDEV-5834: Merge Kakao Defragmentation implementation to MariaDB 10.1 2014-08-06 15:28:58 +03:00
innodb_defragment_frequency_basic.test MDEV-5834: Merge Kakao Defragmentation implementation to MariaDB 10.1 2014-08-06 15:28:58 +03:00
innodb_defragment_n_pages_basic.test MDEV-5834: Merge Kakao Defragmentation implementation to MariaDB 10.1 2014-08-06 15:28:58 +03:00
innodb_defragment_stats_accuracy_basic.test MDEV-5834: Merge Kakao Defragmentation implementation to MariaDB 10.1 2014-08-06 15:28:58 +03:00
innodb_dict_size_limit_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_disable_background_merge_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_disable_sort_file_cache_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_disallow_writes_basic.test MDEV-6247: Merge 10.0-galera to 10.1. 2014-08-26 15:43:46 +03:00
innodb_doublewrite_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
innodb_doublewrite_batch_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_doublewrite_file_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_empty_free_list_algorithm_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_fake_changes_basic.test Merge XtraDB from Percona-server-5.5.17-rel22.1 into MariaDB 5.5 2011-12-15 10:34:14 +01:00
innodb_fast_checksum_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_fast_shutdown_basic.test Fixing a few broken tests. 2011-08-16 16:06:34 +05:30
innodb_fil_make_page_dirty_debug_basic.test after merge test case fixes 2014-05-08 10:25:16 +02:00
innodb_file_format_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_file_format_check_basic.test Recommitting the changes to push the code. 2011-08-08 17:01:09 +05:30
innodb_file_format_max_basic.test allow suite.pm to skip combinations that originate from test/include files. 2012-02-07 16:22:36 +01:00
innodb_file_io_threads_basic.test Merged Performance Version 0.2.1 with latest 5.1 tree (last push 11 feb 14.01.13 2009) 2009-02-17 13:24:09 +01:00
innodb_file_per_table_basic.test Fixing a few broken tests. 2011-08-16 16:06:34 +05:30
innodb_flush_checkpoint_debug_basic.test Merge XtraDB from Percona-Server-5.5.20-24.1 into MariaDB 5.5. 2012-02-15 15:37:38 +01:00
innodb_flush_log_at_timeout_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_flush_log_at_trx_commit_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_flush_method_basic.test Bug #42778: delete order by null global variable causes 2009-05-22 01:22:46 +05:00
innodb_flush_neighbor_pages_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_flush_neighbors_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_flushing_avg_loops_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_force_load_corrupted_basic.test Add two tests for "innodb_large_prefix" and "innodb_force_load_corrupted" in 2011-08-16 20:51:40 -07:00
innodb_force_primary_key_basic.test MDEV-5335: Force PK option. Added a new dynamic configuration variable 2014-03-11 13:40:29 +02:00
innodb_force_recovery_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_force_recovery_crash_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_foreground_preflush_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_ft_aux_table_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_cache_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_enable_diag_print_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_enable_stopword_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_max_token_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_min_token_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_num_word_optimize_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_result_cache_limit_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_ft_server_stopword_table_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_sort_pll_degree_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_ft_total_cache_size_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_ft_user_stopword_table_basic.test MDEV-4801 - Server crashes in my_strdup on setting 2013-08-06 14:02:07 +04:00
innodb_ibuf_accel_rate_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_ibuf_active_contract_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_ibuf_max_size_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_import_table_from_xtrabackup_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_io_capacity_basic.test Fixing a few broken tests. 2011-08-16 16:06:34 +05:30
innodb_io_capacity_max_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_kill_idle_transaction_basic.test Merge XtraDB from Percona-server-5.5.17-rel22.1 into MariaDB 5.5 2011-12-15 10:34:14 +01:00
innodb_large_prefix_basic.test Merge of compatibility fixes 2012-04-02 13:33:16 +03:00
innodb_lazy_drop_table_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_limit_optimistic_insert_debug_basic.test merge with XtraDB as of Percona-Server-5.5.30-rel30.1 2013-03-08 19:08:45 +01:00
innodb_lock_wait_timeout_basic.test Fixing a few broken tests. 2011-08-16 16:06:34 +05:30
innodb_locking_fake_changes_basic.test xtradb merge. Percona-Server-5.5.28-rel29.3 2013-01-16 11:13:08 +01:00
innodb_locks_unsafe_for_binlog_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
innodb_log_arch_dir_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_log_arch_expire_sec_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_log_archive_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_log_block_size_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_log_buffer_size_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_log_checkpoint_now_basic.test mysql-5.5.34 merge 2013-11-19 13:16:25 +01:00
innodb_log_checksum_algorithm_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_log_compressed_pages_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_log_file_size_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_log_files_in_group_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_log_group_home_dir_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_lru_scan_depth_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_max_bitmap_file_size_basic.test xtradb merge. Percona-Server-5.5.28-rel29.3 2013-01-16 11:13:08 +01:00
innodb_max_changed_pages_basic.test merge with XtraDB as of Percona-Server-5.5.29-rel30.0 2013-02-28 23:56:17 +01:00
innodb_max_dirty_pages_pct_basic.test Fixing a few broken tests. 2011-08-16 16:06:34 +05:30
innodb_max_dirty_pages_pct_func.test BUG#58858 : sys_vars.innodb_max_dirty_pages_pct_func fails sporadically 2011-01-18 09:24:52 +05:30
innodb_max_dirty_pages_pct_lwm_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_max_purge_lag_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_max_purge_lag_delay_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_mirrored_log_groups_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_monitor_disable_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_monitor_enable_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_monitor_reset_all_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_monitor_reset_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_mtflush_threads_basic.test Fix bug https://code.launchpad.net/~laurynas-biveinis/percona-server/bug1295268 2014-03-27 09:35:24 +02:00
innodb_old_blocks_pct_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_old_blocks_time_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_online_alter_log_max_size_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_open_files_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_optimize_fulltext_only_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_page_hash_locks_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_page_size_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_print_all_deadlocks_basic.test merge with XtraDB as of Percona-Server-5.5.30-rel30.1 2013-03-08 19:08:45 +01:00
innodb_priority_cleaner_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_priority_io_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_priority_master_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_priority_purge_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_purge_batch_size_basic.test Add basic tests for new innodb features 2010-04-29 13:43:10 -04:00
innodb_purge_run_now_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_purge_stop_now_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_purge_threads_basic.test Add basic tests for new innodb features 2010-04-29 13:43:10 -04:00
innodb_random_read_ahead_basic.test Merge of compatibility fixes 2012-04-02 13:33:16 +03:00
innodb_read_ahead_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_read_ahead_threshold_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_read_io_threads_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_read_only_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_recovery_stats_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_recovery_update_relay_log_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_replication_delay_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_rollback_on_timeout_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
innodb_rollback_segments_basic.test Recommitting the changes to push the code. 2011-08-08 17:01:09 +05:30
innodb_saved_page_number_debug_basic.test after merge test case fixes 2014-05-08 10:25:16 +02:00
innodb_sched_priority_cleaner_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_sched_priority_io_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_sched_priority_master_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_sched_priority_purge_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_show_locks_held_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_show_verbose_locks_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_sort_buffer_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_spin_wait_delay_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_stats_auto_recalc_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_stats_auto_update_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_stats_method_basic.test Recommitting the changes to push the code. 2011-08-08 17:01:09 +05:30
innodb_stats_on_metadata_basic.test Merge of compatibility fixes 2012-04-02 13:33:16 +03:00
innodb_stats_persistent_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
innodb_stats_persistent_sample_pages_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_stats_sample_pages_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_stats_transient_sample_pages_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_stats_update_need_lock_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_status_output_basic.test after InnoDB/XtraDB 5.6.16 merge 2014-05-06 13:57:56 +02:00
innodb_status_output_locks_basic.test after InnoDB/XtraDB 5.6.16 merge 2014-05-06 13:57:56 +02:00
innodb_strict_mode_basic.test Merge of compatibility fixes 2012-04-02 13:33:16 +03:00
innodb_support_xa_basic.test Merge of compatibility fixes 2012-04-02 13:33:16 +03:00
innodb_support_xa_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
innodb_sync_array_size_basic.test Percona-Server-5.6.14-rel62.0 merge 2013-12-22 17:06:50 +01:00
innodb_sync_spin_loops_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_table_locks_basic.test Merge of compatibility fixes 2012-04-02 13:33:16 +03:00
innodb_table_locks_func.test Bug #49269 mysqltest crashes on 'reap' if query executed after 'send' 2010-01-07 11:22:45 +01:00
innodb_thread_concurrency_basic.test Merged Performance Version 0.2.1 with latest 5.1 tree (last push 11 feb 14.01.13 2009) 2009-02-17 13:24:09 +01:00
innodb_thread_concurrency_timer_based_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_thread_sleep_delay_basic.test mysql-5.5.37 selective merge 2014-03-27 22:26:58 +01:00
innodb_track_changed_pages_basic.test mysql-5.5.34 merge 2013-11-19 13:16:25 +01:00
innodb_track_redo_log_now_basic.test mysql-5.5.34 merge 2013-11-19 13:16:25 +01:00
innodb_trx_purge_view_update_only_debug_basic.test merge with XtraDB as of Percona-Server-5.5.30-rel30.1 2013-03-08 19:08:45 +01:00
innodb_trx_rseg_n_slots_debug_basic.test merged with XtraDB 1.1.8-26.0 2012-06-15 14:54:23 +02:00
innodb_undo_directory_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_undo_logs_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_undo_tablespaces_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
innodb_use_atomic_writes_basic.test add missing tests 2013-04-14 10:00:42 +02:00
innodb_use_fallocate_basic.test add missing tests 2013-04-14 10:00:42 +02:00
innodb_use_global_flush_log_at_trx_commit_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_use_mtflush_basic.test Fix bug https://code.launchpad.net/~laurynas-biveinis/percona-server/bug1295268 2014-03-27 09:35:24 +02:00
innodb_use_native_aio_basic.test Add basic tests for new innodb features 2010-04-29 13:43:10 -04:00
innodb_use_stacktrace_basic.test Added test case for new system variable innodb_use_stacktrace and made sure that it can be used only on startup. Fixed compiler problems on solaris and other platforms that do not contain necessary headers and functions. 2013-11-15 15:24:42 +02:00
innodb_use_sys_malloc_basic.test disable sys_vars.innodb_use_sys_malloc_basic test for valgrind runs 2012-02-01 15:33:37 +01:00
innodb_use_sys_stats_table_basic.test merge with xtradb-5.5.15 2011-07-18 23:04:24 +02:00
innodb_use_trim_basic.test Fix bug https://code.launchpad.net/~laurynas-biveinis/percona-server/bug1295268 2014-03-27 09:35:24 +02:00
innodb_version_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
innodb_write_io_threads_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
insert_id_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
insert_id_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
interactive_timeout_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
interactive_timeout_func.test Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
join_buffer_size_basic.test Fixed tests that failed on 32 bit because of my earlier fixes of 32 bit limits. 2013-06-11 13:49:43 +03:00
join_buffer_space_limit_basic.test fixes for sys_vars and pbxt suites 2011-10-28 14:24:02 +02:00
join_cache_level_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
keep_files_on_create_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_buffer_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_buffer_size_func.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_cache_age_threshold_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
key_cache_block_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_cache_division_limit_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_cache_segments_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
large_files_support_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
large_page_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
large_pages_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
last_gtid_basic.test MDEV-4984: Implement MASTER_GTID_WAIT() and @@LAST_GTID. 2014-02-08 01:16:45 +01:00
last_insert_id_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
last_insert_id_func-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
last_insert_id_func.test post-push fix for bug#53947 2013-09-12 21:26:15 +02:00
lc_messages_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
lc_messages_dir_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
lc_time_names_basic.test MDEV-5851 MySQL WL#5303 Romansh locale for DAYNAME, MONTHNAME, DATE_FORMAT 2014-04-24 10:30:13 +04:00
lc_time_names_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
license_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
local_infile_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
local_infile_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
lock_wait_timeout_basic.test Bug #45225 Locking: hang if drop table with no timeout 2010-02-11 11:23:39 +01:00
locked_in_memory_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_bin_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_bin_trust_function_creators_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_bin_trust_function_creators_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
log_error_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_error_func.cnf Fix for BUG#51215 "log-error partially works with version 5.5": WL 4738 (reengineering of server variables) 2010-03-05 14:08:21 +01:00
log_error_func.test Fix for BUG#51215 "log-error partially works with version 5.5": WL 4738 (reengineering of server variables) 2010-03-05 14:08:21 +01:00
log_error_func2.cnf Fix for BUG#51215 "log-error partially works with version 5.5": WL 4738 (reengineering of server variables) 2010-03-05 14:08:21 +01:00
log_error_func2.test Fix for BUG#51215 "log-error partially works with version 5.5": WL 4738 (reengineering of server variables) 2010-03-05 14:08:21 +01:00
log_error_func3.test Fix for BUG#51215 "log-error partially works with version 5.5": WL 4738 (reengineering of server variables) 2010-03-05 14:08:21 +01:00
log_output_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_output_func.test 2. review update for bug#52501 fixing a syntax error, a not actual result file and replaced directory info by place holder. 2010-11-11 11:25:03 +01:00
log_queries_not_using_indexes_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_slave_updates_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_slow_filter_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
log_slow_rate_limit_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
log_slow_verbosity_basic.test Update tests: log_slow_verbosity now supports query_plan=explan. 2013-10-11 12:40:25 +04:00
log_warnings_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
long_query_time_basic.test Manual merge of WL#4738 from mysql-next-mr: 2009-12-28 15:54:16 +03:00
low_priority_updates_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
lower_case_file_system_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
lower_case_table_names_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
master_verify_checksum_basic.test Backport MySQL WL#2540 into MariaDB. 2011-05-03 14:01:11 +02:00
max_allowed_packet_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_allowed_packet_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
max_binlog_cache_size_basic.test Fixed tests that failed on 32 bit because of my earlier fixes of 32 bit limits. 2013-06-11 13:49:43 +03:00
max_binlog_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_binlog_stmt_cache_size_basic.test Fixed tests that failed on 32 bit because of my earlier fixes of 32 bit limits. 2013-06-11 13:49:43 +03:00
max_connect_errors_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
max_connections_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_delayed_threads_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_error_count_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_heap_table_size_basic.test Fix sys_vars test suite for 32bit systems. (MDEV-53 & MDEV-53) 2012-01-09 15:02:02 +02:00
max_insert_delayed_threads_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_join_size_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
max_join_size_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
max_length_for_sort_data_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_long_data_size_basic.test Manual merge from mysql-5.1 for Bug#11764168 (56976: Severe denial 2011-03-15 18:57:36 +06:00
max_prepared_stmt_count_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_prepared_stmt_count_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
max_relay_log_size_basic.test Merge mariadb-5.5 -> 10.0-base. 2012-12-16 16:49:19 -08:00
max_seeks_for_key_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
max_seeks_for_key_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
max_sort_length_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_sort_length_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
max_sp_recursion_depth_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_sp_recursion_depth_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
max_statement_time_basic.test MDEV 4427: query timeouts 2014-10-07 11:37:36 +03:00
max_tmp_tables_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
max_user_connections-2.test 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
max_user_connections_basic-master.opt 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
max_user_connections_basic.test 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
max_user_connections_func-master.opt 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
max_user_connections_func.test 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
max_write_lock_count_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
maximum_basic-master.opt WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
maximum_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
metadata_locks_cache_size_basic-master.opt Fix for bug#12695572 - "IMPROVE MDL PERFORMANCE IN PRE-VISTA 2011-11-15 22:00:14 +04:00
metadata_locks_cache_size_basic.test Fix for bug#12695572 - "IMPROVE MDL PERFORMANCE IN PRE-VISTA 2011-11-15 22:00:14 +04:00
metadata_locks_hash_instances_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
min_examined_row_limit_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
mrr_buffer_size_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
multi_range_count_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
mutex_deadlock_detector_basic.test mysql-5.5.18 merge 2011-11-03 19:17:05 +01:00
myisam_block_size_basic.test fixes for sys_vars and pbxt suites 2011-10-28 14:24:02 +02:00
myisam_data_pointer_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_data_pointer_size_func-master.opt Fix for bug#52501 consisting of changes of some sys_vars tests including review results. 2010-11-08 16:30:26 +01:00
myisam_data_pointer_size_func.test Fix for bug#52501 consisting of changes of some sys_vars tests including review results. 2010-11-08 16:30:26 +01:00
myisam_max_sort_file_size_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
myisam_mmap_size_basic.test 32-bit fix 2009-12-22 12:05:51 +01:00
myisam_recover_options_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_repair_threads_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
myisam_sort_buffer_size_basic.test Added some fixes that should make MyISAM & Aria REPAIR work with more than 4G records 2013-05-10 12:32:34 +03:00
myisam_stats_method_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_stats_method_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
myisam_use_mmap_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
named_pipe_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
net_buffer_length_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
net_read_timeout_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
net_retry_count_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
net_write_timeout_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
old_alter_table_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
old_basic.test merge with 5.3 2011-10-19 21:45:18 +02:00
old_mode_basic.test @@old_mode=zero_date_time_cast 2014-03-07 21:05:28 +01:00
old_passwords_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
old_passwords_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
open_files_limit_basic.test don't show the value of open_files_limit 2009-12-26 09:35:42 +01:00
optimizer_prune_level_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
optimizer_search_depth_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
optimizer_selectivity_sampling_limit_basic.test MDEV-4345: fixed optimizer_selectivity_sampling_limit default value. 2013-04-19 19:35:13 +03:00
optimizer_switch_basic.test MDEV-69 SET optimizer_switch = REPLACE(...) causes ER_WRONG_VALUE_FOR_VAR 2012-01-17 10:55:27 +01:00
optimizer_use_condition_selectivity_basic.test MDEV-4345: Fixed system variables tests. 2013-04-19 18:59:46 +03:00
oqgraph_allow_create_integer_latch_basic.test MDEV-5319 - Request for merge of Oqgraph v3 functionality 2013-12-16 13:55:43 +04:00
performance_schema_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
performance_schema_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_accounts_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_accounts_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_digests_size-master_basic.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_digests_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_stages_history_long_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_stages_history_long_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_stages_history_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_stages_history_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_statements_history_long_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_statements_history_long_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_statements_history_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_statements_history_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_events_waits_history_long_size_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_events_waits_history_long_size_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_events_waits_history_size_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_events_waits_history_size_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_hosts_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_hosts_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_cond_classes_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_cond_classes_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_cond_instances_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_cond_instances_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_file_classes_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_file_classes_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_file_handles_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_file_handles_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_file_instances_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_file_instances_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_mutex_classes_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_mutex_classes_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_mutex_instances_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_mutex_instances_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_rwlock_classes_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_rwlock_classes_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_rwlock_instances_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_rwlock_instances_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_socket_classes_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_socket_classes_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_socket_instances_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_socket_instances_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_stage_classes_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_stage_classes_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_statement_classes_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_statement_classes_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_max_table_handles_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_table_handles_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_table_instances_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_table_instances_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_thread_classes_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_thread_classes_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_max_thread_instances_basic-master.opt WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_thread_instances_basic.test Removing copyright headers from test files 2011-10-19 23:44:17 +02:00
pfs_session_connect_attrs_size_basic-master.opt sys_var suite passes 2013-07-13 09:22:00 +02:00
pfs_session_connect_attrs_size_basic.test sys_var suite passes 2013-07-13 09:22:00 +02:00
pfs_setup_actors_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_setup_actors_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_setup_objects_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_setup_objects_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_users_size_basic-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
pfs_users_size_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
pid_file_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
plugin_dir_basic-master.opt Bug #11759877 52223: TEST "PLUGIN_DIR_BASIC" DOES NOT SUPPORT RPM BUILD (TEST) DIRECTORY STRUC 2011-08-16 11:08:10 +02:00
plugin_dir_basic.test Bug #11759877 52223: TEST "PLUGIN_DIR_BASIC" DOES NOT SUPPORT RPM BUILD (TEST) DIRECTORY STRUC 2011-08-16 11:08:10 +02:00
plugin_maturity_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
port_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
preload_buffer_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
profiling_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
profiling_history_size_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
progress_report_time_basic.test fixes for sys_vars and pbxt suites 2011-10-28 14:24:02 +02:00
protocol_version_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
proxy_user_basic.test WL#1054: Pluggable authentication support 2010-08-09 11:32:50 +03:00
pseudo_slave_mode_basic.test BUG#15891524: RLI_FAKE MODE IS NOT UNSET AFTER BINLOG REPLAY 2012-11-20 12:37:23 +00:00
pseudo_thread_id_basic.test remove one particularly stupid test 2013-01-23 14:58:05 +01:00
query_alloc_block_size_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
query_cache_limit_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
query_cache_limit_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
query_cache_min_res_unit_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
query_cache_size_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
query_cache_strip_comments_basic.test after merge changes: 2011-12-12 23:58:40 +01:00
query_cache_type_basic.test merge with 5.3 2011-10-19 21:45:18 +02:00
query_cache_type_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
query_cache_wlock_invalidate_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_wlock_invalidate_func.test merge with 5.3 2011-10-19 21:45:18 +02:00
query_prealloc_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_prealloc_size_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
rand_seed1_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
rand_seed2_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
range_alloc_block_size_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
read_buffer_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
read_only_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
read_only_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
read_rnd_buffer_size_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_index_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_info_file_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_purge_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
relay_log_recovery_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
relay_log_space_limit_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
replicate_annotate_row_events_basic.test 5.3->5.5 merge 2011-11-22 18:04:38 +01:00
replicate_do_db_basic.test Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
replicate_do_table_basic.test Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
replicate_events_marked_for_skip_basic.test replicate_events_marked_for_skip does not exist in embedded. 2012-03-01 16:06:27 +01:00
replicate_ignore_db_basic.test Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
replicate_ignore_table_basic.test Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
replicate_wild_do_table_basic.test Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
replicate_wild_ignore_table_basic.test Make Replication filter settings dynamic. 2012-03-19 15:00:23 -07:00
report_host_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
report_password_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
report_port_basic.test BUG#13333431 - INCORRECT DEFAULT PORT IN 'SHOW SLAVE HOSTS' OUTPUT 2012-02-28 14:02:27 +05:30
report_user_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
rowid_merge_buff_size_basic.test fix for 64bit windows 2012-01-11 10:26:35 +02:00
rpl_init_slave_func.test BUG#12535301- SYS_VARS.RPL_INIT_SLAVE_FUNC MISMATCHES IN DAILY-5.5 2013-07-23 18:18:19 +05:30
rpl_max_binlog_size_func-master.opt fixes for test failures 2012-09-27 20:09:46 +02:00
rpl_max_binlog_size_func.test Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
rpl_recovery_rank_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
rpl_semi_sync_master_enabled_basic.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00
rpl_semi_sync_master_timeout_basic.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00
rpl_semi_sync_master_trace_level_basic.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00
rpl_semi_sync_master_wait_no_slave_basic.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00
rpl_semi_sync_slave_enabled_basic.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00
rpl_semi_sync_slave_trace_level_basic.test MDEV-4254 Semisync plugins to link statically into MariaDB 2013-04-09 23:28:21 +02:00
secure_auth_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
secure_auth_func-master.opt WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
secure_auth_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
secure_file_priv-master.opt Bug#50373 --secure-file-priv="" 2010-04-16 16:10:47 +02:00
secure_file_priv.test test fixes after 56753 2010-09-21 11:16:20 +02:00
secure_file_priv2-master.opt Bug58747 57359 patch: breaks secure_file_priv+not secure yet+still accesses other folders 2010-12-16 11:49:40 +01:00
secure_file_priv2.test Bug58747 57359 patch: breaks secure_file_priv+not secure yet+still accesses other folders 2010-12-16 11:49:40 +01:00
secure_file_priv_basic.test Post-fix for Bug#50373: sys_vars.secure_file_priv_basic can not be run 2010-05-12 14:42:39 +04:00
server_id_basic.test MDEV-26: Global transaction ID 2013-03-26 10:35:34 +01:00
shared_memory_base_name_basic.test Assorted fixes for test failures. 2010-11-22 14:10:44 -02:00
shared_memory_basic.test Do not run shared memory sys_vars tests in embedded 2010-02-21 15:10:52 +01:00
skip_external_locking_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
skip_name_resolve_basic-master.opt Added a test for skip_name_resolve to the sys_vars suite. 2010-04-20 11:32:39 +04:00
skip_name_resolve_basic.test Added a test for skip_name_resolve to the sys_vars suite. 2010-04-20 11:32:39 +04:00
skip_networking_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
skip_replication_basic.test Merge MWL#234: @@skip_replication feature to MariaDB 5.5. 2012-03-01 12:41:49 +01:00
skip_show_database_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_allow_batching_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_compressed_protocol_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
slave_ddl_exec_mode_basic.test Replication changes for CREATE OR REPLACE TABLE 2014-02-05 19:01:59 +02:00
slave_domain_parallel_threads_basic.test MDEV-5657: Parallel replication. 2014-02-26 15:02:09 +01:00
slave_exec_mode_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_load_tmpdir_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_max_allowed_packet_basic.test BUG#12400221 - 60926: BINARY LOG EVENTS LARGER THAN MAX_ALLOWED_PACKET 2012-06-12 12:59:56 +05:30
slave_net_timeout_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_parallel_max_queued_basic.test MDEV-4506: Parallel replication. 2013-10-24 12:44:21 +02:00
slave_parallel_threads_basic.test MDEV-4506: Parallel replication: Intermediate commit. 2013-07-09 13:15:53 +02:00
slave_run_triggers_for_rbr_basic.test Basic test of slave_run_triggers_for_rbr variable added. 2014-08-13 15:32:04 +03:00
slave_skip_errors_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_sql_verify_checksum_basic.test Backport MySQL WL#2540 into MariaDB. 2011-05-03 14:01:11 +02:00
slave_transaction_retries_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
slave_type_conversions_basic.test Makes slave_type_conversions_basic to be skipped in embedded 2010-01-13 08:29:23 +00:00
slow_launch_time_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slow_launch_time_func.test make sys_vars suite pass 2011-12-20 22:49:24 +01:00
slow_query_log_basic.test Made sql_log_slow a session variable 2014-08-09 13:22:01 +03:00
slow_query_log_file_basic-master.opt merge of 5.1-main into 5.1-maria. Myisam->Maria change propagation will follow. 2009-02-12 15:08:56 +01:00
slow_query_log_file_basic.test mysql-5.5.37 selective merge 2014-03-27 22:26:58 +01:00
slow_query_log_file_func-master.opt merge of 5.1-main into 5.1-maria. Myisam->Maria change propagation will follow. 2009-02-12 15:08:56 +01:00
slow_query_log_file_func.test merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
slow_query_log_func.test Made sql_log_slow a session variable 2014-08-09 13:22:01 +03:00
socket_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sort_buffer_size_basic.test MDEV-4629 MTR tests main.variables and some of sys_vars.* fail on 32-bit builds 2013-06-12 05:09:28 +04:00
sql_auto_is_null_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_big_selects_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_big_selects_func.test MDEV-4865 Change related to --log option/variable was merged partially 2013-08-13 13:35:36 +02:00
sql_buffer_result_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_buffer_result_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
sql_log_bin_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_log_off_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_log_off_func-master.opt Fix for bug#52501 consisting of changes of some sys_vars tests including review results. 2010-11-08 16:30:26 +01:00
sql_log_off_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
sql_low_priority_updates_func.test Implementation of MWL#172: Add support for prepared statements to HANDLER READ 2011-01-04 00:55:41 +02:00
sql_mode_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_mode_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
sql_notes_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_notes_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
sql_quote_show_create_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_quote_show_create_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
sql_safe_updates_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_safe_updates_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
sql_select_limit_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
sql_select_limit_func.test backport of guilhem@mysql.com-20100628140739-i9vy8ugxp1v5aspb 2010-07-08 14:36:10 +02:00
sql_slave_skip_counter_basic.test Implementation of Multi-source replication (MDEV:253) 2012-10-04 01:37:58 +03:00
sql_warnings_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_warnings_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
ssl_ca_basic.test more fixes for test cases 2012-10-01 13:15:29 +02:00
ssl_capath_basic.test Bug #42778: delete order by null global variable causes 2009-05-22 01:22:46 +05:00
ssl_cert_basic.test more fixes for test cases 2012-10-01 13:15:29 +02:00
ssl_cipher_basic.test Bug #42778: delete order by null global variable causes 2009-05-22 01:22:46 +05:00
ssl_crl_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
ssl_crlpath_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
ssl_key_basic.test more fixes for test cases 2012-10-01 13:15:29 +02:00
storage_engine_basic-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
storage_engine_basic.test MySQL-5.5.35 merge 2014-01-22 15:29:36 +01:00
stored_program_cache_basic.test Fixed bug#11753187 (formerly known as bug 44585): SP_CACHE BEHAVES AS 2012-01-25 15:59:30 +06:00
sync_binlog_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sync_frm_basic.test merge. 2010-11-25 18:17:28 +01:00
sync_master_info_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sync_relay_log_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sync_relay_log_info_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
system_time_zone_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
table_definition_cache_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
table_open_cache_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
table_open_cache_instances_basic.test MDEV-4702 - Reduce usage of LOCK_open 2013-08-14 12:48:50 +04:00
thread_cache_size_basic.test Modified and added tests following review of WL#4738. 2010-01-28 22:33:00 -08:00
thread_cache_size_func.test make sys_vars suite pass 2011-12-20 22:49:24 +01:00
thread_concurrency_basic.test Bug#55001 Change in behavior: thread_concurrency (docs, 2010-08-16 15:05:01 +02:00
thread_handling_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
thread_pool_idle_timeout_basic.test disable threadpool threads in sys_var suite, when the suite runs with embedded server 2011-12-27 17:54:04 +01:00
thread_pool_max_threads_basic.test disable threadpool threads in sys_var suite, when the suite runs with embedded server 2011-12-27 17:54:04 +01:00
thread_pool_min_threads_basic.test add test thread_pool_min_basic 2012-01-25 03:59:09 +01:00
thread_pool_oversubscribe_basic.test Allow for faster creation of threads in corner cases where pool would be overloaded with long non-yielding queries. 2011-12-31 05:24:11 +01:00
thread_pool_size_basic.opt MDEV-5205 - MariaDB does not start if more than 128 cpu's are available 2013-11-05 09:18:59 +04:00
thread_pool_size_basic.test MDEV-5205 - MariaDB does not start if more than 128 cpu's are available 2013-11-05 09:18:59 +04:00
thread_pool_size_high.opt MDEV-5205 - MariaDB does not start if more than 128 cpu's are available 2013-11-05 09:18:59 +04:00
thread_pool_size_high.test MDEV-5205 - MariaDB does not start if more than 128 cpu's are available 2013-11-05 09:18:59 +04:00
thread_pool_stall_limit_basic.test disable threadpool threads in sys_var suite, when the suite runs with embedded server 2011-12-27 17:54:04 +01:00
thread_stack_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
time_format_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
time_zone_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
time_zone_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
timed_mutexes_basic.test This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
timestamp_basic.test merge with 5.3 2011-10-19 21:45:18 +02:00
timestamp_func.test Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
timestamp_sysdate_is_now_func-master.opt WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
timestamp_sysdate_is_now_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
tmp_table_size_basic.test Fix for bug#52501 consisting of changes of some sys_vars tests including review results. 2010-11-08 16:30:26 +01:00
tmpdir_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
transaction_alloc_block_size_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
transaction_prealloc_size_basic.test Dependency of tests from ulong size removed. 2012-04-19 17:00:13 +03:00
transaction_prealloc_size_bug27322.test cleanup: 2013-01-23 16:19:37 +01:00
tx_isolation_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
tx_isolation_func-master.opt generalization of mtr to support suite.pm extensions: 2010-08-17 11:14:46 +04:00
tx_isolation_func.test post-push fix for bug#53947 2013-09-12 21:26:15 +02:00
tx_read_only_basic.test fixes for test failures 2012-09-27 20:09:46 +02:00
unique_checks_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
updatable_views_with_limit_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
updatable_views_with_limit_func.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
use_stat_tables_basic.test Removed the server option --stat-tables. 2012-06-02 17:19:01 -07:00
userstat_basic.test lots of post-merge changes 2011-04-25 17:22:25 +02:00
version_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
version_comment_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
version_compile_machine_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
version_compile_os_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
version_malloc_library_basic.test Cleanups: 2014-01-09 22:01:12 +02:00
wait_timeout_basic.test WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
wait_timeout_func.test Updates tests to handle thread pool correctly 2011-01-14 09:28:23 +01:00
warning_count_basic.test WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests. 2008-12-19 16:03:32 +01:00
wsrep_auto_increment_control_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_causal_reads_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_certify_nonpk_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_cluster_address_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_cluster_name_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_convert_lock_to_trx_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_data_home_dir_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_dbug_option_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_debug_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_desync_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_drupal_282555_workaround_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_forced_binlog_format_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_load_data_splitting_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_log_conflicts_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_max_ws_rows_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_max_ws_size_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_mysql_replication_bundle_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_node_address_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_node_incoming_address_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_node_name_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_notify_cmd_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_on_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_osu_method_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_provider_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_provider_options_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_recover_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_replicate_myisam_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_restart_slave_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_retry_autocommit_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_slave_fk_checks_basic.test MDEV-6247: Merge 10.0-galera to 10.1. 2014-08-26 15:43:46 +03:00
wsrep_slave_threads_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_slave_uk_checks_basic.test MDEV-6247: Merge 10.0-galera to 10.1. 2014-08-26 15:43:46 +03:00
wsrep_sst_auth_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_sst_donor_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_sst_donor_rejects_queries_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_sst_method_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_sst_receive_address_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_start_position_basic.test Merged sys_vars.wsrep_* tests from maria-10.0-galera tree. 2014-09-08 13:19:20 -04:00
wsrep_sync_wait_basic.test MDEV-6247: Merge 10.0-galera to 10.1. 2014-08-26 15:43:46 +03:00