~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
################################################################################
 
2
# t/partition_syntax_myisam.test                                               #
 
3
#                                                                              #
 
4
# Purpose:                                                                     #
 
5
#  Tests around Create Partitioned table syntax                                #
 
6
#        MyISAM 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 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
 
 
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.
 
43
--source include/have_partition.inc
 
44
 
 
45
#------------------------------------------------------------------------------#
 
46
# Engine specific settings and requirements
 
47
 
 
48
##### Storage engine to be tested
 
49
let $engine= 'MyISAM';
 
50
 
 
51
##### Execute the test of "table" files
 
52
# MyISAM has files per PK, UI, ...
 
53
let $do_file_tests= 1;
 
54
 
 
55
##### Execute PRIMARY KEY tests                                      #####
 
56
# AFAIK MyISAM treats PRIMARY KEYs like UNIQUE INDEXes
 
57
let $do_pk_tests= 0;
 
58
 
 
59
##### Assign a big number smaller than the maximum value for partitions  #####
 
60
#     and smaller than the maximum value of SIGNED INTEGER
 
61
let $MAX_VALUE= (2147483646);
 
62
 
 
63
# Generate the prerequisites ($variables, @variables, tables) needed
 
64
--source suite/parts/inc/partition.pre
 
65
 
 
66
##### Workarounds for known open engine specific bugs
 
67
#     none
 
68
 
 
69
#------------------------------------------------------------------------------#
 
70
# Execute the tests to be applied to all storage engines
 
71
--source suite/parts/inc/partition_syntax.inc
 
72
 
 
73
#------------------------------------------------------------------------------#
 
74
# Execute storage engine specific tests
 
75
 
 
76
#------------------------------------------------------------------------------#
 
77
# Cleanup
 
78
--source suite/parts/inc/partition_cleanup.inc