mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	BitKeeper/etc/ignore: auto-union BitKeeper/etc/logging_ok: auto-union mysql-test/r/ctype_tis620.result-old: Merge rename: mysql-test/r/ctype_tis620.result -> mysql-test/r/ctype_tis620.result-old BUILD/compile-pentium-max: Auto merged BitKeeper/etc/config: Auto merged Build-tools/Bootstrap: Auto merged Build-tools/Do-compile: Auto merged configure.in: Auto merged mysql-test/t/ctype_tis620.test-old: Merge rename: mysql-test/t/ctype_tis620.test -> mysql-test/t/ctype_tis620.test-old Docs/Makefile.am: Auto merged client/mysqldump.c: Auto merged client/mysqltest.c: Auto merged include/my_global.h: Auto merged include/my_pthread.h: Auto merged include/my_sys.h: Auto merged include/myisam.h: Auto merged innobase/btr/btr0cur.c: Auto merged innobase/ibuf/ibuf0ibuf.c: Auto merged innobase/include/dict0dict.h: Auto merged innobase/include/srv0srv.h: Auto merged innobase/include/ut0mem.h: Auto merged innobase/log/log0log.c: Auto merged innobase/row/row0ins.c: Auto merged innobase/row/row0sel.c: Auto merged innobase/srv/srv0start.c: Auto merged innobase/ut/ut0mem.c: Auto merged myisam/mi_check.c: Auto merged myisam/mi_dynrec.c: Auto merged myisam/mi_key.c: Auto merged myisam/myisam_ftdump.c: Auto merged myisam/myisamdef.h: Auto merged mysql-test/mysql-test-run.sh: Auto merged mysql-test/r/alter_table.result: Auto merged mysql-test/r/bdb.result: Auto merged mysql-test/r/bigint.result: Auto merged mysql-test/r/fulltext.result: Auto merged
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # See if queries that use both auto_increment and LAST_INSERT_ID()
 | |
| # are replicated well
 | |
| 
 | |
| # We also check how the foreign_key_check variable is replicated
 | |
| 
 | |
| source include/master-slave.inc;
 | |
| source include/have_innodb.inc
 | |
| connection master;
 | |
| create table t1(a int auto_increment, key(a));
 | |
| create table t2(b int auto_increment, c int, key(b));
 | |
| insert into t1 values (1),(2),(3);
 | |
| insert into t1 values (null);
 | |
| insert into t2 values (null,last_insert_id());
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 | |
| select * from t1;
 | |
| select * from t2;
 | |
| connection master;
 | |
| #check if multi-line inserts,
 | |
| #which set last_insert_id to the first id inserted,
 | |
| #are replicated the same way
 | |
| drop table t1;
 | |
| drop table t2;
 | |
| --disable_warnings
 | |
| create table t1(a int auto_increment, key(a)) engine=innodb;
 | |
| create table t2(b int auto_increment, c int, key(b), foreign key(b) references t1(a)) engine=innodb;
 | |
| --enable_warnings
 | |
| SET FOREIGN_KEY_CHECKS=0;
 | |
| insert into t1 values (10);
 | |
| insert into t1 values (null),(null),(null);
 | |
| insert into t2 values (5,0);
 | |
| insert into t2 values (null,last_insert_id());
 | |
| SET FOREIGN_KEY_CHECKS=1;
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 | |
| select * from t1;
 | |
| select * from t2;
 | |
| connection master;
 | |
| 
 | |
| # check if INSERT SELECT in auto_increment is well replicated (bug #490)
 | |
| 
 | |
| drop table t2;
 | |
| drop table t1;
 | |
| create table t1(a int auto_increment, key(a));
 | |
| create table t2(b int auto_increment, c int, key(b));
 | |
| insert into t1 values (10);
 | |
| insert into t1 values (null),(null),(null);
 | |
| insert into t2 values (5,0);
 | |
| insert into t2 (c) select * from t1;
 | |
| select * from t2;
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 | |
| select * from t1;
 | |
| select * from t2;
 | |
| connection master;
 | |
| drop table t1;
 | |
| drop table t2;
 | |
| save_master_pos;
 | |
| connection slave;
 | |
| sync_with_master;
 |