~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/parts/t/partition_alter1_2_ndb.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_2_ndb.test                                                #
 
3
#                                                                              #
 
4
# Purpose:                                                                     #
 
5
#  Tests around ADD/DROP PRIMARY KEY and/or UNIQUE INDEX                       #
 
6
#        NDB 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 NDB 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
--source include/big_test.inc
 
31
 
 
32
##### Options, for debugging support #####
 
33
let $debug= 0;
 
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. But NDB is partitioned from the start.
 
47
# Thats why the next line is set to comment.
 
48
# --source include/have_partition.inc
 
49
 
 
50
#------------------------------------------------------------------------------#
 
51
# Engine specific settings and requirements
 
52
 
 
53
##### Storage engine to be tested
 
54
--source include/have_ndb.inc
 
55
let $engine= 'ndbcluster';
 
56
connection default;
 
57
 
 
58
##### Execute the test of "table" files
 
59
# NDB has no files per PK, UI, ...
 
60
let $do_file_tests= 0;
 
61
 
 
62
##### Execute PRIMARY KEY tests                                      #####
 
63
# AFAIK NDB is always partitioned using the explicit defined PRIMARY KEY
 
64
#       or uses an internal one.
 
65
let $do_pk_tests= 1;
 
66
 
 
67
##### Assign a big number smaller than the maximum value for partitions  #####
 
68
#     and smaller than the maximum value of SIGNED INTEGER
 
69
# The NDB handler only supports 32 bit integers in VALUES
 
70
#     2147483647 seems to be too big.
 
71
let $MAX_VALUE= (2147483646);
 
72
 
 
73
# Generate the prerequisites ($variables, @variables, tables) needed
 
74
--source suite/parts/inc/partition.pre
 
75
 
 
76
##### Workarounds for known open engine specific bugs
 
77
# Bug#18735: Partitions: NDB, UNIQUE INDEX, UPDATE, strange server response
 
78
let $fixed_bug18735= 1;
 
79
 
 
80
#------------------------------------------------------------------------------#
 
81
# Execute the tests to be applied to all storage engines
 
82
--source suite/parts/inc/partition_alter1_2.inc
 
83
 
 
84
#------------------------------------------------------------------------------#
 
85
# Execute storage engine specific tests
 
86
 
 
87
#------------------------------------------------------------------------------#
 
88
# Cleanup
 
89
--source suite/parts/inc/partition_cleanup.inc