mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	Bug28309 First insert violates unique constraint - was "memory" table empty ?
---
Add missing phony targets
Makefile.am:
  Add execution of the ddl stress tests.
    (modified) test-bt: Short running variant added
    (new) test-ext-stress: Longer running variant
    (modified) test-ext: test-ext-stress added
    (modified) test-fast: Short running variant with MyISAM only added
  ---
  Declare test-ext-jp and test-ext-stress to PHONY make targets.
mysql-test/suite/stress/include/ddl.cln:
  Script for cleanup at execution end
mysql-test/suite/stress/include/ddl.pre:
  Script for general preparations at execution start
mysql-test/suite/stress/include/ddl1.inc:
  ddl stress script
mysql-test/suite/stress/include/ddl2.inc:
  ddl stress script
mysql-test/suite/stress/include/ddl3.inc:
  ddl stress script
mysql-test/suite/stress/include/ddl4.inc:
  ddl stress script
mysql-test/suite/stress/include/ddl5.inc:
  ddl stress script
mysql-test/suite/stress/include/ddl6.inc:
  ddl stress script
mysql-test/suite/stress/include/ddl7.inc:
  ddl stress script
mysql-test/suite/stress/include/ddl8.inc:
  ddl stress script
mysql-test/suite/stress/r/ddl_archive.result:
  File with expected results
mysql-test/suite/stress/r/ddl_csv.result:
  File with expected results
mysql-test/suite/stress/r/ddl_innodb.result:
  File with expected results
mysql-test/suite/stress/r/ddl_memory.result:
  File with expected results
mysql-test/suite/stress/r/ddl_myisam.result:
  File with expected results
mysql-test/suite/stress/r/ddl_ndb.result:
  File with expected results
mysql-test/suite/stress/t/ddl_archive.test:
  Storage engine specific toplevel testscript
mysql-test/suite/stress/t/ddl_csv.test:
  Storage engine specific toplevel testscript
mysql-test/suite/stress/t/ddl_innodb.test:
  Storage engine specific toplevel testscript
mysql-test/suite/stress/t/ddl_memory.test:
  Storage engine specific toplevel testscript
mysql-test/suite/stress/t/ddl_myisam.test:
  Storage engine specific toplevel testscript
mysql-test/suite/stress/t/ddl_ndb.test:
  Storage engine specific toplevel testscript
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
######## t/ddl_memory.test ######
 | 
						|
#
 | 
						|
# Stress the storage engine MEMORY 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
 | 
						|
let $engine_type= MEMORY;
 | 
						|
 | 
						|
 | 
						|
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
 | 
						|
 | 
						|
--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
 |