Commit 0a91049c authored by Kristofer Pettersson's avatar Kristofer Pettersson

auto merged

parents 54841382 94ba5b89
......@@ -354,6 +354,7 @@ CREATE TABLE t7 (i INT NOT NULL,
connection master;
INSERT INTO t1 VALUES (1, "", 1);
INSERT INTO t1 VALUES (2, repeat(_utf8'a', 16), 2);
sync_slave_with_master;
let $diff_table_1=master:test.t1;
let $diff_table_2=slave:test.t1;
......@@ -363,6 +364,7 @@ source include/diff_tables.inc;
connection master;
INSERT INTO t2 VALUES (1, "", 1);
INSERT INTO t2 VALUES (2, repeat(_utf8'a', 16), 2);
sync_slave_with_master;
let $diff_table_1=master:test.t2;
let $diff_table_2=slave:test.t2;
......@@ -387,6 +389,7 @@ source include/wait_for_slave_to_start.inc;
connection master;
INSERT INTO t4 VALUES (1, "", 1);
INSERT INTO t4 VALUES (2, repeat(_utf8'a', 128), 2);
sync_slave_with_master;
let $diff_table_1=master:test.t4;
let $diff_table_2=slave:test.t4;
......@@ -426,6 +429,7 @@ source include/wait_for_slave_to_start.inc;
connection master;
INSERT INTO t7 VALUES (1, "", 1);
INSERT INTO t7 VALUES (2, repeat(_utf8'a', 255), 2);
sync_slave_with_master;
let $diff_table_1=master:test.t7;
let $diff_table_2=slave:test.t7;
......
......@@ -13,3 +13,4 @@
rpl_redirect : Failure is sporadic and and the test is superfluous (mats)
rpl_innodb_bug28430 : Failure on Solaris Bug #36793
rpl_temporary : BUG#38269 2008-07-21 Sven valgrind error in pushbuild
rpl_flushlog_loop : BUG#37733 2008-07-23 Sven disabled in 5.1-bugteam. the bug has been fixed in 5.1-rpl: please re-enable when that gets pushed to main
Some of these tests allocate more than 4GB RAM.
So, assure that the machine on which the suite will be executed has more than 4GB RAM.
......@@ -21,9 +21,6 @@
# Reference: #
# http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html #
# #
# Last Modification: #
# 2008-07-14 hhunger removed values for 64 bit platforms. #
# #
################################################################################
--source include/load_sysvars.inc
......@@ -77,9 +74,8 @@ SELECT @@session.query_prealloc_size = 8192;
SET @@global.query_prealloc_size = 8192;
SELECT @@global.query_prealloc_size ;
# Due to problems with 64 bit machines having less than 6 GB main memory.
#SET @@global.query_prealloc_size = 4294967295;
#SELECT @@global.query_prealloc_size ;
SET @@global.query_prealloc_size = 4294967295;
SELECT @@global.query_prealloc_size ;
SET @@global.query_prealloc_size = 655354;
SELECT @@global.query_prealloc_size ;
......@@ -93,9 +89,8 @@ SELECT @@global.query_prealloc_size ;
SET @@session.query_prealloc_size = 8192;
SELECT @@session.query_prealloc_size ;
# Due to problems with 64 bit machines having less than 6 GB main memory.
#SET @@session.query_prealloc_size = 4294967295;
#SELECT @@session.query_prealloc_size ;
SET @@session.query_prealloc_size = 4294967295;
SELECT @@session.query_prealloc_size ;
SET @@session.query_prealloc_size = 655345;
SELECT @@session.query_prealloc_size ;
......@@ -114,9 +109,8 @@ SELECT @@global.query_prealloc_size ;
SET @@global.query_prealloc_size = -1024;
SELECT @@global.query_prealloc_size ;
# Due to problems with 64 bit machines having less than 6 GB main memory.
#SET @@global.query_prealloc_size = 429496729533;
#SELECT @@global.query_prealloc_size ;
SET @@global.query_prealloc_size = 429496729533;
SELECT @@global.query_prealloc_size ;
--Error ER_PARSE_ERROR
......
......@@ -35,6 +35,10 @@ SET @@global.query_prealloc_size = 8192;
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
SET @@global.query_prealloc_size = 4294967295;
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
4294966272
SET @@global.query_prealloc_size = 655354;
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
......@@ -44,6 +48,10 @@ SET @@session.query_prealloc_size = 8192;
SELECT @@session.query_prealloc_size ;
@@session.query_prealloc_size
8192
SET @@session.query_prealloc_size = 4294967295;
SELECT @@session.query_prealloc_size ;
@@session.query_prealloc_size
4294966272
SET @@session.query_prealloc_size = 655345;
SELECT @@session.query_prealloc_size ;
@@session.query_prealloc_size
......@@ -61,31 +69,37 @@ Warning 1292 Truncated incorrect query_prealloc_size value: '0'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
SET @@global.query_prealloc_size = 429496729533;
Warnings:
Warning 1292 Truncated incorrect query_prealloc_size value: '429496729533'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
4294966272
SET @@global.query_prealloc_size = 65530.34.;
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.' at line 1
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
4294966272
SET @@global.query_prealloc_size = test;
ERROR 42000: Incorrect argument type to variable 'query_prealloc_size'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
4294966272
SET @@global.query_prealloc_size = "test";
ERROR 42000: Incorrect argument type to variable 'query_prealloc_size'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
4294966272
SET @@global.query_prealloc_size = 'test';
ERROR 42000: Incorrect argument type to variable 'query_prealloc_size'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
4294966272
SET @@global.query_prealloc_size = ON;
ERROR 42000: Incorrect argument type to variable 'query_prealloc_size'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
4294966272
SET @@session.query_prealloc_size = 0;
Warnings:
Warning 1292 Truncated incorrect query_prealloc_size value: '0'
......
......@@ -35,6 +35,10 @@ SET @@global.query_prealloc_size = 8192;
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
SET @@global.query_prealloc_size = 4294967295;
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
4294966272
SET @@global.query_prealloc_size = 655354;
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
......@@ -44,6 +48,10 @@ SET @@session.query_prealloc_size = 8192;
SELECT @@session.query_prealloc_size ;
@@session.query_prealloc_size
8192
SET @@session.query_prealloc_size = 4294967295;
SELECT @@session.query_prealloc_size ;
@@session.query_prealloc_size
4294966272
SET @@session.query_prealloc_size = 655345;
SELECT @@session.query_prealloc_size ;
@@session.query_prealloc_size
......@@ -61,31 +69,35 @@ Warning 1292 Truncated incorrect query_prealloc_size value: '0'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
SET @@global.query_prealloc_size = 429496729533;
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
429496728576
SET @@global.query_prealloc_size = 65530.34.;
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.' at line 1
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
429496728576
SET @@global.query_prealloc_size = test;
ERROR 42000: Incorrect argument type to variable 'query_prealloc_size'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
429496728576
SET @@global.query_prealloc_size = "test";
ERROR 42000: Incorrect argument type to variable 'query_prealloc_size'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
429496728576
SET @@global.query_prealloc_size = 'test';
ERROR 42000: Incorrect argument type to variable 'query_prealloc_size'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
429496728576
SET @@global.query_prealloc_size = ON;
ERROR 42000: Incorrect argument type to variable 'query_prealloc_size'
SELECT @@global.query_prealloc_size ;
@@global.query_prealloc_size
8192
429496728576
SET @@session.query_prealloc_size = 0;
Warnings:
Warning 1292 Truncated incorrect query_prealloc_size value: '0'
......
......@@ -22,26 +22,20 @@ SELECT @@global.rpl_recovery_rank;
@@global.rpl_recovery_rank
123456789
SET @@global.rpl_recovery_rank = 2147483648*2;
Warnings:
Warning 1292 Truncated incorrect rpl-recovery-rank value: '4294967296'
SELECT @@global.rpl_recovery_rank;
@@global.rpl_recovery_rank
4294967295
4294967296
SET @@global.rpl_recovery_rank = 2147483648*1024;
Warnings:
Warning 1292 Truncated incorrect rpl-recovery-rank value: '2199023255552'
SELECT @@global.rpl_recovery_rank;
@@global.rpl_recovery_rank
4294967295
2199023255552
SELECT @@global.rpl_recovery_rank;
@@global.rpl_recovery_rank
4294967295
2199023255552
SET @@global.rpl_recovery_rank = 2147483648*2147483648;
Warnings:
Warning 1292 Truncated incorrect rpl-recovery-rank value: '4611686018427387904'
SELECT @@global.rpl_recovery_rank;
@@global.rpl_recovery_rank
4294967295
4611686018427387904
'#--------------------FN_DYNVARS_142_03-------------------------#'
SET @@rpl_recovery_rank = 2;
ERROR HY000: Variable 'rpl_recovery_rank' is a GLOBAL variable and should be set with SET GLOBAL
......
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/binlog_cache_size_basic.inc
--source suite/sys_vars/inc/binlog_cache_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/binlog_cache_size_basic.inc
--source suite/sys_vars/inc/binlog_cache_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/bulk_insert_buffer_size_basic.inc
--source suite/sys_vars/inc/bulk_insert_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/bulk_insert_buffer_size_basic.inc
--source suite/sys_vars/inc/bulk_insert_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/delayed_insert_limit_basic.inc
--source suite/sys_vars/inc/delayed_insert_limit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/delayed_insert_limit_basic.inc
--source suite/sys_vars/inc/delayed_insert_limit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/delayed_queue_size_basic.inc
--source suite/sys_vars/inc/delayed_queue_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/delayed_queue_size_basic.inc
--source suite/sys_vars/inc/delayed_queue_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/innodb_concurrency_tickets_basic.inc
--source suite/sys_vars/inc/innodb_concurrency_tickets_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/innodb_concurrency_tickets_basic.inc
--source suite/sys_vars/inc/innodb_concurrency_tickets_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/innodb_max_purge_lag_basic.inc
--source suite/sys_vars/inc/innodb_max_purge_lag_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/innodb_max_purge_lag_basic.inc
--source suite/sys_vars/inc/innodb_max_purge_lag_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/innodb_sync_spin_loops_basic.inc
--source suite/sys_vars/inc/innodb_sync_spin_loops_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/innodb_sync_spin_loops_basic.inc
--source suite/sys_vars/inc/innodb_sync_spin_loops_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/join_buffer_size_basic.inc
--source suite/sys_vars/inc/join_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/join_buffer_size_basic.inc
--source suite/sys_vars/inc/join_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/key_buffer_size_basic.inc
--source suite/sys_vars/inc/key_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/key_buffer_size_basic.inc
--source suite/sys_vars/inc/key_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/key_cache_age_threshold_basic.inc
--source suite/sys_vars/inc/key_cache_age_threshold_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/key_cache_age_threshold_basic.inc
--source suite/sys_vars/inc/key_cache_age_threshold_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/key_cache_block_size_basic.inc
--source suite/sys_vars/inc/key_cache_block_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/key_cache_block_size_basic.inc
--source suite/sys_vars/inc/key_cache_block_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/key_cache_division_limit_basic.inc
--source suite/sys_vars/inc/key_cache_division_limit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/key_cache_division_limit_basic.inc
--source suite/sys_vars/inc/key_cache_division_limit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/log_warnings_basic.inc
--source suite/sys_vars/inc/log_warnings_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/log_warnings_basic.inc
--source suite/sys_vars/inc/log_warnings_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/max_binlog_cache_size_basic.inc
--source suite/sys_vars/inc/max_binlog_cache_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/max_binlog_cache_size_basic.inc
--source suite/sys_vars/inc/max_binlog_cache_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/max_connect_errors_basic.inc
--source suite/sys_vars/inc/max_connect_errors_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/max_connect_errors_basic.inc
--source suite/sys_vars/inc/max_connect_errors_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/max_heap_table_size_basic.inc
--source suite/sys_vars/inc/max_heap_table_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/max_heap_table_size_basic.inc
--source suite/sys_vars/inc/max_heap_table_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/max_seeks_for_key_basic.inc
--source suite/sys_vars/inc/max_seeks_for_key_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/max_seeks_for_key_basic.inc
--source suite/sys_vars/inc/max_seeks_for_key_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/max_tmp_tables_basic.inc
--source suite/sys_vars/inc/max_tmp_tables_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/max_tmp_tables_basic.inc
--source suite/sys_vars/inc/max_tmp_tables_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/max_write_lock_count_basic.inc
--source suite/sys_vars/inc/max_write_lock_count_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/max_write_lock_count_basic.inc
--source suite/sys_vars/inc/max_write_lock_count_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/min_examined_row_limit_basic.inc
--source suite/sys_vars/inc/min_examined_row_limit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/min_examined_row_limit_basic.inc
--source suite/sys_vars/inc/min_examined_row_limit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/multi_range_count_basic.inc
--source suite/sys_vars/inc/multi_range_count_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/multi_range_count_basic.inc
--source suite/sys_vars/inc/multi_range_count_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/myisam_max_sort_file_size_basic.inc
--source suite/sys_vars/inc/myisam_max_sort_file_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/myisam_max_sort_file_size_basic.inc
--source suite/sys_vars/inc/myisam_max_sort_file_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/myisam_repair_threads_basic.inc
--source suite/sys_vars/inc/myisam_repair_threads_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/myisam_repair_threads_basic.inc
--source suite/sys_vars/inc/myisam_repair_threads_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/myisam_sort_buffer_size_basic.inc
--source suite/sys_vars/inc/myisam_sort_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/myisam_sort_buffer_size_basic.inc
--source suite/sys_vars/inc/myisam_sort_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/net_retry_count_basic.inc
--source suite/sys_vars/inc/net_retry_count_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/net_retry_count_basic.inc
--source suite/sys_vars/inc/net_retry_count_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/query_alloc_block_size_basic.inc
--source suite/sys_vars/inc/query_alloc_block_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/query_alloc_block_size_basic.inc
--source suite/sys_vars/inc/query_alloc_block_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/query_cache_limit_basic.inc
--source suite/sys_vars/inc/query_cache_limit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/query_cache_limit_basic.inc
--source suite/sys_vars/inc/query_cache_limit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/query_cache_min_res_unit_basic.inc
--source suite/sys_vars/inc/query_cache_min_res_unit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/query_cache_min_res_unit_basic.inc
--source suite/sys_vars/inc/query_cache_min_res_unit_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/query_cache_size_basic.inc
--source suite/sys_vars/inc/query_cache_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/query_cache_size_basic.inc
--source suite/sys_vars/inc/query_cache_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/query_prealloc_size_basic.inc
--source suite/sys_vars/inc/query_prealloc_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/query_prealloc_size_basic.inc
--source suite/sys_vars/inc/query_prealloc_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/range_alloc_block_size_basic.inc
--source suite/sys_vars/inc/range_alloc_block_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/range_alloc_block_size_basic.inc
--source suite/sys_vars/inc/range_alloc_block_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/rpl_recovery_rank_basic.inc
--source suite/sys_vars/inc/rpl_recovery_rank_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/rpl_recovery_rank_basic.inc
--source suite/sys_vars/inc/rpl_recovery_rank_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/server_id_basic.inc
--source suite/sys_vars/inc/server_id_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/server_id_basic.inc
--source suite/sys_vars/inc/server_id_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/slave_transaction_retries_basic.inc
--source suite/sys_vars/inc/slave_transaction_retries_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/slave_transaction_retries_basic.inc
--source suite/sys_vars/inc/slave_transaction_retries_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/sort_buffer_size_basic.inc
--source suite/sys_vars/inc/sort_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/sort_buffer_size_basic.inc
--source suite/sys_vars/inc/sort_buffer_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/sync_binlog_basic.inc
--source suite/sys_vars/inc/sync_binlog_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/sync_binlog_basic.inc
--source suite/sys_vars/inc/sync_binlog_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/timestamp_basic.inc
--source suite/sys_vars/inc/timestamp_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/timestamp_basic.inc
--source suite/sys_vars/inc/timestamp_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/tmp_table_size_basic.inc
--source suite/sys_vars/inc/tmp_table_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/tmp_table_size_basic.inc
--source suite/sys_vars/inc/tmp_table_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/transaction_alloc_block_size_basic.inc
--source suite/sys_vars/inc/transaction_alloc_block_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/transaction_alloc_block_size_basic.inc
--source suite/sys_vars/inc/transaction_alloc_block_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/transaction_prealloc_size_basic.inc
--source suite/sys_vars/inc/transaction_prealloc_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/transaction_prealloc_size_basic.inc
--source suite/sys_vars/inc/transaction_prealloc_size_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_32bit.inc
--source include/wait_timeout_basic.inc
--source suite/sys_vars/inc/wait_timeout_basic.inc
......@@ -5,5 +5,5 @@
################################################################################
--source include/have_64bit.inc
--source include/wait_timeout_basic.inc
--source suite/sys_vars/inc/wait_timeout_basic.inc
......@@ -12,88 +12,6 @@
federated_transactions : Bug#29523 Transactions do not work
csv_alter_table : Bug#33696 2008-01-21 pcrews no .result file - bug allows NULL columns in CSV tables
thread_cache_size_func : Bug#36733 main.thread_cache_size_func fails randomly
binlog_cache_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
bulk_insert_buffer_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
delayed_insert_limit_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
delayed_queue_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
innodb_concurrency_tickets_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
innodb_max_purge_lag_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
innodb_sync_spin_loops_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
join_buffer_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
key_buffer_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
key_cache_age_threshold_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
key_cache_block_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
key_cache_division_limit_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
log_warnings_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_binlog_cache_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_connect_errors_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_heap_table_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_seeks_for_key_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_tmp_tables_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_write_lock_count_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
min_examined_row_limit_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
multi_range_count_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
myisam_max_sort_file_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
myisam_repair_threads_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
myisam_sort_buffer_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
net_retry_count_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_alloc_block_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_cache_limit_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_cache_min_res_unit_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_cache_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_prealloc_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
range_alloc_block_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
rpl_recovery_rank_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
server_id_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
slave_transaction_retries_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
sort_buffer_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
sync_binlog_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
timestamp_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
tmp_table_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
transaction_alloc_block_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
transaction_prealloc_size_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
wait_timeout_basic_32 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
binlog_cache_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
bulk_insert_buffer_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
delayed_insert_limit_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
delayed_queue_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
innodb_concurrency_tickets_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
innodb_max_purge_lag_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
innodb_sync_spin_loops_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
join_buffer_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
key_buffer_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
key_cache_age_threshold_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
key_cache_block_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
key_cache_division_limit_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
log_warnings_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_binlog_cache_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_connect_errors_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_heap_table_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_seeks_for_key_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_tmp_tables_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
max_write_lock_count_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
min_examined_row_limit_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
multi_range_count_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
myisam_max_sort_file_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
myisam_repair_threads_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
myisam_sort_buffer_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
net_retry_count_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_alloc_block_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_cache_limit_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_cache_min_res_unit_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_cache_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
query_prealloc_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
range_alloc_block_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
rpl_recovery_rank_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
server_id_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
slave_transaction_retries_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
sort_buffer_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
sync_binlog_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
timestamp_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
tmp_table_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
transaction_alloc_block_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
transaction_prealloc_size_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
wait_timeout_basic_64 : Bug #36522: Some tests of system variables have diffs on 64bit platorms
log_tables.test : Bug #37798: main.log_tables fails randomly on powermacg5 and windows
slow_query_log_func.test : Bug #37962: *_func tests containing sleeps/race conditions
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment