~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2013-12-22 10:27:05 UTC
  • Revision ID: package-import@ubuntu.com-20131222102705-mndw7s12mz0szrcn
Tags: upstream-5.5.32
Import upstream version 5.5.32

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
# Slow running test
 
47
--source include/big_test.inc
 
48
# This test relies on connecting externally from mysqltest, doesn't
 
49
# work with embedded.
 
50
--source include/not_embedded.inc
 
51
# The server must support partitioning.
 
52
--source include/have_partition.inc
 
53
 
 
54
# This test takes long time, so only run it with the --big mtr-flag.
 
55
--source include/big_test.inc
 
56
 
 
57
#------------------------------------------------------------------------------#
 
58
# Engine specific settings and requirements
 
59
 
 
60
##### Storage engine to be tested
 
61
--source include/have_innodb.inc
 
62
let $engine= 'InnoDB';
 
63
 
 
64
##### Execute the test of "table" files
 
65
# InnoDB has no files per PK, UI, ...
 
66
let $do_file_tests= 0;
 
67
 
 
68
##### Execute PRIMARY KEY tests                                      #####
 
69
# AFAIK InnoDB clusters the table around PRIMARY KEYs.
 
70
let $do_pk_tests= 1;
 
71
 
 
72
##### Assign a big number smaller than the maximum value for partitions  #####
 
73
#     and smaller than the maximum value of SIGNED INTEGER
 
74
let $MAX_VALUE= (2147483646);
 
75
 
 
76
# Generate the prerequisites ($variables, @variables, tables) needed
 
77
--source suite/parts/inc/partition.pre
 
78
 
 
79
##### Workarounds for known open engine specific bugs
 
80
#     none
 
81
 
 
82
#------------------------------------------------------------------------------#
 
83
# Execute the tests to be applied to all storage engines
 
84
--source suite/parts/inc/partition_alter1_1_2.inc
 
85
 
 
86
#------------------------------------------------------------------------------#
 
87
# Execute storage engine specific tests
 
88
 
 
89
#------------------------------------------------------------------------------#
 
90
# Cleanup
 
91
--source suite/parts/inc/partition_cleanup.inc