mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 04:26:45 +03:00 
			
		
		
		
	Added delayed_user for delayed_threads Don't use record cache when doing deletes Docs/manual.texi: Added link to activestate perl mysql-test/t/delayed.test: Added sleep for slow machines scripts/mysql_install_db.sh: Fixed wrong option sql-bench/crash-me.sh: Intialize some variables sql/mysql_priv.h: Added delayed_user for delayed_threads sql/mysqld.cc: Added delayed_user for delayed_threads sql/sql_class.cc: Added delayed_user for delayed_threads sql/sql_delete.cc: Don't use record cache when doing deletes sql/sql_insert.cc: Added delayed_user for delayed_threads tests/fork3_test.pl: Added periodic check/repair of table
		
			
				
	
	
		
			34 lines
		
	
	
		
			984 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			984 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #
 | |
| # test of DELAYED insert and timestamps
 | |
| # (Can't be tested with purify :( )
 | |
| #
 | |
| 
 | |
| create table t1 (a char(10), tmsp timestamp);
 | |
| insert into t1 set a = 1;
 | |
| insert delayed into t1 set a = 2;
 | |
| insert into t1 set a = 3, tmsp=NULL;
 | |
| insert delayed into t1 set a = 4;
 | |
| insert delayed into t1 set a = 5, tmsp = 19711006010203;
 | |
| insert delayed into t1 (a, tmsp) values (6, 19711006010203);
 | |
| insert delayed into t1 (a, tmsp) values (7, NULL);
 | |
| --sleep 1
 | |
| insert into t1 set a = 8,tmsp=19711006010203;
 | |
| select * from t1 where tmsp=0;
 | |
| select * from t1 where tmsp=19711006010203;
 | |
| drop table t1;
 | |
| 
 | |
| #
 | |
| # Test bug when inserting NULL into an auto_increment field with
 | |
| # INSERT DELAYED
 | |
| #
 | |
| 
 | |
| create table t1 (a int not null auto_increment primary key, b char(10));
 | |
| insert delayed into t1 values (1,"b");
 | |
| insert delayed into t1 values (null,"c");
 | |
| insert delayed into t1 values (3,"d"),(null,"e");
 | |
| --error 1136
 | |
| insert delayed into t1 values (3,"this will give an","error");
 | |
| --sleep 2
 | |
| select * from t1;
 | |
| drop table t1;
 |