1
by brian
clean slate |
1 |
################################################################################
|
2 |
# t/partition_bit.test #
|
|
3 |
# #
|
|
4 |
# Purpose: #
|
|
5 |
# Tests around bit type #
|
|
6 |
# MyISAM branch #
|
|
7 |
# #
|
|
8 |
#------------------------------------------------------------------------------#
|
|
9 |
# Original Author: HH #
|
|
10 |
# Original Date: 2006-08-01 #
|
|
11 |
# Change Author: #
|
|
12 |
# Change Date: #
|
|
13 |
# Change: #
|
|
14 |
################################################################################
|
|
15 |
||
16 |
# |
|
17 |
# NOTE: PLEASE DO NOT ADD NOT MYISAM SPECIFIC TESTCASES HERE ! |
|
18 |
# TESTCASES WHICH MUST BE APPLIED TO ALL STORAGE ENGINES MUST BE ADDED IN |
|
19 |
# THE SOURCED FILES ONLY. |
|
20 |
# |
|
21 |
# Please read the README at the end of inc/partition.pre before changing |
|
22 |
# any of the variables. |
|
23 |
# |
|
24 |
||
25 |
#------------------------------------------------------------------------------# |
|
26 |
# General not engine specific settings and requirements |
|
27 |
||
28 |
##### Options, for debugging support ##### |
|
29 |
let $debug= 0; |
|
30 |
let $with_partitioning= 1; |
|
31 |
||
32 |
##### Option, for displaying files ##### |
|
33 |
let $ls= 1; |
|
34 |
||
35 |
##### Number of rows for the INSERT/UPDATE/DELETE/SELECT experiments ##### |
|
36 |
# on partioned tables |
|
37 |
SET @max_row = 20; |
|
38 |
||
39 |
# The server must support partitioning. |
|
40 |
--source include/have_partition.inc |
|
41 |
||
42 |
#------------------------------------------------------------------------------# |
|
43 |
# Engine specific settings and requirements |
|
44 |
||
45 |
##### Storage engine to be tested |
|
46 |
--source include/have_ndb.inc |
|
47 |
let $engine= 'NDB'; |
|
48 |
||
49 |
##### Assign a big number smaller than the maximum value for partitions ##### |
|
50 |
# and smaller than the maximum value of SIGNED INTEGER |
|
51 |
let $MAX_VALUE= (2147483646); |
|
52 |
||
53 |
#------------------------------------------------------------------------------# |
|
54 |
# Execute the tests to be applied to all storage engines |
|
55 |
--source suite/parts/inc/partition_bit.inc |