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

« back to all changes in this revision

Viewing changes to mysql-test/suite/parts/t/partition_auto_increment_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_auto_increment_ndb.test                                          #
 
3
#                                                                              #
 
4
# Purpose:                                                                     #
 
5
#  Tests around auto increment column                                          #
 
6
#        NDB branch                                                            #
 
7
#                                                                              #
 
8
# Note: NDB behavior for auto_increment on secondary column in                 #
 
9
#       multi-column-index is NOT like MyISAM, instead it uses the same        #
 
10
#       behavior as if it was the primary column.                              #
 
11
#------------------------------------------------------------------------------#
 
12
# Original Author: MattiasJ                                                    #
 
13
# Original Date: 2008-09-02                                                    #
 
14
# Change Author:                                                               #
 
15
# Change Date:                                                                 #
 
16
# Change:                                                                      #
 
17
################################################################################
 
18
 
 
19
#
 
20
# NOTE: PLEASE DO NOT ADD NOT MYISAM SPECIFIC TESTCASES HERE !
 
21
#       TESTCASES WHICH MUST BE APPLIED TO ALL STORAGE ENGINES MUST BE ADDED IN
 
22
#       THE SOURCED FILES ONLY.
 
23
#
 
24
 
 
25
# The server must support partitioning.
 
26
--source include/have_partition.inc
 
27
 
 
28
#------------------------------------------------------------------------------#
 
29
# Engine specific settings and requirements
 
30
--source include/have_ndb.inc
 
31
 
 
32
##### Storage engine to be tested
 
33
let $engine= 'NDB';
 
34
connection default;
 
35
#enable hash partitioning
 
36
SET new=on;
 
37
 
 
38
#------------------------------------------------------------------------------#
 
39
# Execute the tests to be applied to all storage engines
 
40
--source suite/parts/inc/partition_auto_increment.inc
 
41