mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-02 02:53:04 +03:00 
			
		
		
		
	mysql-test/extra/rpl_tests/rpl_truncate_helper.test: Rename: mysql-test/extra/rpl_tests/rpl_truncate_helper.inc -> mysql-test/extra/rpl_tests/rpl_truncate_helper.test mysql-test/extra/rpl_tests/rpl_truncate.test: File included from test changed name.
		
			
				
	
	
		
			37 lines
		
	
	
		
			947 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			947 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Copyright 2006 MySQL. All rights reserved.
 | 
						|
#
 | 
						|
# Test to check for the different version of truncating a table.
 | 
						|
# The statements are "TRUNCATE tbl" and "DELETE FROM tbl". We check
 | 
						|
# the behaviour of each possible value for BINLOG_FORMAT.
 | 
						|
#
 | 
						|
# Author(s): Mats Kindahl
 | 
						|
 | 
						|
--source include/have_row_based.inc
 | 
						|
--source include/master-slave.inc
 | 
						|
 | 
						|
let $format = STATEMENT;
 | 
						|
let $stmt   = TRUNCATE TABLE;
 | 
						|
--source extra/rpl_tests/rpl_truncate_helper.test
 | 
						|
 | 
						|
let $format = MIXED;
 | 
						|
let $stmt   = TRUNCATE TABLE;
 | 
						|
--source extra/rpl_tests/rpl_truncate_helper.test
 | 
						|
 | 
						|
let $format = ROW;
 | 
						|
let $stmt   = TRUNCATE TABLE;
 | 
						|
--source extra/rpl_tests/rpl_truncate_helper.test
 | 
						|
 | 
						|
let $format = STATEMENT;
 | 
						|
let $stmt   = DELETE FROM;
 | 
						|
--source extra/rpl_tests/rpl_truncate_helper.test
 | 
						|
 | 
						|
let $format = MIXED;
 | 
						|
let $stmt   = DELETE FROM;
 | 
						|
--source extra/rpl_tests/rpl_truncate_helper.test
 | 
						|
 | 
						|
let $format = ROW;
 | 
						|
let $stmt   = DELETE FROM;
 | 
						|
--source extra/rpl_tests/rpl_truncate_helper.test
 | 
						|
 |