mariadb/mysql-test/suite/sys_vars/r
Alfranio Correia 4009bf1a15 BUG#46364 MyISAM transbuffer problems (NTM problem)
It is well-known that due to concurrency issues, a slave can become
inconsistent when a transaction contains updates to both transaction and
non-transactional tables.
                    
In a nutshell, the current code-base tries to preserve causality among the
statements by writing non-transactional statements to the txn-cache which
is flushed upon commit. However, modifications done to non-transactional
tables on behalf of a transaction become immediately visible to other
connections but may not immediately get into the binary log and therefore
consistency may be broken.
            
In general, it is impossible to automatically detect causality/dependency
among statements by just analyzing the statements sent to the server. This
happen because dependency may be hidden in the application code and it is
necessary to know a priori all the statements processed in the context of
a transaction such as in a procedure. Moreover, even for the few cases that
we could automatically address in the server, the computation effort
required could make the approach infeasible.
            
So, in this patch we introduce the option
      - "--binlog-direct-non-transactional-updates" that can be used to bypass
      the current behavior in order to write directly to binary log statements
      that change non-transactional tables.

Besides, it is used to enable the WL#2687 which is disabled by default.

mysql-test/extra/rpl_tests/rpl_binlog_max_cache_size.test:
  Changes the result set as the STMT mode behaves as both the ROW and MIXED modes and as such uses the non-trx-cache and takes longer to fill the trx-cache up and trigger an error.
mysql-test/extra/rpl_tests/rpl_implicit_commit_binlog.test:
  Changes the result set as the STMT mode behaves as both the ROW and MIXED modes and as such uses the non-trx-cache. It also fixes comments.
mysql-test/extra/rpl_tests/rpl_mixing_engines.test:
  The STMT mode is unsafe when mixed-statements are executed thus making slaves to go out of sync. For that reason, it checks consistency if not in STMT mode.
mysql-test/include/default_mysqld.cnf:
  Makes binlog-direct-non-transactional-updates "TRUE" by default in the test
  cases.
mysql-test/r/mysqld--help-notwin.result:
  Updates the result file with the new option.
mysql-test/r/mysqld--help-win.result:
  Updates the result file with the new option.
mysql-test/suite/binlog/r/binlog_multi_engine.result:
  Updates the result file because non-trx-changes are written ahead of the
  transaction.
mysql-test/suite/binlog/r/binlog_switch_inside_trans.result:
  Verifies if the user cannot change the opion binlog_direct_non_transactional_updates
  within a transaction or a procedure/function/trigger.
mysql-test/suite/binlog/t/binlog_stm_mix_innodb_myisam-master.opt:
  Sets binlog_direct_non_transactional_updates to FALSE in order to avoid changing
  the test case and its result file.
mysql-test/suite/binlog/t/binlog_switch_inside_trans.test:
  Verifies if the user cannot change the opion binlog_direct_non_transactional_updates
  within a transaction or a procedure/function/trigger.
mysql-test/suite/ndb/r/ndb_binlog_format.result:
  Updates the result file because non-trx-changes are written ahead of the
  transaction.
mysql-test/suite/rpl/r/rpl_begin_commit_rollback.result:
  Sets binlog_direct_non_transactional_updates to FALSE in order to avoid changing the test case and its result file.
mysql-test/suite/rpl/r/rpl_concurrency_error.result:
  Updates the result file because non-trx-changes are written ahead of the
  transaction
mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result:
  Updates the result file because non-trx-changes are written ahead of the
  transaction.
mysql-test/suite/rpl/r/rpl_mixed_mixing_engines.result:
  Updates the result file because non-trx-changes are written ahead of the
  transaction.
mysql-test/suite/rpl/r/rpl_stm_binlog_max_cache_size.result:
  Changes the result set as the STMT mode behaves as both the ROW and MIXED modes and as such uses the non-trx-cache and takes longer to fill the trx-cache up and trigger an error.
mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result:
  Updates the result file because non-trx-changes are written ahead of the
  transaction.
mysql-test/suite/rpl/r/rpl_stm_mixing_engines.result:
  Updates the result file because non-trx-changes are written ahead of the
  transaction.
mysql-test/suite/rpl/r/rpl_stm_start_stop_slave.result:
  Sets binlog_direct_non_transactional_updates to FALSE in order to avoid changing the test case and its result file.
mysql-test/suite/rpl/r/rpl_stm_stop_middle_group.result:
  Sets binlog_direct_non_transactional_updates to FALSE in order to avoid changing the test case and its result file.
mysql-test/suite/rpl/t/rpl_begin_commit_rollback.test:
  Sets binlog_direct_non_transactional_updates to FALSE in order to avoid changing the test case and its result file.
mysql-test/suite/rpl/t/rpl_stm_start_stop_slave.test:
  Sets binlog_direct_non_transactional_updates to FALSE in order to avoid changing the test case and its result file.
mysql-test/suite/rpl/t/rpl_stm_stop_middle_group.test:
  Sets binlog_direct_non_transactional_updates to FALSE in order to avoid changing the test case and its result file.
sql/log.cc:
  Verifies if changes should be written to either the trx-cache or non-trx-cache through the use of the function use_trans_cache(). It also organizes the code.
sql/log.h:
  Changes the signature of some functions by adding the modifier "const" to the thd parameter. Specifically, the following functions are changed: 
          bool trans_has_updated_trans_table(const THD* thd);
          bool stmt_has_updated_trans_table(const THD *thd);
          bool use_trans_cache(const THD*, bool is_transactional);
sql/share/errmsg-utf8.txt:
  Creates error messages to report when an user tries to change the new option
  binlog_direct_non_transactional_updates within a transaction or a procedure/
  function/trigger.
sql/share/errmsg.txt:
  Creates error messages to report when an user tries to change the new option
  binlog_direct_non_transactional_updates within a transaction or a procedure/
  function/trigger.
sql/sql_class.h:
  Adds the new option binlog_direct_non_transactional_updates.
sql/sys_vars.cc:
  Adds the new option binlog_direct_non_transactional_updates.
support-files/my-small.cnf.sh:
  Adds binlog-direct-non-transactional-updates to the example file. By default
  the option is disabled.
2010-01-21 13:10:34 +00:00
..
all_vars.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
auto_increment_increment_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
auto_increment_increment_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
auto_increment_offset_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
auto_increment_offset_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
autocommit_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
autocommit_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
automatic_sp_privileges_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
automatic_sp_privileges_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
basedir_basic.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
binlog_cache_size_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
binlog_cache_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
binlog_direct_non_transactional_updates_basic.result BUG#46364 MyISAM transbuffer problems (NTM problem) 2010-01-21 13:10:34 +00:00
binlog_format_basic.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
bulk_insert_buffer_size_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
bulk_insert_buffer_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_client_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_client_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_connection_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_connection_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
character_set_database_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_database_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_filesystem_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_results_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_results_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
character_set_server_func.result 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.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
collation_connection_basic.result 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_connection_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
collation_database_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
collation_server_basic.result 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_server_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
completion_type_func.result Bug#40178: Test main.completion_type_func does not clean up / needs to be rewritten 2009-02-24 16:20:00 +02:00
concurrent_insert_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
concurrent_insert_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
connect_timeout_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
datadir_basic.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
datetime_format_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
debug_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
debug_sync_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
default_storage_engine_basic.result minimal changes to errmst-utf8.txt (mostly whitespace) to match 6.0-codebase better 2009-12-22 12:02:52 +01:00
default_week_format_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
default_week_format_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
delay_key_write_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
delayed_insert_limit_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
delayed_insert_limit_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
delayed_insert_limit_func.result due to merge. 2010-01-20 14:22:49 +01:00
delayed_insert_timeout_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
delayed_queue_size_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
delayed_queue_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
div_precision_increment_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
div_precision_increment_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
engine_condition_pushdown_basic.result WL#5197 "Move @@engine_condition_pushdown to @@optimizer_switch" 2010-01-06 11:54:45 +01:00
error_count_basic.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
expire_logs_days_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
flush_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
flush_time_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
foreign_key_checks_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
foreign_key_checks_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_boolean_syntax_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_boolean_syntax_func.result Manual merge of WL#4738 from mysql-next-mr: 2009-12-28 15:54:16 +03:00
ft_max_word_len_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_min_word_len_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_query_expansion_limit_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ft_stopword_file_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
general_log_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
general_log_file_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
general_log_file_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
general_log_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
group_concat_max_len_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
group_concat_max_len_func.result Backport of Bug#36785 to mysql-next-mr 2009-11-10 16:26:39 -02:00
have_compress_basic.result 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.result 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_csv_basic.result 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.result 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.result 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_innodb_basic.result 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_ndbcluster_basic.result 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.result 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_partitioning_basic.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
have_query_cache_basic.result 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.result 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.result 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.result 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
hostname_basic.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
identity_func.result 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
ignore_builtin_innodb_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
init_connect_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
init_file_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
init_slave_basic.result 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_additional_mem_pool_size_basic.result 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_autoextend_increment_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_autoinc_lock_mode_basic.result 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_autoinc_lock_mode_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
innodb_buffer_pool_size_basic.result 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_checksums_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
innodb_commit_concurrency_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_concurrency_tickets_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_data_file_path_basic.result 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.result Bug #42778: delete order by null global variable causes 2009-05-22 01:22:46 +05:00
innodb_doublewrite_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
innodb_fast_shutdown_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_file_io_threads_basic.result 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.result Fixes to tests and their results, to account for differences between InnoDB 1.0.4 and the old builtin. 2009-08-07 22:04:53 +02:00
innodb_flush_log_at_trx_commit_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_flush_method_basic.result Bug #42778: delete order by null global variable causes 2009-05-22 01:22:46 +05:00
innodb_force_recovery_basic.result 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_lock_wait_timeout_basic.result Fixes to tests and their results, to account for differences between InnoDB 1.0.4 and the old builtin. 2009-08-07 22:04:53 +02:00
innodb_locks_unsafe_for_binlog_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
innodb_log_buffer_size_basic.result 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_file_size_basic.result 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.result 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.result 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_max_dirty_pages_pct_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_max_dirty_pages_pct_func.result Fix for bug#39382 including review results after pulling the bugteam tree now using the new mtr. 2009-01-30 17:59:10 +01:00
innodb_max_purge_lag_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_mirrored_log_groups_basic.result 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_open_files_basic.result 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_rollback_on_timeout_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
innodb_support_xa_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_support_xa_func.result 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_spin_loops_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_table_locks_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_table_locks_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
innodb_thread_concurrency_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
innodb_thread_sleep_delay_basic.result 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
insert_id_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
insert_id_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
interactive_timeout_func.result 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_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
join_buffer_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
keep_files_on_create_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_buffer_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_buffer_size_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_cache_age_threshold_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_cache_age_threshold_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_cache_block_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_cache_division_limit_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
large_files_support_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
large_page_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
large_pages_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
last_insert_id_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
last_insert_id_func.result 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
lc_messages_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
lc_messages_dir_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
lc_time_names_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
lc_time_names_func.result 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.result 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.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
local_infile_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
locked_in_memory_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_bin_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_bin_trust_function_creators_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_bin_trust_function_creators_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
log_error_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_output_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_output_func.result 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
log_queries_not_using_indexes_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_slave_updates_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_slow_queries_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_warnings_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
log_warnings_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
long_query_time_basic.result Manual merge of WL#4738 from mysql-next-mr: 2009-12-28 15:54:16 +03:00
low_priority_updates_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
lower_case_file_system_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
lower_case_table_names_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_allowed_packet_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_allowed_packet_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
max_binlog_cache_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_binlog_cache_size_func.result 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_binlog_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_connect_errors_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_connect_errors_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_connections_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_delayed_threads_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_error_count_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_heap_table_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_insert_delayed_threads_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_join_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_join_size_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_prepared_stmt_count_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_prepared_stmt_count_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_seeks_for_key_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_seeks_for_key_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_seeks_for_key_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
max_sort_length_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_sort_length_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
max_sp_recursion_depth_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_sp_recursion_depth_func.result 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_tmp_tables_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_tmp_tables_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_user_connections_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_user_connections_func.result 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_write_lock_count_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
max_write_lock_count_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
maximum_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
min_examined_row_limit_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
min_examined_row_limit_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
multi_range_count_basic_32.result Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
multi_range_count_basic_64.result Fix belonging to bug#42838: Though this bug is only for 6.0 I put in some updated result files for 6.0 and this are the corrsponding resul files for 5.1, so that sys_vars should then run successfully also in 5.1. 2009-04-03 11:37:48 +02:00
myisam_data_pointer_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_data_pointer_size_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_max_sort_file_size_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_max_sort_file_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_mmap_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_recover_options_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_repair_threads_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_repair_threads_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_sort_buffer_size_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_sort_buffer_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_stats_method_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
myisam_stats_method_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
myisam_use_mmap_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
named_pipe_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ndb_log_update_as_write_basic.result 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
ndb_log_updated_only_basic.result 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
net_buffer_length_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
net_read_timeout_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
net_retry_count_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
net_retry_count_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
net_write_timeout_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
new_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
old_alter_table_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
old_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
old_passwords_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
old_passwords_func.result 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.result don't show the value of open_files_limit 2009-12-26 09:35:42 +01:00
optimizer_prune_level_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
optimizer_search_depth_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
optimizer_switch_basic.result WL#5197 "Move @@engine_condition_pushdown to @@optimizer_switch" 2010-01-06 11:54:45 +01:00
performance_schema_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_events_waits_history_long_size_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_events_waits_history_size_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_cond_classes_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_cond_instances_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_file_classes_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_file_handles_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_file_instances_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_mutex_classes_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_mutex_instances_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_rwlock_classes_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_rwlock_instances_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_table_handles_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_table_instances_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_thread_classes_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pfs_max_thread_instances_basic.result WL#2360 Performance schema 2010-01-06 22:42:07 -07:00
pid_file_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
plugin_dir_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
port_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
preload_buffer_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
profiling_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
profiling_history_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
protocol_version_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
pseudo_thread_id_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_alloc_block_size_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_alloc_block_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_limit_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_limit_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_limit_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
query_cache_min_res_unit_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_min_res_unit_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_size_basic_32.result Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
query_cache_size_basic_64.result Fix belonging to bug#42838: Though this bug is only for 6.0 I put in some updated result files for 6.0 and this are the corrsponding resul files for 5.1, so that sys_vars should then run successfully also in 5.1. 2009-04-03 11:37:48 +02:00
query_cache_type_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_type_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
query_cache_wlock_invalidate_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_wlock_invalidate_func.result Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
query_prealloc_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_prealloc_size_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
rand_seed1_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
rand_seed2_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
range_alloc_block_size_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
range_alloc_block_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
read_buffer_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
read_only_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
read_only_func.result Backport Post fix of result files after push of BUG#34227 2009-10-02 17:12:10 +08:00
read_rnd_buffer_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_index_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_info_file_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_purge_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
relay_log_recovery_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
relay_log_space_limit_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
report_host_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
report_password_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
report_port_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
report_user_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
rpl_init_slave_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
rpl_max_binlog_size_func.result 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_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
rpl_recovery_rank_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
secure_auth_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
secure_auth_func.result 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_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
server_id_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
shared_memory_base_name_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
shared_memory_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
skip_external_locking_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
skip_networking_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
skip_show_database_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_allow_batching_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_compressed_protocol_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
slave_exec_mode_basic.result 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
slave_load_tmpdir_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_net_timeout_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_skip_errors_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_transaction_retries_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_transaction_retries_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slave_type_conversions_basic.result Fixes for three test failures: 2010-01-12 17:52:02 +00:00
slow_launch_time_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slow_launch_time_func.result 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
slow_query_log_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
slow_query_log_file_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
slow_query_log_file_func.result merge: 5.1 -> 5.1-rpl-merge 2009-01-29 17:59:46 +01:00
slow_query_log_func.result Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
socket_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sort_buffer_size_basic_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sort_buffer_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_auto_is_null_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_big_selects_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_big_selects_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_big_tables_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_big_tables_func.result 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_buffer_result_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_buffer_result_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_log_off_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_log_off_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_log_update_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_low_priority_updates_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_low_priority_updates_func.result Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
sql_max_join_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_max_join_size_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_mode_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_mode_func.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_notes_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_notes_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_quote_show_create_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_safe_updates_func.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_select_limit_func.result 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_slave_skip_counter_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_warnings_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sql_warnings_func.result 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.result 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_capath_basic.result Bug #42778: delete order by null global variable causes 2009-05-22 01:22:46 +05:00
ssl_cert_basic.result 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_cipher_basic.result Bug #42778: delete order by null global variable causes 2009-05-22 01:22:46 +05:00
ssl_key_basic.result 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
storage_engine_basic.result minimal changes to errmst-utf8.txt (mostly whitespace) to match 6.0-codebase better 2009-12-22 12:02:52 +01:00
sync_binlog_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sync_frm_basic.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
sync_master_info_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sync_relay_log_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
sync_relay_log_info_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
system_time_zone_basic.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
table_lock_wait_timeout_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
table_open_cache_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
thread_cache_size_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
thread_cache_size_func.result 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_concurrency_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
thread_handling_basic.result 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_stack_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
time_format_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
time_zone_basic.result 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.result 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.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
timestamp_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
timestamp_func.result 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.result 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.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
tmpdir_basic.result 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_32.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
transaction_alloc_block_size_basic_64.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
transaction_prealloc_size_basic_32.result Reviewed fix for bug#37962 also including the revised result files for failing system variable tests. 2009-03-20 18:11:22 +01:00
transaction_prealloc_size_basic_64.result Fix belonging to bug#42838: Though this bug is only for 6.0 I put in some updated result files for 6.0 and this are the corrsponding resul files for 5.1, so that sys_vars should then run successfully also in 5.1. 2009-04-03 11:37:48 +02:00
tx_isolation_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
tx_isolation_func.result 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
unique_checks_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
updatable_views_with_limit_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
updatable_views_with_limit_func.result 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_basic.result 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.result 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.result 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.result 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
wait_timeout_basic.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
wait_timeout_func.result 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
warning_count_basic.result 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