~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
################################################################################
2
# inc/partition_alter_11.inc                                                   #
3
#                                                                              #
4
# Purpose:                                                                     #
5
#   Check ALTER partitioned table and the state of the table afterwards        #
6
#   The partitioning function use the column f_int1                            #
7
#                                                                              #
8
#   For all partitioning methods                                               #
9
#        PARTITION BY HASH/KEY/LIST/RANGE                                      #
10
#        PARTITION BY RANGE/LIST ... SUBPARTITION BY HASH/KEY ...              #
11
#   do                                                                         #
12
#     1. Create the partitioned table                                          #
13
#     2. Execute inc/partition_alter_1.inc, which will                     #
14
#        - Insert the first half of the table t0_template into t1              #
15
#        - Execute the ALTER TABLE statement                                   #
16
#        - Insert the second half of the table t0_template into t1             #
17
#        - Execute the usability test include/partition_check.inc              #
18
#        - Drop the table t1                                                   #
19
#   done                                                                       #
20
#                                                                              #
21
#   The parameters                                                             #
22
#        $unique -- PRIMARY KEY or UNIQUE INDEXes to be created within the     #
23
#                   CREATE TABLE STATEMENT                                     #
24
#        $alter  -- ALTER TABLE statement, which has to be executed            #
25
#   have to be set before sourcing this routine.                               #
26
#   Example:                                                                   #
27
#          let $unique= , UNIQUE INDEX uidx1 (f_int1);                         #
28
#          let $alter= ALTER TABLE t1 DROP UNIQUE INDEX uidx1;                 #
29
#          inc/partition_alter1.inc                                            #
30
#                                                                              #
31
# Attention: The routine include/partition_alter_13.inc is very similar        #
32
#            to this one. So if something has to be changed here it            #
33
#            might be necessary to do it also there                            #
34
#                                                                              #
35
#------------------------------------------------------------------------------#
36
# Original Author: mleich                                                      #
37
# Original Date: 2006-03-05                                                    #
38
# Change Author:                                                               #
39
# Change Date:                                                                 #
40
# Change:                                                                      #
41
################################################################################
42
43
--disable_warnings
44
DROP TABLE IF EXISTS t1;
45
--enable_warnings
46
47
let $partitioning= ;
48
#----------- PARTITION BY HASH
49
if ($with_partitioning)
50
{
51
let $partitioning= PARTITION BY HASH(f_int1) PARTITIONS 2;
52
}
53
eval CREATE TABLE t1 (
54
$column_list
55
$unique
56
)
57
$partitioning;
58
--source suite/parts/inc/partition_alter_1.inc
59
60
#----------- PARTITION BY KEY
61
if ($with_partitioning)
62
{
63
let $partitioning= PARTITION BY KEY(f_int1) PARTITIONS 5;
64
}
65
eval CREATE TABLE t1 (
66
$column_list
67
$unique
68
)
69
$partitioning;
70
--source suite/parts/inc/partition_alter_1.inc
71
72
#----------- PARTITION BY LIST
73
if ($with_partitioning)
74
{
75
let $partitioning= PARTITION BY LIST(MOD(f_int1,4))
76
(PARTITION part_3 VALUES IN (-3),
77
 PARTITION part_2 VALUES IN (-2),
78
 PARTITION part_1 VALUES IN (-1),
79
 PARTITION part_N VALUES IN (NULL),
80
 PARTITION part0 VALUES IN (0),
81
 PARTITION part1 VALUES IN (1),
82
 PARTITION part2 VALUES IN (2),
83
 PARTITION part3 VALUES IN (3));
84
}
85
eval CREATE TABLE t1 (
86
$column_list
87
$unique
88
)
89
$partitioning;
90
--source suite/parts/inc/partition_alter_1.inc
91
92
#----------- PARTITION BY RANGE
93
if ($with_partitioning)
94
{
95
--disable_query_log
96
eval SET @aux = 'PARTITION BY RANGE(f_int1)
97
(PARTITION parta VALUES LESS THAN (0),
98
PARTITION partb VALUES LESS THAN ($max_row_div4),
99
PARTITION partc VALUES LESS THAN ($max_row_div2),
100
PARTITION partd VALUES LESS THAN ($max_row_div2 + $max_row_div4),
101
PARTITION parte VALUES LESS THAN ($max_row),
102
PARTITION partf VALUES LESS THAN $MAX_VALUE)';
103
let $partitioning= `SELECT @aux`;
104
--enable_query_log
105
}
106
eval CREATE TABLE t1 (
107
$column_list
108
$unique
109
)
110
$partitioning;
111
--source suite/parts/inc/partition_alter_1.inc
112
113
#----------- PARTITION BY RANGE -- SUBPARTITION BY HASH
114
if ($with_partitioning)
115
{
116
--disable_query_log
117
eval SET @aux =
118
'PARTITION BY RANGE(f_int1 DIV 2) SUBPARTITION BY HASH(f_int1) SUBPARTITIONS 2
119
(PARTITION parta VALUES LESS THAN (0),
120
PARTITION partb VALUES LESS THAN ($max_row_div4),
121
PARTITION partc VALUES LESS THAN ($max_row_div2),
122
PARTITION partd VALUES LESS THAN $MAX_VALUE)';
123
let $partitioning= `SELECT @aux`;
124
--enable_query_log
125
}
126
eval CREATE TABLE t1 (
127
$column_list
128
$unique
129
)
130
$partitioning;
131
--source suite/parts/inc/partition_alter_1.inc
132
133
#----------- PARTITION BY RANGE -- SUBPARTITION BY KEY
134
if ($with_partitioning)
135
{
136
--disable_query_log
137
eval SET @aux = 'PARTITION BY RANGE(f_int1) SUBPARTITION BY KEY(f_int1)
138
(PARTITION part1 VALUES LESS THAN (0)
139
(SUBPARTITION subpart11, SUBPARTITION subpart12),
140
PARTITION part2 VALUES LESS THAN ($max_row_div4)
141
(SUBPARTITION subpart21, SUBPARTITION subpart22),
142
PARTITION part3 VALUES LESS THAN ($max_row_div2)
143
(SUBPARTITION subpart31, SUBPARTITION subpart32),
144
PARTITION part4 VALUES LESS THAN $MAX_VALUE
145
(SUBPARTITION subpart41, SUBPARTITION subpart42))';
146
let $partitioning= `SELECT @aux`;
147
--enable_query_log
148
}
149
eval CREATE TABLE t1 (
150
$column_list
151
$unique
152
)
153
$partitioning;
154
--source suite/parts/inc/partition_alter_1.inc
155
156
#----------- PARTITION BY LIST -- SUBPARTITION BY HASH
157
if ($with_partitioning)
158
{
159
let $partitioning= PARTITION BY LIST(ABS(MOD(f_int1,3))) SUBPARTITION BY HASH(f_int1 + 1)
160
(PARTITION part1 VALUES IN (0)
161
  (SUBPARTITION sp11, SUBPARTITION sp12),
162
 PARTITION part2 VALUES IN (1)
163
  (SUBPARTITION sp21, SUBPARTITION sp22),
164
 PARTITION part3 VALUES IN (2)
165
  (SUBPARTITION sp31, SUBPARTITION sp32),
166
 PARTITION part4 VALUES IN (NULL)
167
  (SUBPARTITION sp41, SUBPARTITION sp42));
168
}
169
eval CREATE TABLE t1 (
170
$column_list
171
$unique
172
)
173
$partitioning;
174
--source suite/parts/inc/partition_alter_1.inc
175
176
#----------- PARTITION BY LIST -- SUBPARTITION BY KEY
177
if ($with_partitioning)
178
{
179
--disable_query_log
180
eval SET @aux =
181
'PARTITION BY LIST(ABS(MOD(f_int1,2)))
182
SUBPARTITION BY KEY(f_int1) SUBPARTITIONS $sub_part_no
183
(PARTITION part1 VALUES IN (0),
184
 PARTITION part2 VALUES IN (1),
185
 PARTITION part3 VALUES IN (NULL))';
186
let $partitioning= `SELECT @aux`;
187
--enable_query_log
188
}
189
eval CREATE TABLE t1 (
190
$column_list
191
$unique
192
)
193
$partitioning;
194
--source suite/parts/inc/partition_alter_1.inc