~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_blackhole.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_blackhole.test                                    #
 
3
#                                                                              #
 
4
# Purpose:                                                                     #
 
5
#  Tests around auto increment column                                          #
 
6
#        Blackhole branch                                                      #
 
7
#                                                                              #
 
8
#------------------------------------------------------------------------------#
 
9
# Original Author: MattiasJ                                                    #
 
10
# Original Date: 2008-09-02                                                    #
 
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
 
 
22
# The server must support partitioning.
 
23
--source include/have_partition.inc
 
24
 
 
25
#------------------------------------------------------------------------------#
 
26
# Engine specific settings and requirements
 
27
--source include/have_blackhole.inc
 
28
# Bug#45823 Assertion failure in file row/row0mysql.c line 1386
 
29
# Blackhole does not handle negative autoincrement values correctly
 
30
let $skip_negative_auto_inc= 1;
 
31
 
 
32
##### Storage engine to be tested
 
33
let $engine= 'Blackhole';
 
34
 
 
35
#------------------------------------------------------------------------------#
 
36
# Execute the tests to be applied to all storage engines
 
37
--source suite/parts/inc/partition_auto_increment.inc
 
38