~ubuntu-branches/ubuntu/trusty/mysql-5.6/trusty

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2014-02-12 11:54:27 UTC
  • Revision ID: package-import@ubuntu.com-20140212115427-oq6tfsqxl1wuwehi
Tags: upstream-5.6.15
ImportĀ upstreamĀ versionĀ 5.6.15

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
 
 
34
##### Storage engine to be tested
 
35
let $engine= 'Archive';
 
36
 
 
37
#------------------------------------------------------------------------------#
 
38
# Execute the tests to be applied to all storage engines
 
39
--source suite/parts/inc/partition_auto_increment.inc
 
40