mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 22:12:30 +01:00
f1a6ad4dde
Bug28309 First insert violates unique constraint - was "memory" table empty ? --- Add missing phony targets
51 lines
1.4 KiB
Text
51 lines
1.4 KiB
Text
######## t/ddl_archive.test ######
|
|
#
|
|
# Stress the storage engine ARCHIVE with CREATE/DROP TABLE/INDEX
|
|
#
|
|
# Please look for details within include/ddl1.inc.
|
|
#
|
|
# Creation of this test:
|
|
# 2007-07-04 mleich
|
|
#
|
|
|
|
# Storage engine to be used in CREATE TABLE
|
|
--source include/have_archive.inc
|
|
let $engine_type= ARCHIVE;
|
|
|
|
|
|
if (`SELECT $PS_PROTOCOL + $SP_PROTOCOL + $CURSOR_PROTOCOL + $VIEW_PROTOCOL > 0`)
|
|
{
|
|
--skip Test requires: ps-protocol/sp-protocol/cursor-protocol/view-protocol disabled
|
|
}
|
|
let $run= `SELECT '$BIG_TEST' = '1'`;
|
|
if ($run)
|
|
{
|
|
# A run started with "--big-test" should be allowed to consume more time.
|
|
# Rough intended runtime per subtest variant in seconds
|
|
let $runtime = 5;
|
|
# number of rounds till we look at the clock again
|
|
let $loop_size= 100;
|
|
}
|
|
if (!$run)
|
|
{
|
|
let $runtime = 1;
|
|
let $loop_size= 20;
|
|
}
|
|
|
|
|
|
##### Some preparations needed for the ddl*.inc scripts
|
|
--source suite/stress/include/ddl.pre
|
|
|
|
# Tests set to comment fail because of CSV limitations
|
|
# (limited number of keys, NULL within index not supported)
|
|
# --source suite/stress/include/ddl1.inc
|
|
--source suite/stress/include/ddl2.inc
|
|
--source suite/stress/include/ddl3.inc
|
|
# --source suite/stress/include/ddl4.inc
|
|
--source suite/stress/include/ddl5.inc
|
|
# --source suite/stress/include/ddl6.inc
|
|
# --source suite/stress/include/ddl7.inc
|
|
# --source suite/stress/include/ddl8.inc
|
|
|
|
##### Cleanup
|
|
--source suite/stress/include/ddl.cln
|