~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
################################################################################
 
2
# t/partition_value_ndb.test                                                   #
 
3
#                                                                              #
 
4
# Purpose:                                                                     #
 
5
#  Tests around "exotic" values calculated by the partitioning function        #
 
6
#        NDB branch                                                            #
 
7
#                                                                              #
 
8
#------------------------------------------------------------------------------#
 
9
# Original Author: mleich                                                      #
 
10
# Original Date: 2006-04-11                                                    #
 
11
# Change Author: mleich                                                        #
 
12
# Change Date: 2008-12-08                                                      #
 
13
# Change: Remove test from disabled.def + change test that it gets skipped     #
 
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
# CAST() within the partitioning function si no more supported, but we get
 
27
# this functionality probably soon again. Therefor we do not delete this test.
 
28
--skip # CAST() in partitioning function is currently not supported.
 
29
 
 
30
 
 
31
#------------------------------------------------------------------------------#
 
32
# General not engine specific settings and requirements
 
33
 
 
34
##### Options, for debugging support #####
 
35
let $debug= 0;
 
36
 
 
37
##### Option, for displaying files #####
 
38
let $ls= 1;
 
39
 
 
40
##### Number of rows for the INSERT/UPDATE/DELETE/SELECT experiments #####
 
41
#     on partioned tables
 
42
SET @max_row = 20;
 
43
 
 
44
##### Execute more tests                                             #####
 
45
let $more_trigger_tests= 0;
 
46
let $more_pk_ui_tests= 0;
 
47
 
 
48
# The server must support partitioning. But NDB is partitioned from the start.
 
49
# Thats why the next line is set to comment.
 
50
# --source include/have_partition.inc
 
51
 
 
52
#------------------------------------------------------------------------------#
 
53
# Engine specific settings and requirements
 
54
 
 
55
##### Storage engine to be tested
 
56
--source include/have_ndb.inc
 
57
let $engine= 'ndbcluster';
 
58
connection default;
 
59
 
 
60
# range, list and hash partitioning in ndb requires new_mode
 
61
--disable_query_log
 
62
set new=on;
 
63
--enable_query_log
 
64
##### Execute the test of "table" files
 
65
# NDB has no files per PK, UI, ...
 
66
let $do_file_tests= 0;
 
67
 
 
68
##### Execute PRIMARY KEY tests                                      #####
 
69
# AFAIK NDB is always partitioned using the explicit defined PRIMARY KEY
 
70
#       or uses an internal one.
 
71
let $do_pk_tests= 1;
 
72
 
 
73
##### Assign a big number smaller than the maximum value for partitions  #####
 
74
#     and smaller than the maximum value of SIGNED INTEGER
 
75
# The NDB handler only supports 32 bit integers in VALUES
 
76
#     2147483647 seems to be too big.
 
77
let $MAX_VALUE= (2147483646);
 
78
 
 
79
# Generate the prerequisites ($variables, @variables, tables) needed
 
80
--source suite/parts/inc/partition.pre
 
81
 
 
82
##### Workarounds for known open engine specific bugs
 
83
#     none
 
84
 
 
85
#------------------------------------------------------------------------------#
 
86
# Execute the tests to be applied to all storage engines
 
87
--source suite/parts/inc/partition_value.inc
 
88
 
 
89
#------------------------------------------------------------------------------#
 
90
# Execute storage engine specific tests
 
91
 
 
92
#------------------------------------------------------------------------------#
 
93
# Cleanup
 
94
--source suite/parts/inc/partition_cleanup.inc