mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
42 lines
2 KiB
Text
42 lines
2 KiB
Text
|
################################################################################
|
||
|
# t/partition_auto_increment_ndb.test #
|
||
|
# #
|
||
|
# Purpose: #
|
||
|
# Tests around auto increment column #
|
||
|
# NDB branch #
|
||
|
# #
|
||
|
# Note: NDB behavior for auto_increment on secondary column in #
|
||
|
# multi-column-index is NOT like MyISAM, instead it uses the same #
|
||
|
# behavior as if it was the primary column. #
|
||
|
#------------------------------------------------------------------------------#
|
||
|
# Original Author: MattiasJ #
|
||
|
# Original Date: 2008-09-02 #
|
||
|
# Change Author: #
|
||
|
# Change Date: #
|
||
|
# Change: #
|
||
|
################################################################################
|
||
|
|
||
|
#
|
||
|
# NOTE: PLEASE DO NOT ADD NOT MYISAM SPECIFIC TESTCASES HERE !
|
||
|
# TESTCASES WHICH MUST BE APPLIED TO ALL STORAGE ENGINES MUST BE ADDED IN
|
||
|
# THE SOURCED FILES ONLY.
|
||
|
#
|
||
|
|
||
|
# The server must support partitioning.
|
||
|
--source include/have_partition.inc
|
||
|
|
||
|
#------------------------------------------------------------------------------#
|
||
|
# Engine specific settings and requirements
|
||
|
--source include/have_ndb.inc
|
||
|
|
||
|
##### Storage engine to be tested
|
||
|
let $engine= 'NDB';
|
||
|
connection default;
|
||
|
#enable hash partitioning
|
||
|
SET new=on;
|
||
|
|
||
|
#------------------------------------------------------------------------------#
|
||
|
# Execute the tests to be applied to all storage engines
|
||
|
--source suite/parts/inc/partition_auto_increment.inc
|
||
|
|