~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/parts/t/partition_alter1_1_2_innodb.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_innodb.test                                           #
 
3
#                                                                              #
 
4
# Purpose:                                                                     #
 
5
#  Tests around ADD/DROP PRIMARY KEY and/or UNIQUE INDEX                       #
 
6
#        InnoDB 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
#
 
20
# NOTE: PLEASE DO NOT ADD NOT INNODB SPECIFIC TESTCASES HERE !
 
21
#       TESTCASES WHICH MUST BE APPLIED TO ALL STORAGE ENGINES MUST BE ADDED IN
 
22
#       THE SOURCED FILES ONLY.
 
23
#
 
24
# Please read the README at the end of inc/partition.pre before changing
 
25
# any of the variables.
 
26
#
 
27
 
 
28
#------------------------------------------------------------------------------#
 
29
# General not engine specific settings and requirements
 
30
 
 
31
##### Options, for debugging support #####
 
32
let $debug= 0;
 
33
let $with_partitioning= 1;
 
34
 
 
35
##### Option, for displaying files #####
 
36
let $ls= 1;
 
37
 
 
38
##### Number of rows for the INSERT/UPDATE/DELETE/SELECT experiments #####
 
39
#     on partioned tables
 
40
SET @max_row = 20;
 
41
 
 
42
##### Execute more tests                                             #####
 
43
let $more_trigger_tests= 0;
 
44
let $more_pk_ui_tests= 0;
 
45
 
 
46
# The server must support partitioning.
 
47
--source include/have_partition.inc
 
48
 
 
49
#------------------------------------------------------------------------------#
 
50
# Engine specific settings and requirements
 
51
 
 
52
##### Storage engine to be tested
 
53
--source include/have_innodb.inc
 
54
let $engine= 'InnoDB';
 
55
 
 
56
##### Execute the test of "table" files
 
57
# InnoDB has no files per PK, UI, ...
 
58
let $do_file_tests= 0;
 
59
 
 
60
##### Execute PRIMARY KEY tests                                      #####
 
61
# AFAIK InnoDB clusters the table around PRIMARY KEYs.
 
62
let $do_pk_tests= 1;
 
63
 
 
64
##### Assign a big number smaller than the maximum value for partitions  #####
 
65
#     and smaller than the maximum value of SIGNED INTEGER
 
66
let $MAX_VALUE= (2147483646);
 
67
 
 
68
# Generate the prerequisites ($variables, @variables, tables) needed
 
69
--source suite/parts/inc/partition.pre
 
70
 
 
71
##### Workarounds for known open engine specific bugs
 
72
#     none
 
73
 
 
74
#------------------------------------------------------------------------------#
 
75
# Execute the tests to be applied to all storage engines
 
76
--source suite/parts/inc/partition_alter1_1_2.inc
 
77
 
 
78
#------------------------------------------------------------------------------#
 
79
# Execute storage engine specific tests
 
80
 
 
81
#------------------------------------------------------------------------------#
 
82
# Cleanup
 
83
--source suite/parts/inc/partition_cleanup.inc