You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mysql-test/r/limit_rows_examined.result
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -861,3 +861,18 @@ Warnings:
861
861
Warning 1931 Query execution was interrupted. The query examined at least 22 rows, which exceeds LIMIT ROWS EXAMINED (21). The query result may be incomplete
CREATE TABLE t1(id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,k INT, c CHAR(20));
872
+
INSERT INTO t1 (k,c) VALUES(0,'0'), (0,'0'),(0,'0'),(0,'0'),(0,'0'),(0,'0'),(0,'0');
873
+
SET @@sql_mode='STRICT_TRANS_TABLES';
874
+
INSERT INTO t1 (c) SELECT k FROM t1 LIMIT ROWS EXAMINED 2;
875
+
Warnings:
876
+
Warning 1931 Query execution was interrupted. The query examined at least 3 rows, which exceeds LIMIT ROWS EXAMINED (2). The query result may be incomplete
0 commit comments