mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			499 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			499 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
drop table if exists t1;
 | 
						|
## Creating new table ##
 | 
						|
CREATE TABLE t1
 | 
						|
(
 | 
						|
id INT NOT NULL auto_increment,
 | 
						|
PRIMARY KEY (id),
 | 
						|
name VARCHAR(30)
 | 
						|
);
 | 
						|
'#--------------------FN_DYNVARS_018_01-------------------------#'
 | 
						|
SELECT @@general_log_file;
 | 
						|
@@general_log_file
 | 
						|
mysql-test.log
 | 
						|
INSERT into t1(name) values('Record_1');
 | 
						|
INSERT into t1(name) values('Record_2');
 | 
						|
INSERT into t1(name) values('Record_3');
 | 
						|
INSERT into t1(name) values('Record_4');
 | 
						|
## Verifying general log file ##
 | 
						|
## Dropping table ##
 | 
						|
DROP TABLE t1;
 |