mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Docs/manual.texi: Added section about LOAD DATA LOCAL libmysqld/lib_sql.cc: Remove not used option mysql-test/r/comments.result: Updated results sql/sql_parse.cc: Fix queries / second
		
			
				
	
	
		
			29 lines
		
	
	
		
			303 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			303 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| select 1+2/*hello*/+3;
 | |
| 1+2/*hello*/+3
 | |
| 6
 | |
| select 1 /* long
 | |
| multi line comment */;
 | |
| 1
 | |
| 1
 | |
| ;
 | |
| Query was empty
 | |
| select 1 /*!32301 +1 */;
 | |
| 1 /*!32301 +1
 | |
| 2
 | |
| select 1 /*!52301 +1 */;
 | |
| 1
 | |
| 1
 | |
| select 1--1;
 | |
| 1--1
 | |
| 2
 | |
| select 1 --2
 | |
| +1;
 | |
| 1 --2
 | |
| +1
 | |
| 4
 | |
| select 1 # The rest of the row will be ignored
 | |
| ;
 | |
| 1
 | |
| 1
 | |
| /* line with only comment */;
 |