mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			355 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			355 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
DROP TABLE IF EXISTS t1;
 | 
						|
CREATE TABLE t1(a int);
 | 
						|
INSERT INTO t1 VALUES (1), (2);
 | 
						|
<?xml version="1.0"?>
 | 
						|
<mysqldump>
 | 
						|
<database name="test">
 | 
						|
DROP TABLE IF EXISTS t1;
 | 
						|
LOCK TABLES t1 WRITE;
 | 
						|
	<table name="t1">
 | 
						|
	<row>
 | 
						|
		<field name="a">1</field>
 | 
						|
	</row>
 | 
						|
	<row>
 | 
						|
		<field name="a">2</field>
 | 
						|
	</row>
 | 
						|
	</table>
 | 
						|
UNLOCK TABLES;
 | 
						|
</database>
 | 
						|
</mysqldump>
 | 
						|
DROP TABLE t1;
 |