 9fe25c8003
			
		
	
	9fe25c8003
	
	
	
		
			
			Updated tests with new expected output. Also took new function into use and removed the old one. Since the comment removal isn't added yet, one of the tests is expected to fail and it is temporarily disabled.
		
			
				
	
	
		
			19 lines
		
	
	
		
			745 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			745 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| select md5(?) =?, sleep(?), rand(?);
 | |
| select * from my1 where md5( ? ) =?;
 | |
| select md5( ? ) =?;
 | |
| select * from my1 where md5(?) =?;
 | |
| select sleep (?);
 | |
| select * from tst where lname=?;
 | |
| select ? , ? , ? , ? , ? , ? from tst;
 | |
| select * from tst where fname like ?;
 | |
| select * from tst where lname like ? order by fname;
 | |
| insert into tst values (?,?),(?,null),(?,?);
 | |
| drop table if exists tst;
 | |
| create table tst(fname varchar(?), lname varchar(?));
 | |
| update tst set lname =? where fname like ? or lname like ?;
 | |
| delete from tst where lname like ? and fname like ?;
 | |
| select ? from tst where fname=? or lname like ?;
 | |
| select ?,?,?,? from tst where name=? or name=? or name=? or name=?;
 | |
| select count(?), count(?), count(?), count(?), count (?),count( ? ) from tst ;
 | |
| 
 |