~vadim-tk/percona-server/flushing-algo

« back to all changes in this revision

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

  • Committer: root
  • Date: 2011-10-29 01:34:40 UTC
  • Revision ID: root@hppro1.office.percona.com-20111029013440-qhnf4jk8kdjcf4e0
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
################################################################################
 
2
# t/partition_auto_increment_archive.test                                      #
 
3
#                                                                              #
 
4
# Purpose:                                                                     #
 
5
#  Tests around auto increment column                                          #
 
6
#        Archive 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_archive.inc
 
28
# Archve does not support delete
 
29
let $skip_delete= 1;
 
30
let $skip_truncate= 1;
 
31
let $skip_update= 1;
 
32
let $only_ai_pk= 1;
 
33
# Bug#45823 Assertion failure in file row/row0mysql.c line 1386
 
34
# Archive does not handle negative autoincrement values correctly
 
35
let $skip_negative_auto_inc= 1;
 
36
 
 
37
##### Storage engine to be tested
 
38
let $engine= 'Archive';
 
39
 
 
40
#------------------------------------------------------------------------------#
 
41
# Execute the tests to be applied to all storage engines
 
42
--source suite/parts/inc/partition_auto_increment.inc
 
43