1
################################################################################
2
# t/partition_alter2_ndb.test #
5
# Tests around Alter column used in partitioning function #
8
#------------------------------------------------------------------------------#
9
# Original Author: mleich #
10
# Original Date: 2006-03-05 #
14
################################################################################
17
# NOTE: PLEASE DO NOT ADD NOT NDB SPECIFIC TESTCASES HERE !
18
# TESTCASES WHICH MUST BE APPLIED TO ALL STORAGE ENGINES MUST BE ADDED IN
19
# THE SOURCED FILES ONLY.
21
# Please read the README at the end of inc/partition.pre before changing
22
# any of the variables.
25
#------------------------------------------------------------------------------#
26
# General not engine specific settings and requirements
28
##### Options, for debugging support #####
30
let $with_partitioning= 1;
32
##### Option, for displaying files #####
35
##### Number of rows for the INSERT/UPDATE/DELETE/SELECT experiments #####
39
##### Execute more tests #####
40
let $more_trigger_tests= 0;
41
let $more_pk_ui_tests= 0;
43
# The server must support partitioning. But NDB is partitioned from the start.
44
# Thats why the next line is set to comment.
45
# --source include/have_partition.inc
47
#------------------------------------------------------------------------------#
48
# Engine specific settings and requirements
50
##### Storage engine to be tested
51
--source include/have_ndb.inc
52
let $engine= 'ndbcluster';
54
##### Execute the test of "table" files
55
# NDB has no files per PK, UI, ...
56
let $do_file_tests= 0;
58
##### Execute PRIMARY KEY tests #####
59
# AFAIK NDB is always partitioned using the explicit defined PRIMARY KEY
60
# or uses an internal one.
63
##### Assign a big number smaller than the maximum value for partitions #####
64
# and smaller than the maximum value of SIGNED INTEGER
65
# The NDB handler only supports 32 bit integers in VALUES
66
# 2147483647 seems to be too big.
67
let $MAX_VALUE= (2147483646);
69
# Generate the prerequisites ($variables, @variables, tables) needed
70
--source suite/parts/inc/partition.pre
72
##### Workarounds for known open engine specific bugs
75
#------------------------------------------------------------------------------#
76
# Execute the tests to be applied to all storage engines
77
--source suite/parts/inc/partition_alter2.inc
79
#------------------------------------------------------------------------------#
80
# Execute storage engine specific tests
82
#------------------------------------------------------------------------------#
84
--source suite/parts/inc/partition_cleanup.inc