mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Simple fixes during review of new code
This commit is contained in:
		| @@ -2594,7 +2594,26 @@ INSERT INTO t1 | ||||
| SELECT 50, 3, 3 FROM DUAL | ||||
| WHERE NOT EXISTS | ||||
| (SELECT * FROM t1 WHERE a = 50 AND b = 3); | ||||
| select found_rows(); | ||||
| found_rows() | ||||
| 0 | ||||
| SELECT * FROM t1; | ||||
| a	b	c | ||||
| 50	3	3 | ||||
| select count(*) from t1; | ||||
| count(*) | ||||
| 1 | ||||
| select found_rows(); | ||||
| found_rows() | ||||
| 1 | ||||
| select count(*) from t1 limit 2,3; | ||||
| count(*) | ||||
| select found_rows(); | ||||
| found_rows() | ||||
| 0 | ||||
| select SQL_CALC_FOUND_ROWS count(*) from t1 limit 2,3; | ||||
| count(*) | ||||
| select found_rows(); | ||||
| found_rows() | ||||
| 1 | ||||
| DROP TABLE t1; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 monty@mishka.local
					monty@mishka.local