~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/parts/t/partition_alter1_1_2_myisam.test

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
################################################################################
 
2
# t/partition_alter1_1_2_myisam.test                                           #
 
3
#                                                                              #
 
4
# Purpose:                                                                     #
 
5
#  Tests around ADD/DROP PRIMARY KEY and/or UNIQUE INDEX                       #
 
6
#        MyISAM branch                                                         #
 
7
#                                                                              #
 
8
#------------------------------------------------------------------------------#
 
9
# Original Author: mleich                                                      #
 
10
# Original Date: 2006-03-05                                                    #
 
11
# Change Author: pcrews                                                        #
 
12
# Change Date: 2008-05-05                                                      #
 
13
# Change: Split up original partition_alter1.test file to better accommodate   #
 
14
#         PushBuild machines' workloads.  Total run time for all components    #
 
15
#         is essentially the same, but max. single run time is significantly   #
 
16
#         reduced                                                              #
 
17
################################################################################
 
18
#
 
19
# NOTE: PLEASE DO NOT ADD NOT MYISAM SPECIFIC TESTCASES HERE !
 
20
#       TESTCASES WHICH MUST BE APPLIED TO ALL STORAGE ENGINES MUST BE ADDED IN
 
21
#       THE SOURCED FILES ONLY.
 
22
#
 
23
# Please read the README at the end of inc/partition.pre before changing
 
24
# any of the variables.
 
25
#
 
26
 
 
27
#------------------------------------------------------------------------------#
 
28
# General not engine specific settings and requirements
 
29
 
 
30
##### Options, for debugging support #####
 
31
let $debug= 0;
 
32
let $with_partitioning= 1;
 
33
 
 
34
##### Option, for displaying files #####
 
35
let $ls= 1;
 
36
 
 
37
##### Number of rows for the INSERT/UPDATE/DELETE/SELECT experiments #####
 
38
#     on partioned tables
 
39
SET @max_row = 20;
 
40
 
 
41
##### Execute more tests                                             #####
 
42
let $more_trigger_tests= 0;
 
43
let $more_pk_ui_tests= 0;
 
44
 
 
45
# The server must support partitioning.
 
46
--source include/have_partition.inc
 
47
 
 
48
#------------------------------------------------------------------------------#
 
49
# Engine specific settings and requirements
 
50
 
 
51
##### Storage engine to be tested
 
52
let $engine= 'MyISAM';
 
53
 
 
54
##### Execute the test of "table" files
 
55
# MyISAM has files per PK, UI, ...
 
56
let $do_file_tests= 1;
 
57
 
 
58
##### Execute PRIMARY KEY tests                                      #####
 
59
# AFAIK MyISAM treats PRIMARY KEYs like UNIQUE INDEXes
 
60
let $do_pk_tests= 0;
 
61
 
 
62
##### Assign a big number smaller than the maximum value for partitions  #####
 
63
#     and smaller than the maximum value of SIGNED INTEGER
 
64
let $MAX_VALUE= (2147483646);
 
65
 
 
66
# Generate the prerequisites ($variables, @variables, tables) needed
 
67
--source suite/parts/inc/partition.pre
 
68
 
 
69
##### Workarounds for known open engine specific bugs
 
70
#     none
 
71
 
 
72
#------------------------------------------------------------------------------#
 
73
# Execute the tests to be applied to all storage engines
 
74
--source suite/parts/inc/partition_alter1_1_2.inc
 
75
 
 
76
#------------------------------------------------------------------------------#
 
77
# Execute storage engine specific tests
 
78
 
 
79
#------------------------------------------------------------------------------#
 
80
# Cleanup
 
81
--source suite/parts/inc/partition_cleanup.inc