~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-29 12:50:19 UTC
  • mfrom: (12.1.4 drizzle)
  • Revision ID: brian@localhost.localdomain-20080629125019-qxk9qma8esphwwus
Committing merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
################################################################################
2
 
# t/partition_engine_ndb.test                                                  #
3
 
#                                                                              #
4
 
# Purpose:                                                                     #
5
 
#  Tests around Create/Alter partitioned tables and storage engine settings    #
6
 
#        NDB branch                                                            #
7
 
#                                                                              #
8
 
#------------------------------------------------------------------------------#
9
 
# Original Author: mleich                                                      #
10
 
# Original Date: 2006-03-05                                                    #
11
 
# Change Author:                                                               #
12
 
# Change Date:                                                                 #
13
 
# Change:                                                                      #
14
 
################################################################################
15
 
 
16
 
#
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.
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
 
 
31
 
##### Option, for displaying files #####
32
 
let $ls= 1;
33
 
 
34
 
##### Number of rows for the INSERT/UPDATE/DELETE/SELECT experiments #####
35
 
#     on partioned tables
36
 
SET @max_row = 20;
37
 
 
38
 
##### Execute more tests                                             #####
39
 
let $more_trigger_tests= 0;
40
 
let $more_pk_ui_tests= 0;
41
 
 
42
 
# The server must support partitioning. But NDB is partitioned from the start.
43
 
# Thats why the next line is set to comment.
44
 
# --source include/have_partition.inc
45
 
 
46
 
#------------------------------------------------------------------------------#
47
 
# Engine specific settings and requirements
48
 
 
49
 
##### Storage engine to be tested
50
 
let $engine= 'ndbcluster';
51
 
--source include/have_ndb.inc
52
 
 
53
 
##### Execute the test of "table" files
54
 
# NDB has no files per PK, UI, ...
55
 
let $do_file_tests= 0;
56
 
 
57
 
##### Execute PRIMARY KEY tests                                      #####
58
 
# AFAIK NDB is always partitioned using the explicit defined PRIMARY KEY
59
 
#       or uses an internal one.
60
 
let $do_pk_tests= 1;
61
 
 
62
 
##### Assign a big number smaller than the maximum value for partitions  #####
63
 
#     and smaller than the maximum value of SIGNED INTEGER
64
 
# The NDB handler only supports 32 bit integers in VALUES
65
 
#     2147483647 seems to be too big.
66
 
let $MAX_VALUE= (2147483646);
67
 
 
68
 
# Generate the prerequisites ($variables, @variables, tables) needed
69
 
--source suite/parts/inc/partition.pre
70
 
 
71
 
##### Workarounds for known open engine specific bugs
72
 
#     none
73
 
 
74
 
#------------------------------------------------------------------------------#
75
 
# Execute the tests to be applied to all storage engines
76
 
--source suite/parts/inc/partition_engine.inc
77
 
 
78
 
#------------------------------------------------------------------------------#
79
 
# Execute storage engine specific tests
80
 
 
81
 
#------------------------------------------------------------------------------#
82
 
# Cleanup
83
 
--source suite/parts/inc/partition_cleanup.inc