mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 02:46:29 +01:00 
			
		
		
		
	 3a979065e9
			
		
	
	
	3a979065e9
	
	
	
		
			
			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
		
	
			
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			659 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			659 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| ######## include/ddl.pre ########
 | |
| # The variable
 | |
| #     $runtime   -- rough intended runtime per subtest variant
 | |
| # must be set within the routine sourcing this script.
 | |
| #
 | |
| # Please look for more details within include/ddl1.inc.
 | |
| #
 | |
| # Creation of this test:
 | |
| # 2007-07-11 mleich
 | |
| #
 | |
| SET @@session.sql_mode = 'NO_ENGINE_SUBSTITUTION';
 | |
| PREPARE stmt_start FROM "SELECT UNIX_TIMESTAMP() INTO @start";
 | |
| --replace_result $runtime <intended_runtime>
 | |
| eval SET @runtime = $runtime;
 | |
| eval PREPARE stmt_break FROM "SELECT UNIX_TIMESTAMP() - @start > @runtime - 1";
 | |
| connect (con2,localhost,root,,);
 | |
| connection default;
 | |
| 
 | |
| --disable_warnings
 | |
| DROP TABLE IF EXISTS t1;
 | |
| --enable_warnings
 |