~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/t/rpl_slave_exec_mode_basic.test

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
############## mysql-test\t\slave_exec_mode_basic.test #########################
 
2
#                                                                              #
 
3
# Variable Name: slave_exec_mode                                               #
 
4
# Scope: GLOBAL & SESSION                                                      #
 
5
# Access Type: Dynamic                                                         #
 
6
# Data Type: Numeric                                                           #
 
7
# Default Value: 1                                                             #
 
8
# Range: 1 - 65536                                                             #
 
9
#                                                                              #
 
10
#                                                                              #
 
11
# Creation Date: 2008-02-07                                                    #
 
12
# Author:  Rizwan Maredia                                                      #
 
13
#                                                                              #
 
14
# Description: Test Cases of Dynamic System Variable slave_exec_mode           #
 
15
#              that checks the behavior of this variable in the following ways #
 
16
#              * Default Value                                                 #
 
17
#              * Valid & Invalid values                                        #
 
18
#              * Scope & Access method                                         #
 
19
#              * Data Integrity                                                #
 
20
#                                                                              #
 
21
# Reference: http://dev.mysql.com/doc/refman/5.1/en/                           #
 
22
#  server-system-variables.html                                                #
 
23
#                                                                              #
 
24
################################################################################
 
25
 
 
26
--source include/load_sysvars.inc
 
27
 
 
28
######################################################################## 
 
29
#                    START OF slave_exec_mode TESTS                    #
 
30
######################################################################## 
 
31
 
 
32
 
 
33
######################################################################## 
 
34
#     Saving initial value of slave_exec_mode in a temporary variable  #
 
35
######################################################################## 
 
36
SET @start_value = @@global.slave_exec_mode;
 
37
--echo 'This variable is not supported in version 5.1.22. It is introduced in 5.1.24'
 
38
 
 
39
######################################################################## 
 
40
#                    END OF slave_exec_mode TESTS                      #
 
41
########################################################################